Yamcs HTTP API
- Activities
- Alarms
- Audit
- Buckets
- Clearance
- Commands
- COP-1
- Database
- Events
- File Transfer
- IAM
- Indexes
- Instances
- Links
- MDB Override
- MDB
- Packets
- Parameter Archive
- Parameter Lists
- Parameter Values
- Processing
- Queues
- Replication
- RocksDB
- Server
- Services
- Sessions
- Stream Archive
- Table
- Time Correlation
- Time
- Timeline
Related
Yamcs Release Notes
Yamcs Server Manual
Source Code Documentation
Download this Document
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;
}