-
I am working with kafka-python, and it's very good. But there is a case:
when I call consumer.subscribe(topic_name"), and consume some messages, I can get offsets information by kafka-consumer-group.s…
hicqu updated
8 years ago
-
It's not a bug report, more like a consultancy request... maybe an idea for the feature.
While playing with kafka-console-consumer I've spotted that sometimes after consumer rebalancing same message …
-
Currently, the sync producer doesn't support sending batches of messages, even though the underlying protocol allows this (and the java client library supports this too).
We have a need to send a bat…
-
Hi,
In reference to #135
Problem for live-lock still exists for version 1.0.1.RELEASE
I have tested it using your test case "testBatchAck" with ContainerProperties:
```
containerProps.setSy…
-
hi,
is it possible to manually reconnect? i have a consumer that "delays" messages by sleeping for a while if the message's timestamp is to "low". But after waking up i always get a "Connection Error…
-
For me I think it should have a `cache`, a `feedback port` and a `TTL` of the element in the cache.like
https://docs.jboss.org/hornetq/2.3.0.Final/docs/user-manual/html/duplicate-detection.html
-
Producer-Consumer is a common setting in which a queue is used. Currently `DistributedQueue`'s `poll` returns `null` if the queue is empty. This requires a consumer to `poll` the queue at regular inte…
-
This discusses next steps in persistence, continuing from #2609 .
Summing up a conversation @colinsurprenant and @suyograo had this morning.
Colin's work on [Jruby MMAP Queues](https://github.com/co…
-
Hi,
I've a balanced consumer that reads a flow from kafka.
At some point, e.g. every 1 second (for test purpose) I execute the code like:
``` python
...
consumer.consume() # note: non-blocking…
-
If you:
1. Create consumer with an ID
2. Read from a topic
3. Create consumer with same ID (don't delete previous one)
4. Read from topic
the second create call succeeds and the read hangs. The stack …