I get this error message in datahub-action log ?what is problem with my executor.yaml ?
KafkaException: KafkaError{code=INVALID_ARG,val=-186,str="Java JAAS configuration is not supported, see
The error message you’re encountering indicates that the Java JAAS configuration is not supported in the context of DataHub Actions, which is written in Python. This is a common issue when trying to use Java-specific configurations in a Python-based environment.
Remove the JAAS Configuration: Since JAAS is not supported, you should remove the sasl.jaas.config line from your configuration.
Use Environment Variables: Set the necessary Kafka properties using environment variables. For example, you can use KAFKA_PROPERTIES_SASL_USERNAME and KAFKA_PROPERTIES_SASL_PASSWORD for authentication.
Update executor.yaml: Configure the SASL mechanism and other properties directly in the executor.yaml using the Python client style. Here’s an example configuration:
Hi, how did my answer work out for you? Need any more assistance? You can also tag <@U07FV3UHE4D> to let your fellow community members know you’re still looking for guidance.