-
Notifications
You must be signed in to change notification settings - Fork 9
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
Not able commit an offset or seek to an offset manually #3
Comments
Only one thread, whichever thread calls We've had some clojure code wrapping the consumer instance for a while (there being no suitable wrapper libraries around at the time); seek is one of the things we had to get right, and this was the first thing that bit me when I wrote that. I ended up using channels to interact with a loop in a |
Thanks, @blak3mill3r (>!! (:ketu.source/consumer-thread src) [:seek "topic-1" 0 7]) I tried to execute the above line but nothing happens. Do I need to create a wrapper to interact with |
Hi @ckshekhar
For now unfortunately you'll have to implement the polling loop yourself, where you'll have total control of committing offsets. |
I am trying to commit offset manually using
commit-async!
function fromketu.clients.consumer
namespace but I am getting this error.Sample code
I don't know what is wrong here. Any pointer would great. Thanks
The text was updated successfully, but these errors were encountered: