summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug in MessageSet decoding that crashed multi-partition FetchResponsepartial_messagesDana Powers2016-06-011-3/+6
|
* Test decoding messagesets with partial messagesDana Powers2016-06-011-1/+101
|
* Update docs/index.rst re 0.10 broker supportDana Powers2016-05-241-4/+4
|
* Bump version for developmentDana Powers2016-05-241-1/+1
|
* Release 1.2.01.2.0Dana Powers2016-05-241-1/+1
|
* Update changelog for 1.2.0 releaseDana Powers2016-05-242-1/+72
|
* Update README re 0.10 brokersDana Powers2016-05-241-5/+5
|
* Update compatibility for 0.10 kafka releaseDana Powers2016-05-244-6/+6
|
* Add kafka 0.10.0.0 to test listDana Powers2016-05-242-1/+2
|
* Disabling travis deploys -- relying on manual uploads for nowDana Powers2016-05-241-10/+0
|
* KAFKA-3388: Fix expiration of batches sitting in the accumulator (#699)Dana Powers2016-05-221-7/+39
|
* KAFKA-3197: when max.in.flight.request.per.connection = 1, attempt to ↵Dana Powers2016-05-223-11/+33
| | | | guarantee ordering (#698)
* Dont use soon-to-be-reserved keyword await as function name ↵Dana Powers2016-05-222-3/+3
| | | | (FutureProduceResult) (#697)
* Fix socket leaks in KafkaClient (#696)Dana Powers2016-05-222-13/+16
| | | | | * Cleanup wakeup socketpair on close to avoid leak in KafkaClient * Cleanup unneeded bootstrap connection to avoid leak in KafkaClient * Dont warn on socket disconnections caused by KafkaClient.close()
* Use standard LZ4 framing for v1 messages / kafka 0.10 (#695)Dana Powers2016-05-225-12/+62
| | | | | | * LZ4 framing fixed in 0.10 / message v1 -- retain broken lz4 code for compatibility * lz4f does not support easy incremental decompression - raise RuntimeError * Update lz4 codec tests
* Use Fetch/Produce API v2 for brokers >= 0.10 (uses message format v1) (#694)Dana Powers2016-05-228-10/+127
|
* Merge pull request #693 from dpkp/message_format_v1Dana Powers2016-05-2212-961/+1188
|\ | | | | Message format v1 (KIP-31 / KIP-32)
| * Add some simple message protocol testsmessage_format_v1Dana Powers2016-05-221-0/+146
| |
| * Rename legacy protocol testsDana Powers2016-05-221-0/+0
| |
| * Improve consumer group test loopDana Powers2016-05-221-13/+13
| |
| * KAFKA-3025: Message v1 -- add timetamp and use relative offset in compressed ↵Dana Powers2016-05-227-50/+132
| | | | | | | | messagesets
| * Always pass encoded message bytes to MessageSet.encode()Dana Powers2016-05-222-40/+22
| |
| * raise ValueError on protocol encode/decode errorsDana Powers2016-05-221-15/+32
|/
* Add CRL support to SSL support (#683)Vincent Bernat2016-05-194-0/+29
| | | | A user can provide a CRL whose peer certificate will be checked against. This only works with Python 3.4+ and Python 2.7.9+.
* Fixup BrokerConnection check_version strict error checking: 0.9 will fail ↵Dana Powers2016-05-171-0/+7
| | | | with CorrelationIdError
* supplement socket.gaierror exception in BrokerConnection.connect() (#687)Erik Beebe2016-05-171-3/+10
| | | supplement socket.gaierror exception to include the host/port
* kafka/conn: use original hostname for SSL checks (#682)Vincent Bernat2016-05-171-2/+4
| | | | | | | | When the address family is not provided, `self.host` is resolved to one of the IP addresses and replaced by it. The SSL context is then built using `self.host` which is now an IP instead of the proper name. Most of the time, hostname cannot be checked this way. Therefore, save the original hostname in a dedicated property and use this property for the SSL context.
* * [SimpleConsumer] Fix legacy SimpleConsumer when using compressed messages* ↵Paul Cavallaro2016-05-102-3/+30
| | | | | [Legacy Protocol] Update legacy protocol to handle compressed messages * [SimpleConsumer] Fix legacy SimpleConsumer when using compressed messages
* Merge pull request #679 from zackdever/kafka-PR-1265-bugfixZack Dever2016-05-031-1/+1
|\ | | | | small bug fix in Sensor
| * small bug fix in SensorZack Dever2016-05-031-1/+1
| | | | | | pulling in this small bug fix from https://github.com/apache/kafka/pull/1265/files#diff-8736b7fd8ad077ea55ea2a8ad61285faR99
* | Merge pull request #678 from dpkp/check_version_0_10Dana Powers2016-05-034-3/+26
|\ \ | |/ |/| Add protocol support for ApiVersionRequest
| * Add protocol support for ApiVersionRequest; identify 0.10 brokers in ↵check_version_0_10Dana Powers2016-05-024-3/+26
|/ | | | check_version
* Patch release: 1.1.11.1.1Dana Powers2016-04-253-1/+23
|
* Merge pull request #671 from dpkp/disconnectsDana Powers2016-04-253-24/+87
|\ | | | | Improve socket disconnect handling
| * Improve socket disconnect handlingdisconnectsDana Powers2016-04-252-5/+23
| |
| * Disable standard metadata refresh hook during bootstrapDana Powers2016-04-251-0/+2
| |
| * Add disconnected socket tests for conn.recv()Dana Powers2016-04-251-1/+46
| |
| * Rename mocked socket as _socket in test_connDana Powers2016-04-251-18/+16
|/
* handle unexpected reads in client_asyncJames Brown2016-04-251-0/+19
| | | | Should fix #661.
* Merge pull request #670 from zackdever/predictable-futureDana Powers2016-04-253-13/+19
|\ | | | | Consistent error handling in future call/errbacks + better test failures
| * enable errors on callbacks in testing. fix broken test.Zack Dever2016-04-252-1/+4
| |
| * use the same logic for callbacks regardless of is_done statusZack Dever2016-04-251-12/+15
| |
* | Allow setting host interface in KafkaFixture.instanceDana Powers2016-04-251-2/+4
|/
* Fix throttle_time_ms sensorZack Dever2016-04-251-1/+2
| | | Fixes #665
* Build universal wheels - kafka-python is compatible with both py2 and py3Dana Powers2016-04-251-0/+2
|
* Avoid some exceptions in Coordinator.__del__ (#668)Dana Powers2016-04-252-2/+4
|
* Bump version for developmentDana Powers2016-04-251-1/+1
|
* Fix hyperlinks in README to fix pypi rendering1.1.0Dana Powers2016-04-241-5/+5
|
* Release 1.1.0Dana Powers2016-04-241-1/+1
|
* Update changelogs for 1.1.0 releaseDana Powers2016-04-242-0/+84
|