aiokafka icon indicating copy to clipboard operation
aiokafka copied to clipboard

asyncio client for kafka

Results 161 aiokafka issues
Sort by recently updated
recently updated
newest added

The consumers start hanging at some point with the following error being logged: ``` [2017-11-07 18:17:47,547: ERROR] Task exception was never retrieved future: ``` What might be causing the error?...

Right now bootstrap will not force wait for broker's list to contain at least 1 entree. This was made to solve issues with pre 0.9 brokers, where that scenario was...

priority:normal

Seems like topic auto-creation can return INVALID_REPLICATION_FACTOR error code for metadata update. Need a test to make sure this does not break anything. Thanks to @ask for the issue in...

priority:low

Currently, the API always requests the whole list of topics if no subscription is present. The whole list should only be requested in case of pattern subscription.

easy
priority:normal

Hello, If we try publish message into `None` topic there are some error messages: ``` Unable to request metadata from node with id 0: ConnectionError: Connection at localhost:9092 broken Unable...

priority:low

Currently we send the first message ASAP from the producer. This makes code like this less efficient: ``` for i in range(10): await producer.send(topic, msg=str(i).encode()) ``` There are 2 related...

priority:normal

https://trustme.readthedocs.io seems cool, probably will work better, that scripts we took from librdkafka.

help wanted
easy
priority:low

See https://github.com/apache/kafka/pull/2048

priority:low

When processing an entry fails auto_commit will mark message as processed including the failed one. Simple example: ```python async for msg in consumer: 1/0 ``` Does consumes one message while...

- We have some research to do before. Here's the list of metrics http://kafka.apache.org/documentation.html#monitoring (correct if wrong). Select ones of interest, some don't have any meaning in `asyncio` context (like...

priority:low