confluent-kafka-python icon indicating copy to clipboard operation
confluent-kafka-python copied to clipboard

Confluent's Kafka Python Client

Results 381 confluent-kafka-python issues
Sort by recently updated
recently updated
newest added

Description =========== _SchemaCache should not be used in SchemaRegistryClient , since the "delete_subject" method is provided and no update the cache.

bug
schema registry

Description =========== Hello, I am trying to get my integrate confluent_kafka in my Django webapp and it gives my quite a hard time. I have several question, hopefully you could...

question

Description =========== I'm experiencing a flaky behavior where upon `AdminClient(...).create_topics([NewTopic(topic, ...)])` and I immediately `AdminClient.list_topics(timeout=-1)`, I don't see the topic. I suspect one of the following is happening: - `create_topics`...

question

Description =========== I had to write a class like the `AggregateSerializer` below recently. It seems like something that would naturally be in the library given producers can produce to multiple...

enhancement
status:help-wanted
priority:low

` c = Consumer({ 'bootstrap.servers': servers, 'group.id': groupid, 'auto.offset.reset': offsettype, # 'auto.offset.reset': 'latest', }) c.subscribe([topic])` When I created the consumer, I thought it would be obvious if there was no...

bug
status:help-wanted
size:small
code:python

Description =========== This issue occurs when a schema is registered with schema references. Several of the schema registry APIs return schemas that do not correctly construct their list of references....

enhancement
MEDIUM
schema registry

Description =========== In the Confluent blog post [Putting Several Event Types in the Same Topic – Revisited](https://www.confluent.io/blog/multiple-event-types-in-the-same-kafka-topic/), the author describes how to use [use Avro unions with schema references](https://www.confluent.io/blog/multiple-event-types-in-the-same-kafka-topic/#avro-unions-with-schema-references). The...

enhancement

According to the doc, poll() only returns None in the timeout situation. I notice that poll() also returns None if the value of the message is None. Is this an...

question

I have spark job which reads data from S3 and publish that to kafka using 'confluent-kafka-python'. Below is the code which I am using, I am just trying to test...

question

Description =========== When I disable auto commit with 'enable.auto.commit': False , and call poll(), the consumer doesn't commit and it's working fine, like it's said in the docs. But on...

question