-
Notifications
You must be signed in to change notification settings - Fork 914
Timestamp is not generated in the key for 0.10 compatibility #24
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
Comments
Since the Kafka protocol (<=0.9) is not safely forwards compatible you will need to tell the Python client what version to use.
When using a Kafka 0.10 broker you only need to set More info here: |
Awesome. Thanks! Can we get that added to the readme in this repo? I think others might find this very useful. |
Document broker compatibility (as suggested in #24)
the producer doesn't seem to add a timestamp to the producer record when working with 0.10.0.0 protocol. Actually I couldn't find a way to specify the protocol to use.
Part of Kafka Config:
Error from KafkaStreams:
This means when I have a Kafka Streams application running, I need to use a
WallClockTimestampExtractor
which is not ideal.Not sure if the problem is on python client side or librdkafka side.
The text was updated successfully, but these errors were encountered: