Etcd · Schema

CompactionRequest

Request to compact the etcd event history

Cloud NativeConsensusDistributed SystemsGraduatedKey-Value StoreKubernetes

Properties

Name Type Description
revision string Revision to compact up to (all revisions below this will be removed)
physical boolean When true, triggers an immediate physical deletion of compacted data
View JSON Schema on GitHub

JSON Schema

etcd-compactionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompactionRequest",
  "title": "CompactionRequest",
  "type": "object",
  "description": "Request to compact the etcd event history",
  "required": [
    "revision"
  ],
  "properties": {
    "revision": {
      "type": "string",
      "description": "Revision to compact up to (all revisions below this will be removed)"
    },
    "physical": {
      "type": "boolean",
      "description": "When true, triggers an immediate physical deletion of compacted data"
    }
  }
}