zilliztech / milvus-operator

The Kubernetes Operator of Milvus.
https://milvus.io
Apache License 2.0
33 stars 20 forks source link

Coordinator HA #53

Open taptao opened 7 months ago

taptao commented 7 months ago

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?

haorenfsa commented 7 months ago

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