summaryrefslogtreecommitdiff
path: root/kafka/producer/kafka.py
Commit message (Collapse)AuthorAgeFilesLines
* KAFKA-3197: when max.in.flight.request.per.connection = 1, attempt to ↵Dana Powers2016-05-221-0/+2
| | | | guarantee ordering (#698)
* Use Fetch/Produce API v2 for brokers >= 0.10 (uses message format v1) (#694)Dana Powers2016-05-221-1/+2
|
* KAFKA-3025: Message v1 -- add timetamp and use relative offset in compressed ↵Dana Powers2016-05-221-4/+11
| | | | messagesets
* Add CRL support to SSL support (#683)Vincent Bernat2016-05-191-0/+6
| | | | 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+.
* Add protocol support for ApiVersionRequest; identify 0.10 brokers in ↵check_version_0_10Dana Powers2016-05-021-1/+1
| | | | check_version
* Add SSL configuration kwargs to KafkaClient, KafkaConsumer, KafkaProducerDana Powers2016-04-091-0/+21
|
* Remove unused importskafka-3318Dana Powers2016-04-051-1/+0
|
* Update imports from kafka.common -> kafka.errors / kafka.structsDana Powers2016-04-051-2/+2
|
* Update max.block.ms docstringDana Powers2016-04-041-3/+5
|
* only make a metadata event if we don't know the partitionsZack Dever2016-03-141-1/+4
|
* Add optional timeout parameter to KafkaProducer.flush()Dana Powers2016-03-131-2/+2
|
* Some attributes may not exist in __del__ if we failed assertionsDana Powers2016-02-181-1/+1
|
* Dont override system rcvbuf or sndbuf unless user configures explicitlysocket_buffer_size_optionalDana Powers2016-02-171-4/+6
|
* Cleanup docstring nested indent (acks values)Dana Powers2016-02-151-9/+10
|
* Cleaner event handling in _wait_on_metadataDana Powers2016-02-151-15/+9
|
* Remove unused internal sender lockDana Powers2016-02-151-3/+2
|
* Revisit _wait_on_metadata to address timeout and error handling (Issue 539)Dana Powers2016-02-151-20/+19
|
* Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-251-1/+1
|
* Implement new KafkaProducer, mimicing java client interface / designDana Powers2016-01-241-0/+496