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
Modify produce method in kafka_producer to add the message to some internal buffer/queue instead of sending immediately.
produce
kafka_producer
Internal buffer should be flushed (requests sent to brokers) periodically and it could be controlled by such parameters:
max_buffer_size
linger_time_ms
flush()
The text was updated successfully, but these errors were encountered:
avelanarius
No branches or pull requests
Modify
produce
method inkafka_producer
to add the message to some internal buffer/queue instead of sending immediately.Internal buffer should be flushed (requests sent to brokers) periodically and it could be controlled by such parameters:
max_buffer_size
(max number of records or max KB batched)linger_time_ms
(send partial buffer after some time)flush()
The text was updated successfully, but these errors were encountered: