Versions Compared

Key

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

...

Code Block
Schema:
{ "fields" :
    [ {"name": "version", "type": "int", "doc": "version id"},
      {"name": "partitions",
        "type": {"type" : "array",
                  "items" : {"type": "map",
                             "values": {"type": "array", "items": "int", "doc": "a list of replica ids"},
                             "doc": "a map from partition id to replica list"},
                  "doc": "a list of partitions"},
      }
    ]
}
Example:
{
  "version": 1,
  "partitions": [{"0": [0, 1, 3] ]} }
}

Wiki Markup
2. Partition state info:
/brokers/topics/test/partitions/\[partitionId\]/state

...