summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add logging NullHandler to avoid No Handlers warningsnull_loggerDana Powers2016-01-271-0/+12
|
* Add error 104 / Connection reset by peer to expected check_version errorsDana Powers2016-01-251-2/+2
|
* Prefer module imports (io.BytesIO)Dana Powers2016-01-251-5/+5
|
* python-snappy does not like buffer-slices on pypy...Dana Powers2016-01-251-2/+12
|
* Update docs w/ KafkaProducer; move Simple clients to separate documentDana Powers2016-01-254-117/+288
|
* Ignore pylint errors on buffer/memoryviewDana Powers2016-01-251-0/+2
|
* Python3 does not support buffer -- use memoryview in snappy_decodeDana Powers2016-01-251-2/+8
|
* Add Fetcher unit testsDana Powers2016-01-251-0/+101
|
* Fix Fetch._create_fetch_requests docstringDana Powers2016-01-251-1/+1
|
* Remove test_correlation_id_rollover; use daemon threads for test consumersDana Powers2016-01-251-44/+3
|
* Ok to sleep in blocking poll for metadata updateDana Powers2016-01-252-2/+2
|
* Small KafkaClient.check_version() improvementsDana Powers2016-01-252-3/+24
| | | | | - filter connection failure logging during version check - raise UnrecognizedBrokerVersion if we cant id broker
* Log new KafkaClient under kafka.client until files are mergedDana Powers2016-01-251-1/+1
|
* Update xerial snappy tests for new xerial defaultDana Powers2016-01-251-3/+5
|
* Dont need context manager for BytesIODana Powers2016-01-251-22/+18
|
* Write xerial-formatted snappy by default; use buffers to reduce copiesDana Powers2016-01-251-22/+16
|
* Merge pull request #518 from dpkp/lz4Dana Powers2016-01-259-69/+126
|\ | | | | Add support for LZ4 compression / decompression
| * Add lz4 to tox environment depslz4Dana Powers2016-01-251-0/+2
| |
| * Convert codec tests to pytest; add simple lz4 testDana Powers2016-01-251-62/+75
| |
| * Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-257-7/+49
|/
* Merge pull request #516 from dpkp/group_id_noneDana Powers2016-01-243-28/+46
|\ | | | | Support group_id=None to disable offset commits and group membership
| * Disable auto-commit / group assignment in producer testgroup_id_noneDana Powers2016-01-241-0/+1
| |
| * Disable offset commits and auto-partition-assignment when group_id is NoneDana Powers2016-01-242-28/+45
|/
* Merge pull request #515 from dpkp/kafka_producerDana Powers2016-01-2417-313/+2163
|\ | | | | KafkaProducer
| * Add KafkaProducer to autodocs and READMEkafka_producerDana Powers2016-01-242-2/+30
| |
| * Add simple KafkaProducer -> KafkaConsumer integration testDana Powers2016-01-241-0/+34
| |
| * add DefaultPartitioner testDana Powers2016-01-241-22/+42
| |
| * Move pytest broker/zk fixtures to test.conftestDana Powers2016-01-243-30/+36
| |
| * Rename legacy producer testsDana Powers2016-01-241-0/+0
| |
| * Add KafkaProducer to kafka and kafka.producer module importsDana Powers2016-01-242-2/+5
| |
| * 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
| |
| * DefaultPartitioner - implements java client logicDana Powers2016-01-241-0/+23
| |
| * Support encode and repr on raw BytesIO MessageSets (used in new producer)Dana Powers2016-01-241-0/+12
| |
| * Add Message and MessageSet HEADER_SIZE bytesDana Powers2016-01-241-0/+2
|/
* Dont need to refresh metadata on GroupCoordinatorNotAvailableErrorsDana Powers2016-01-241-1/+4
|
* Write bytes to wake_fdDana Powers2016-01-241-1/+1
|
* Warn on 0.8.2 GroupCoordinator no-topic-quirk, dont raise exceptionDana Powers2016-01-231-2/+5
|
* Ignore _socketobject errors in pylint -- v1.5.4 started throwing no-member ↵Dana Powers2016-01-231-1/+1
| | | | errors on python 2.7
* Pylint ignores to fix weird 2.7 error in new pylint versionDana Powers2016-01-231-0/+3
|
* Fix client poll tests (called with sleep=False)Dana Powers2016-01-231-4/+5
|
* Add available_partitions_for_topic() and partitions_for_broker()Dana Powers2016-01-231-2/+23
|
* KafkaClient.add_topic() -- for use by async producerDana Powers2016-01-231-0/+15
|
* Optionally sleep in KafkaClient.poll(), add KafkaClient.wakeup()Dana Powers2016-01-231-7/+37
|
* Add back connection_delay method to KafkaClient - used by KafkaProducerDana Powers2016-01-181-0/+20
| | | | This reverts commit 88cf1b5e4551cd96322aa812fa482bf0f978060a.
* Merge pull request #507 from dpkp/deprecation_warningsDana Powers2016-01-128-14/+51
|\ | | | | Add DeprecationWarnings to legacy classes
| * Add DeprecationWarnings to legacy KafkaClient, Simple/MultiProcess/Consumer, ↵deprecation_warningsDana Powers2016-01-128-14/+51
| | | | | | | | and KafkaConnection