summaryrefslogtreecommitdiff
path: root/kafka
Commit message (Collapse)AuthorAgeFilesLines
...
* TopicPartition should be importable from top-level moduleDana Powers2016-02-151-0/+1
|
* Issue 545: Convert deserializer StopIteration errors to raw ExceptionsDana Powers2016-02-152-2/+9
|
* Fixup RequestTimeoutError -> RequestTimedOutErrorDana Powers2016-02-152-2/+2
|
* Improve KafkaClient.check_version()Dana Powers2016-02-151-13/+27
| | | | | | | - only raise AssertionErrors if strict=True (default False) - connect timeout is configurable (default 2secs) - monkeypatch request_timeout_ms config and check for RequestTimeoutErrors - add assertion error message
* Fix Typos (Issue 536)Dana Powers2016-02-151-1/+1
|
* KAFKA-3191: Improve offset committing docstringsDana Powers2016-02-021-2/+6
|
* 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 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
| |
* | Handle broken LZ4 framing; switch to lz4tools + xxhashlz4_fixupDana Powers2016-01-261-7/+51
|/
* 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
|
* 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
|
* Fix Fetch._create_fetch_requests docstringDana Powers2016-01-251-1/+1
|
* 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
|
* 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
|
* Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-255-7/+30
|
* Disable offset commits and auto-partition-assignment when group_id is NoneDana Powers2016-01-242-28/+45
|
* 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
|
* Pylint ignores to fix weird 2.7 error in new pylint versionDana Powers2016-01-231-0/+3
|
* 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
|