/  Yamcs HTTP API  /  RocksDB  /  Compact Database

Compact DatabaseΒΆ

Compact database

URI Template

POST /api/archive/rocksdb/{tablespace}/{dbpath**}:compact
{tablespace}

{dbpath**}

Request Body

interface CompactDatabaseRequest {

  // Column family
  //
  // Starting with Yamcs 5.9.0 the following column families are used:
  //
  // _metadata_
  //     Stores information about tables, partitions
  // rt_data
  //     Stores the tm, pp and events tables
  // parameter_archive
  //     Stores the parameter archive
  // default
  //     Stores everything else: cmdhistory, alarms, completeness indices,
  //     timeline, activities, users, buckets, ...
  cfname: string;
}