summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* a few extra AssertionError messages in KafkaConsumerDana Powers2016-02-021-2/+2
|
* KAFKA-3170: default consumer config for fetch_min_bytes should be 1Dana Powers2016-02-022-4/+4
|
* Fixup: _send_offset_commit_request future should succeed w/ True, not NoneDana Powers2016-02-021-1/+2
|
* 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 more assertions in KafkaConsumer (primarily to seek* methods)Dana Powers2016-02-011-3/+28
|
* Be sure to get all metadata when subscribing to a regex pattern.Dana Powers2016-02-011-12/+19
|
* Implement KafkaConsumer.topics()Dana Powers2016-02-013-10/+23
| | | | | - add ClusterMetadata.need_all_topic_metadata attribute - client requests metadata for all topics if attribute True
* Add KafkaConsumer.highwater(partition) to get highwater offsets from ↵Dana Powers2016-01-313-1/+26
| | | | FetchResponses
* Fetcher iterator should check for pause and seek resetsDana Powers2016-01-311-3/+5
|
* Fetcher should filter compressed messages with offsets lower than were requestedDana Powers2016-01-311-0/+8
|
* Fix missing importDana Powers2016-01-301-0/+1
|
* Skip MultiProcessConsumer integration testsDana Powers2016-01-301-0/+5
|
* Merge pull request #527 from dpkp/iterator_timeoutDana Powers2016-01-301-15/+16
|\ | | | | Fix internal timeout / sleep handling in consumer iterator
| * Fix internal timeout / sleep handling in consumer iteratoriterator_timeoutDana Powers2016-01-291-15/+16
|/
* Catch dns lookup errors when attempting to connect to nodesDana Powers2016-01-271-2/+8
|
* Merge pull request #523 from dpkp/null_loggerDana Powers2016-01-271-0/+12
|\ | | | | Add logging NullHandler to avoid No Handlers warnings
| * Add logging NullHandler to avoid No Handlers warningsnull_loggerDana Powers2016-01-271-0/+12
| |
* | Merge pull request #522 from dpkp/lz4_fixupDana Powers2016-01-276-20/+77
|\ \ | |/ |/| Handle broken LZ4 framing
| * Handle broken LZ4 framing; switch to lz4tools + xxhashlz4_fixupDana Powers2016-01-266-22/+72
| |
| * Add end-to-end integration testing for all compression typesDana Powers2016-01-261-1/+8
|/
* 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
| |