Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Applying database rotation techniques

Manage table size growth, archive data, and boost query performance by configuring database rotation.

Instance data grows quickly, and as these tables grow in size they require management. Database rotation preserves instance performance and averts risk associated with querying growing data sets utilizing three techniques. These techniques are based on the concept of managing large quantities of data by separating whole sets into individual tables. After this task is performed, each technique handles data in a different manner:

  • Table Rotation works by rotating among a small set of tables, and deleting and reusing the old tables for new data.
  • Table Extension works by periodically starting a new table and allowing old tables to be easily archived and removed from the system.
  • Table Sharding works by enabling records to be grouped in a single table by document ID.
FunctionalityTables applied to
Table Rotation`syslog` `sys_querystat` `ecc_queue` `ecc_event` `cmdb_metric` `sysevent`
Table Extension`sys_email`
  • Activate database rotation
    Learn how to activate database rotation.
  • Table rotation
    Optimize performance and manage data lifecycle by rotating tables, allowing older data to be systematically archived while maintaining system efficiency.
  • Table extension
    Partition and preserve data sets for extended periods without overwriting.

Parent Topic:Data Management