Force update replicas

POST /v1/debug/partitions/{namespace}/{topic}/{partition}/force_replicas

Force update partition replicas

Path parameters

  • namespace string Required
  • topic string Required
  • partition integer(int64) Required
application/json

Body Required

  • core integer(int64)

    core

  • node_id integer(int64)

    node id

Responses

  • 200

    Replica update successful

POST /v1/debug/partitions/{namespace}/{topic}/{partition}/force_replicas
curl \
 --request POST 'http://localhost:9644/v1/debug/partitions/{namespace}/{topic}/{partition}/force_replicas' \
 --header "Content-Type: application/json" \
 --data '[{"core":42,"node_id":42}]'
Request examples
[
  {
    "core": 42,
    "node_id": 42
  }
]