milvus-operator icon indicating copy to clipboard operation
milvus-operator copied to clipboard

Coordinator HA

Open taptao opened this issue 1 year ago • 1 comments

Is coordinator HA configuration now supported?

See from https://milvus.io/docs/coordinator_ha.md#Coordinator-HA that helm supports activeStandby parameter setting Coordinator component in active and standby mode.

Does milvus-operator support active and standby modes?

taptao avatar Dec 01 '23 08:12 taptao

Yes it supports, but not directly for now. you need to set the spec.config field like below. We will add a field to make it more easily later.

spec:
  config:
    rootCoord:
      enableActiveStandby: true
    dataCoord:
      enableActiveStandby: true
    queryCoord:
      enableActiveStandby: true
    indexCoord:
      enableActiveStandby: true

haorenfsa avatar Dec 03 '23 01:12 haorenfsa

HA is now enabled by default

haorenfsa avatar Jul 31 '24 03:07 haorenfsa