Open varunkamra opened 2 months ago
It's SCHEMA_REGISTRY_OPTS
Source - https://github.com/confluentinc/schema-registry/blob/master/bin/schema-registry-run-class#L88
confluent documentation that the env variables have to be prefixed with SCHEMAREGISTRY
While correct for this case, that prefix only modifies the server properties file, not the JVM settings. JAVA_TOOL_OPTIONS
should work as well since most JVMs support that
I am using following docker compose file:
I am not able to set
KAFKA_OPTS
for schema registry container, I am required to useSCHEMA_REGISTRY_KAFKASTORE_SASL_JAAS_CONFIG
instead which works but I want to provide a conf file instead.Error:
I found on the confluent documentation that the env variables have to be prefixed with
SCHEMA_REGISTRY_
so I have tried with bothKAFKA_OPTS
andSCHEMA_REGISTRY_KAFKA_OPTS
but I keep getting the error.OS: Ubuntu 24.04