summaryrefslogtreecommitdiff
path: root/kafka/producer/kafka.py
Commit message (Collapse)AuthorAgeFilesLines
* Instrument bufferpool-wait-ratio metric in KafkaProducerconn_metricsDana Powers2016-08-041-1/+1
|
* Fix misspelling of "password" (#793)Samuel Taylor2016-08-041-1/+1
|
* implement sasl PLAIN mechanismLars Jørgen Solberg2016-08-031-1/+12
|
* Clarify api_version=str deprecation warningDana Powers2016-08-021-1/+1
|
* Rename _DEFAULT_CONFIG -> DEFAULT_CONFIG in KafkaProducer (#788)Dana Powers2016-08-011-2/+2
| | | - also update internal classes RecordAccumulator and Sender
* Use socket_options configuration to setsockopts(). Default TCP_NODELAY (#783)Dana Powers2016-08-011-0/+5
|
* Add KafkaClient metricsmore_metricsDana Powers2016-07-171-1/+2
|
* KAFKA-3196: Add checksum and size to RecordMetadata and ConsumerRecord ↵Dana Powers2016-07-171-4/+6
| | | | (#770 / #594)
* Expose selector type as config option (#764)Dana Powers2016-07-161-1/+5
|
* Update kafka configuration links -> 0.10.0.0 docsDana Powers2016-07-161-1/+1
|
* First stab at public metrics() interface for KafkaConsumer / KafkaProducerDana Powers2016-07-161-0/+15
|
* Add initial producer-sender metricsDana Powers2016-07-161-2/+23
|
* Add api_version config to KafkaClient, deprecate str in favor of tuples (#761)Dana Powers2016-07-161-12/+18
|
* Avoid AttributeErrors in _unregister_cleanup (#747)Dana Powers2016-07-051-1/+1
|
* allow client.check_version timeout to be set in Producer and Consumer ↵eastlondoner2016-06-291-1/+5
| | | | | constructors (#647) * allow client.check_version timeout to be set in Producer and Consumer constructors
* Clarify timeout unit (#734)ms7s2016-06-211-1/+8
|
* Use weakref when registering a producer.close atexit to fix normal gc (#728)Dana Powers2016-06-181-3/+37
| | | | * Use weakref when registering a producer.close atexit to fix normal gc * Test that del(producer) terminates async thread
* 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