summaryrefslogtreecommitdiff
path: root/test/test_fetcher.py
Commit message (Collapse)AuthorAgeFilesLines
* Expose record headers in ConsumerRecordsHeikki Nousiainen2018-09-271-3/+3
|
* Don't use `kafka.common` internally1.3.5Jeff Widman2018-06-051-2/+2
| | | | This finishes the split from `kafka.common` to `kafka.errors`/`kafka.structs`.
* Fix KafkaConsumer compacted offset handling (#1397)Dana Powers2018-02-261-2/+19
|
* Avoid consuming duplicate compressed messages from mid-batch (#1367)Dana Powers2018-02-051-0/+40
|
* Revert ffc7caef13a120f69788bcdd43ffa01468f575f9 / PR #1239Dana Powers2017-11-161-23/+0
| | | | The change caused a regression documented in issue #1290
* Add DefaultRecordBatch implementation aka V2 message format parser/builder. ↵Taras Voinarovskyi2017-10-251-1/+1
| | | | | (#1185) Added bytecode optimization for varint and append/read_msg functions. Mostly based on avoiding LOAD_GLOBAL calls.
* Fix tests and rebase problemsTaras2017-10-121-95/+27
|
* More testsKAFKA_3977_defer_fetch_parsingDana Powers2017-10-081-15/+195
|
* Add tests for Fetcher.fetched_records and _handle_fetch_responseDana Powers2017-10-071-14/+118
|
* Fix Fetcher.PartitionRecords to handle fetch_offset in the middle of ↵Dana Powers2017-10-051-1/+24
| | | | compressed messageset (#1239)
* Stop using mutable types for default arg values1212-stop-using-mutable-types-for-default-arg-valuesJeff Widman2017-09-121-1/+1
| | | | | | | | Using mutable types for default args is typically a no-no unless their surprising behavior is being explicitly abused, for an explanation see: http://effbot.org/zone/default-values.htm Fix #1212
* Added unit tests for fetcher's `_reset_offset` and related functions.Taras Voinarovskiy2017-08-071-1/+182
|
* Added `max_bytes` option and FetchRequest_v3 usage. (#962)Taras Voinarovskyi2017-03-061-1/+2
| | | | * Added `max_bytes` option and FetchRequest_v3 usage. * Add checks for versions above 0.10 based on ApiVersionResponse
* PEP-8: Spacing & removed unused imports (#899)Jeff Widman2017-02-091-4/+2
|
* KAFKA-3007: KafkaConsumer max_poll_records (#831)Dana Powers2016-09-281-14/+2
|
* Treat metric_group_prefix as config in KafkaConsumerDana Powers2016-08-041-1/+1
|
* Add api_version config to KafkaClient, deprecate str in favor of tuples (#761)Dana Powers2016-07-161-1/+1
|
* Use Fetch/Produce API v2 for brokers >= 0.10 (uses message format v1) (#694)Dana Powers2016-05-221-1/+14
|
* instrument metrics for fetch requestsZack Dever2016-04-131-1/+2
|
* Use version-indexed lists for request/response protocol structsprotocol_versionsDana Powers2016-04-051-11/+13
|
* Update imports from kafka.common -> kafka.errors / kafka.structsDana Powers2016-04-051-3/+2
|
* Add Fetcher unit testsDana Powers2016-01-251-0/+101