Hi all, I am using 2 dependencies one is camel-kafka-starter, version - 3.20.5 and the other one is kafka-json-schema-serializer, version 7.5.1. Route sample - <route id= "xyz"> <from uri="kafka:{{topic name}}? brokers={{consumer.bootstrap-servers}}& groupId={{consumer.group-id}}& autoOffsetReset={{consumer.auto-offset-reset}}& keyDeserializer={{consumer.key-deserializer}}& valueDeserializer={{consumer.value-deserializer}}& schemaRegistryURL={{url}}& autoCommitEnable=false& sessionTimeoutMs={{timeoutvalue}}& sslEnabledProtocol=TLSv1.2, TLSv1.3 & securityProtocol=SASL_SSL & saslMechanism=GSSAPI & saslKerberosServiceName={{some valid name}} & sslTruststoreLocation={{some valid path}} & saslJaasConfig={{some krb5 login module required useKeyTab=true storekey=true keytab=somepath principal=somevalue}}" <log to print the json event in body> </route> Now this route is able to pick events in local env and we are also able to see various logs in local that kafka made connections with topic. But kafka itself is not starting in higher envs and we are not able to see error or any kind of logs.
Thanks, Aditya