Hi,
I have three sets of nodes: A, B and C.
Over time, I want to migrate all shards on A and B to C (and remove A and B from the cluster). I could do that all at once by setting the cluster routing allocation setting:
PUT _cluster/settings
{
"transient" :{
"cluster.routing.allocation.exclude._ip" : "[set-a-ips],[set-b-ips]"
}
}
However, I want to start with set A first. How can I migrate the shards on A to C, without allocating them on B?
Also, is it possible to limit the bandwidth used for the reallocation?
Best Regards