Versions Compared

Key

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

...


For submitting new reassignments while some are still pending,   the new /admin/reassign_partitions_queue znode is added,  The JSON format is similar to the same as /admin/reassign_partitions  (without "original_replicas" added above). e.g. :

Code Block
languagejs
{"version":1,
 "partitions":[{"topic": "foo1",
                "partition": 0,
		        "replicas": [1,2,5]
               },
               {"topic": "foo2",
                "partition": 1,
		        "replicas": [7,9,10]
               }]            
}

...