Does `indexPrefix` for elasticsearch work? I see t...
# all-things-deployment
s
Does
indexPrefix
for elasticsearch work? I see there is an option for that https://github.com/linkedin/datahub/blob/eb60da975dce1f855883e628541cdbcef89717af/datahub-kubernetes/datahub/quickstart-values.yaml#L51 as well as in https://datahubproject.io/docs/deploy/aws/ I have this value in my kubernetes cluster
Copy code
global:
  graph_service_impl: elasticsearch
  datahub_analytics_enabled: true
  datahub_standalone_consumers_enabled: false

  elasticsearch:
    host: "elasticsearch-master.apps.svc.cluster.local"
    port: "9200"
    indexPrefix: datahub
The elasticsearch setup job is complete. But I am seeing this in my indices. There is no "datahub" prefix for the index names. Did I understand this option incorrectly?
Copy code
health status index                    uuid                   pri rep docs.count docs.deleted store.size pri.store.size
green  open   datasetdocument          lHs5ppPkTgWYBud82GEKvw   1   1          0            0       416b           208b
green  open   dashboarddocument        84GsR1ZORtyRaX7yMdgOxg   1   1          0            0       416b           208b
green  open   glossaryterminfodocument GqaUw-bESp69Hp1tiNNXRA   1   1          0            0       416b           208b
green  open   chartdocument            wcR3nE1mT3ut8f9yVb_VKA   1   1          0            0       416b           208b
green  open   datajobdocument          Y4HSYjrHQbmcYx5ioFK-yg   1   1          0            0       416b           208b
green  open   dataflowdocument         tYOFqQYZRYuFd3z6vhr1Kg   1   1          0            0       416b           208b
green  open   dataprocessdocument      QMiZcLs6SR6aEp0d6s3wyA   1   1          0            0       416b           208b
green  open   mlmodeldocument          Yr9TxaRHTvWiDDGpRNiwCA   1   1          0            0       416b           208b
green  open   glossarynodeinfodocument _vo5wMgKRAqOQWkDSS-nVA   1   1          0            0       416b           208b
green  open   corpuserinfodocument     zSJp34coQSyB7vjJBj4BFQ   1   1          0            0       416b           208b
green  open   tagdocument              F2EqZ8cTTl-xd5g3eode7w   1   1          0            0       416b           208b
e
Hey! We have fixed this in the latest helm version
s
this worked in latest one