walterddr commented on issue #9393: URL: https://github.com/apache/pinot/issues/9393#issuecomment-1318043485
looks like the `pinot.server.instance.dataDir` extra config is conflicting with the definition in service's key `dataDir`. according to [kubernetes/helm/pinot/templates/server/configmap.yaml](https://github.com/apache/pinot/blob/287534262fd9ccd8507fd06efaec2dd14a4d29cf/kubernetes/helm/pinot/templates/server/configmap.yaml) you can see it appends both: ``` pinot.server.instance.dataDir={{ .Values.server.dataDir }} {{ .Values.server.extra.configs | indent 4 }} ``` e.g. you will have 2 `pinot.server.instance.dataDir` key and I dont even know how that's possible in the first place. thank you for provide the information. - could you help dump the ConfigMap from your k8s cluster direclty, it would probably help understand what exactly did helm resolve this into - based on the result we can see either it is a config key resolution issue; or a default value resolution issue and then it should be easy to fix -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
