docs: Explain the meanings of skipped compaction's fields
parent
0132a33946
commit
b8a9fe4222
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue