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 =========== I get a SIGSEGV crashing my entire application when trying to construct an AvroProducer. I'm unclear if there is a problem with my configuration or not, but a...

schema registry

Fix: add default value for version as it said in method description.

schema registry

Fixed few mismached URLs and missing default value for a parameter.

component:schema-registry

Add missing methods to `SchemaRegistryClient` for REST API : - [x] `get_schema_types() -> list(str)` - [x] `get_schema_versions(schema_id: int) -> list(dict)` - [ ] `get_schema_by_subject_version(subject_name:str, version:int) -> Schema` - needs discussion...

schema registry

Currently `SchemaRegistryClient` method have different schema object for different method for example: `get_latest_version` return you schema with references as array of json as below ``` [{'name': 'com.test.common.event.Eventdata', 'subject': 'com.test.common.event.Eventdata', 'version':...

schema registry

PR to fix issue #1127

schema registry

**Description:** I am encountering discrepancies between the metrics displayed on the Confluent Platform website for my Kafka topics and the actual consumption and production counts observed in my environment. Specifically,...

Description =========== This message spams our log. Is it a real error, or can this be ignored? ``` %3|1720719719.448|FAIL|rdkafka#consumer-2| [thrd:GroupCoordinator]: GroupCoordinator: SASL authentication error: SaslAuthenticateRequest failed: Local: Broker transport failure...

enhancement
component:librdkafka
investigate further

Description =========== `SchemaRegistryClient` is based on **requests**, which is basically _sync_. Therefore it is not suitable for _async_ applications. I suggest to implement `AsyncSchemaRegistryClient` based on **aiohttp**.

enhancement
schema registry