From b8a9fe4222607be20f169b4160de1ee9846dfe79 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Fri, 21 Oct 2022 12:47:08 -0400 Subject: [PATCH] docs: Explain the meanings of skipped compaction's fields --- .../protos/influxdata/iox/compactor/v1/service.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/generated_types/protos/influxdata/iox/compactor/v1/service.proto b/generated_types/protos/influxdata/iox/compactor/v1/service.proto index 7fc131fee5..b2756bcbbe 100644 --- a/generated_types/protos/influxdata/iox/compactor/v1/service.proto +++ b/generated_types/protos/influxdata/iox/compactor/v1/service.proto @@ -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; }