We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When properties.security.protocol is not specified, RisingWave will just ignore other security properties.
dev=> create source s with ( dev(> connector = 'kafka', dev(> topic = 'kafka_1_partition_topic', dev(> properties.bootstrap.server = '127.0.0.1:29092', dev(> properties.sasl.mechanism= 'SCRAM-SHA-512', dev(> properties.sasl.username = 'alice', dev(> properties.sasl.password = 'alice-secret' dev(> ) row format json; CREATE_SOURCE
Technically, the command should fail and warn that 'properties.security.protocol' is not specified.
No response
The text was updated successfully, but these errors were encountered:
according to https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md , properties.security.protocol has a default value plaintext
properties.security.protocol
plaintext
Sorry, something went wrong.
Ok. We should document it if it is the case.
neverchanje
No branches or pull requests
Describe the bug
When properties.security.protocol is not specified, RisingWave will just ignore other security properties.
To Reproduce
Expected behavior
Technically, the command should fail and warn that 'properties.security.protocol' is not specified.
Additional context
No response
The text was updated successfully, but these errors were encountered: