-
Notifications
You must be signed in to change notification settings - Fork 598
New issue
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
Add support to more parameters to Kafka Sink for creating topics #18070
Comments
Hi @mbombonato, for now, RisingWave connect to kafka broker via rust-rdkafka, so we can only support options listed in https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md. |
Hello @tabVersion |
Also, I've found this FAQ about topic configuration: |
Kafka Admin Api can do some of the options you mentioned above, but I think it goes too far as a streaming database.
As far as I know, the confluentinc/librdkafka@master/CONFIGURATION.md lists all accepted configs. We don't plan to make any modifications to the SDK. |
I understand. No problem, we'll figure out how to automate the topic creation before setting up our sinks. We're transitioning from ksqlDB, where it automatically created our compact topics with the partitions we set on the sink stream. |
Is your feature request related to a problem? Please describe.
No
Describe the solution you'd like
As we have the allow.auto.create.topics parameter, it would be nice to add some extra important parameters, so our topics are created correctly.
I'm missing the following basic parameters:
Describe alternatives you've considered
Additional context
Without those parameters, we have to create the topics manually beforehand and we can't use the parameter allow.auto.create.topics
The text was updated successfully, but these errors were encountered: