Hi everyone. Would you happen to know how to confi...
# troubleshoot
a
Hi everyone. Would you happen to know how to configure Kafka timeouts via environment variables? Schema Registry has
SCHEMA_REGISTRY_KAFKASTORE_TIMEOUT_MS
and
SCHEMA_REGISTRY_KAFKASTORE_INIT_TIMEOUT_MS
but it’s not clear what they’re called for the GMS and upgrade-job pieces that are deployed via https://github.com/acryldata/datahub-helm. I think it relies on Spring Boot to load these, but I got a bit lost in the docs.
a
use will want to add a
extraEnvVars
block to https://github.com/acryldata/datahub-helm/blob/master/charts/prerequisites/values.yaml#L87 As per the docs on the chart you'll be using custom `extraEnvVars`so those will be prefixed with
KAFKA_CFG_
Example is here: https://github.com/bitnami/charts/blob/master/bitnami/kafka/values.yaml#L216-L223
a
Thanks for that! I got to the same place, but wasn’t fully sure what the env names need to look like. I’ll give it another go and get back to you if it doesn’t do the trick.