docs: Explain the meanings of skipped compaction's fields

pull/24376/head
Carol (Nichols || Goulding) 2022-10-21 12:47:08 -04:00
parent 0132a33946
commit b8a9fe4222
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
1 changed files with 11 additions and 0 deletions

View File

@ -15,17 +15,28 @@ message ListSkippedCompactionsResponse {
}
message SkippedCompaction {
// The ID of the partition for which compaction was skipped; this can be used to uniquely
// identify the skipped compaction record and remove it.
int64 partition_id = 1;
// Free text describing why compaction was skipped for this partition.
string reason = 2;
// Timestamp in nanoseconds since the epoch of when compaction was skipped.
int64 skipped_at = 3;
// The number of Parquet files selected to be compacted for this partition.
int64 num_files = 4;
// The compactor's limit on the number of files in a compaction operation at the time this
// compaction was skipped.
int64 limit_num_files = 5;
// The number of bytes of memory estimated to be needed to compact this partition at the time
// this compaction was skipped.
int64 estimated_bytes = 6;
// The compactor's limit on the number of bytes of memory that can be used for a compaction
// operation at the time this compaction was skipped.
int64 limit_bytes = 7;
}