Parsely / pykafka

Apache Kafka client for Python; high-level & low-level consumer/producer, with great performance.
http://pykafka.readthedocs.org/
Apache License 2.0
1.12k stars 232 forks source link

Error codes are out of date #1001

Open spenczar opened 4 years ago

spenczar commented 4 years ago

pykafka's list of Kafka error codes only goes up to 30 as of e7665bf36bfe521050fdcb017c68e92365bd89ed. Kafka v2.5.0 has 88 error codes. When an unknown error code is hit, pykafka raises a KeyError exception, which is confusing.

This seems straightforward to fix, but I want to make sure that updating the error codes is desired.