summaryrefslogtreecommitdiff
path: root/kafka/producer
Commit message (Expand)AuthorAgeFilesLines
* Always truncate deallocated produce message bufferstruncate_bufferDana Powers2016-03-131-12/+5
* Add ignore_leadernotavailable kwarg to SimpleClient.load_metadata_for_topicsDana Powers2016-03-131-1/+1
* Add optional timeout parameter to KafkaProducer.flush()Dana Powers2016-03-132-9/+13
* Fix for FutureProduceResult.await on python2.6Dana Powers2016-03-131-1/+2
* Update base.pyTom Most2016-02-261-1/+1
* Catch duplicate batch.done() calls -- this can happen if we maybe_expire then...Dana Powers2016-02-181-1/+4
* Warn if pending batches failed during flushDana Powers2016-02-181-0/+3
* Fix concurrency bug in RecordAccumulator.ready()Dana Powers2016-02-181-2/+6
* Some attributes may not exist in __del__ if we failed assertionsDana Powers2016-02-181-1/+1
* Fix bug in SimpleBufferPool memory condition waiting / timeoutDana Powers2016-02-181-4/+5
* Merge pull request #558 from dpkp/batch_size_zeroDana Powers2016-02-182-5/+7
|\
| * Support batch_size = 0 in producer buffersbatch_size_zeroDana Powers2016-02-172-5/+7
* | 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-152-24/+20
* Revisit _wait_on_metadata to address timeout and error handling (Issue 539)Dana Powers2016-02-151-20/+19
* Fixup RequestTimeoutError -> RequestTimedOutErrorDana Powers2016-02-151-1/+1
* Add more debug/trace statements to sender loopDana Powers2016-02-021-0/+2
* Fix accumulator bug: expired batches should be removed from the internal queueDana Powers2016-02-021-0/+10
* Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-253-4/+5
* Add KafkaProducer to kafka and kafka.producer module importsDana Powers2016-01-241-1/+3
* Implement new KafkaProducer, mimicing java client interface / designDana Powers2016-01-241-0/+496
* Sender class to manage background IO for KafkaProducerDana Powers2016-01-241-0/+272
* RecordAccumulator and RecordBatch, for use by async batching KafkaProducerDana Powers2016-01-241-0/+500
* Add thread-aware futures for use with KafkaProducerDana Powers2016-01-241-0/+66
* Add MessageSetBuffer and SimpleBufferPool to manage producer messagesDana Powers2016-01-241-0/+388
* Merge branch '0.9'Dana Powers2016-01-073-43/+51
|\
| * 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-103-11/+0
| * Update references to kafka.common Request/Response (now Payload)Dana Powers2015-12-091-8/+9
* | Handle new topic creation / LeaderNotAvailableError in initial SimpleProducer...Dana Powers2015-12-161-1/+1
|/
* 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