Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The above proposed read/write paths are described later in this doc. Below is an example of the contents of the '/features' ZK node, with it’s schema explained below.

Schema


Code Block
[
   // header section
   {
         "__version__": 0  // int64 -> represents the version of the data
   },
   // data section
   {
        "exactly_once_semantics": {   // string -> name of the feature
            "version": 3 // int64 -> represents the cluster-wide finalized version of this feature
        },
        "consumer_offsets_topic_schema": { 
            "version": 4
        }
   }
]

...