-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Support for async producer #33
Merged
Merged
Commits on Jun 13, 2013
-
The Java/Scala Kafka client supports a mechanism for sending messages asynchronously by using a queue and a thread. Messages are put on the queue and the worker thread keeps sending it to the broker. This ticket implements this feature in python We use multiprocessing instead of threads to send the messages
Configuration menu - View commit details
-
Copy full SHA for 337127a - Browse repository at this point
Copy the full SHA 337127aView commit details -
Merge branch 'master' into asyncproducer
Conflicts: kafka/producer.py
Configuration menu - View commit details
-
Copy full SHA for 604d78b - Browse repository at this point
Copy the full SHA 604d78bView commit details
Commits on Jun 20, 2013
-
Add ack support for synchronous producer
Add support for two options in the producer - req_acks and ack_timeout The acks, if any, are passed to the caller directly
Configuration menu - View commit details
-
Copy full SHA for c2c5557 - Browse repository at this point
Copy the full SHA c2c5557View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6158e29 - Browse repository at this point
Copy the full SHA 6158e29View commit details -
Configuration menu - View commit details
-
Copy full SHA for 612dea1 - Browse repository at this point
Copy the full SHA 612dea1View commit details -
Make the default case as 'ack on local write'
Also, ensure that the case of 'no-acks' works fine In conn.send(), do not wait for the response. Wait for it only on conn.recv(). This behaviour is fine now since the connection is not shared among consumer threads etc.
Configuration menu - View commit details
-
Copy full SHA for e690b75 - Browse repository at this point
Copy the full SHA e690b75View commit details
Commits on Jun 24, 2013
-
Configuration menu - View commit details
-
Copy full SHA for eee55ae - Browse repository at this point
Copy the full SHA eee55aeView commit details
Commits on Jun 25, 2013
-
Configuration menu - View commit details
-
Copy full SHA for ec251ef - Browse repository at this point
Copy the full SHA ec251efView commit details
Commits on Jun 26, 2013
-
Add support for batched message send
Also improve on the logic for stopping the async Processor instance. Ensure that unsend messages are sent before it is stopped.
Configuration menu - View commit details
-
Copy full SHA for efb1dab - Browse repository at this point
Copy the full SHA efb1dabView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c0e163 - Browse repository at this point
Copy the full SHA 0c0e163View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6626fe - Browse repository at this point
Copy the full SHA c6626feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b25625 - Browse repository at this point
Copy the full SHA 8b25625View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f150a2 - Browse repository at this point
Copy the full SHA 7f150a2View commit details
Commits on Jun 27, 2013
-
Configuration menu - View commit details
-
Copy full SHA for d2df8f5 - Browse repository at this point
Copy the full SHA d2df8f5View commit details
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.