summaryrefslogtreecommitdiff
path: root/kafka/producer/base.py
Commit message (Expand)AuthorAgeFilesLines
* Don't use `kafka.common` internally1.3.5Jeff Widman2018-06-051-2/+2
* Stop shadowing `ConnectionError`Jeff Widman2018-05-231-1/+0
* Change SimpleProducer to use async_send (async is reserved in py37) (#1454)Dana Powers2018-03-231-15/+23
* Use logging's built-in string interpolationJeff Widman2017-07-071-2/+1
* Add sphinx formatting to hyperlink methods (#898)Jeff Widman2017-03-031-3/+5
* PEP-8: Spacing & removed unused imports (#899)Jeff Widman2017-02-091-2/+2
* Fix typosJeff Widman2016-11-141-1/+1
* Vendor six 1.10.0sixDana Powers2016-08-011-1/+1
* Update imports from kafka.common -> kafka.errors / kafka.structsDana Powers2016-04-051-5/+4
* Update base.pyTom Most2016-02-261-1/+1
* Fixup RequestTimeoutError -> RequestTimedOutErrorDana Powers2016-02-151-1/+1
* Docstring updatesDana Powers2016-01-071-18/+35
* Disable pylint errors for py2/py3 compatibility workaroundsDana Powers2016-01-011-3/+4
* Use log exception for metadata failure in async producerDana Powers2016-01-011-2/+2
* Rename TopicAndPartition -> TopicPartitionDana Powers2015-12-281-2/+2
* Drop kafka_bytestringDana Powers2015-12-101-6/+0
* Update references to kafka.common Request/Response (now Payload)Dana Powers2015-12-091-8/+9
* Log deprecation warning for timeout argument in Producer.stop()Dana Powers2015-12-061-3/+7
* Producer.stop() now blocks until async thread completes (drop confusing timeo...async_producer_stopDana Powers2015-12-051-7/+12
* client.reinit() can raise an exception; catch in async producerDana Powers2015-12-041-2/+10
* Merge pull request #467 from bschopman/masterDana Powers2015-12-021-1/+4
|\
| * Prevents crashing communication thread of async producerBalthasar Schopman2015-10-221-1/+4
* | Merge pull request #454 from trbs/gzip_compressionlevelDana Powers2015-12-021-4/+8
|\ \
| * | allow to specify compression level for codecs which support thistrbs2015-09-121-4/+8
| |/
* | Merge pull request #435 from docker-hub/fix-producer-cleanup-logicDana Powers2015-12-021-1/+1
|\ \
| * | Fixing https://github.com/mumrah/kafka-python/issues/434toli2015-07-241-1/+1
| |/
* | Merge pull request #409 from scrapinghub/feature-allow-null-payloadDana Powers2015-12-021-3/+9
|\ \ | |/ |/|
| * Exclude (null,null) pair for producerViktor Shlapakov2015-06-171-3/+9
| * Allow null payload for deletion featureViktor Shlapakov2015-06-161-1/+1
* | Log response error type in async producerDana Powers2015-06-101-2/+3
|/
* Add send/receive debug logging to async producerDana Powers2015-06-091-8/+11
* Support sync_fail_on_error kwarg in ProducerDana Powers2015-06-091-2/+12
* Use a list, not request_tries.keys(), to track requests / responses in async ...Dana Powers2015-06-091-2/+4
* Add a few extra docstring comments about thread-safe clients/connectionsDana Powers2015-06-081-0/+2
* Add async_stop_timeout parameter to tune how long to let the producerDana Powers2015-06-061-3/+26
* Dont stop async producer until all pending messages have been processedDana Powers2015-06-061-1/+1
* Update Producer class docstringDana Powers2015-06-061-4/+25
* Deprecate async producer batch_send kwarg -- use 'async' insteadDana Powers2015-06-061-22/+40
* Log retries and failed messages in async producer (configurable as full messa...Dana Powers2015-06-061-12/+24
* PR 331 fixup: do not attempt to get new messages if there are pending retriesDana Powers2015-06-061-4/+9
* PR 331 fixup: Rename reqs dict to request_triesDana Powers2015-06-061-9/+13
* PR 331 fixup: Dont need try/except when calling send_produce_requests with fa...Dana Powers2015-06-061-15/+16
* PR 331 fixup: log warnings on async producer backoff and metadata refreshDana Powers2015-06-061-1/+2
* PR 331 fixup: Support unlimited retries with async_retry_limit=NoneDana Powers2015-06-061-6/+8
* PR 331 fixup: fix _handle_error closureDana Powers2015-06-061-16/+17
* PR 331 fixup: Fix kafka.common imports from kafka.producer.base (one import b...Dana Powers2015-06-061-3/+2
* Use separate module loggers instead of a single 'kafka' loggerDana Powers2015-06-061-1/+1
* Fix import error in kafka/producer/base.pyDana Powers2015-06-061-1/+1
* Check response.error for async producerViktor Shlapakov2015-06-031-19/+24
* Async producer: py2.6 backward compatibility fixViktor Shlapakov2015-06-031-2/+2