Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix crc32c deprecation warning (#2128) | Jeff Widman | 2020-09-17 | 1 | -1/+1 |
| | | | Fix a deprecation warning in the newest version. | ||||
* | Add support for `zstd` compression (#2021) | Tincu Gabriel | 2020-09-07 | 2 | -3/+10 |
| | |||||
* | Fix slots usage and use more slots | Carson Ip | 2020-02-05 | 4 | -0/+26 |
| | | | | | Use empty slots for ABC classes, otherwise classes which inherit from them will still have __dict__. Also use __slots__ for more classes. | ||||
* | Fix typos | Carson Ip | 2019-11-08 | 1 | -1/+1 |
| | |||||
* | 1701 use last offset from fetch v4 if available (#1724) | Keith So | 2019-03-13 | 1 | -0/+4 |
| | |||||
* | Be explicit with tuples for %s formatting | Jeff Widman | 2018-11-18 | 1 | -1/+1 |
| | | | | Fix #1633 | ||||
* | Add temp workaround for upstream pylint bug | Jeff Widman | 2018-10-26 | 1 | -1/+3 |
| | | | | Temporarily workaround https://github.com/PyCQA/pylint/issues/2571 so that we can stop pinning `pylint`. | ||||
* | Update remote urls: snappy, https, etc | Jeff Widman | 2018-10-22 | 1 | -2/+2 |
| | | | | | Snappy URL was outdated. Similarly, many of these sites now support https. | ||||
* | Add codec validators to record parser and builder for all formats (#1447) | Taras | 2018-04-18 | 2 | -6/+34 |
| | |||||
* | Fix MemoryRecord bugs re error handling and add test coverage (#1448) | Taras | 2018-04-18 | 3 | -7/+7 |
| | |||||
* | Use hardware accelerated CRC32C function if available (#1389) | Taras Voinarovskyi | 2018-02-21 | 1 | -3/+11 |
| | | | | | | * Use hardware accelerated CRC32C function if available * Add doc notice of optional `crc32c` package | ||||
* | use absolute imports everywhere (#1362) | Kevin Tindall | 2018-02-06 | 5 | -9/+9 |
| | |||||
* | Add DefaultRecordBatch implementation aka V2 message format parser/builder. ↵ | Taras Voinarovskyi | 2017-10-25 | 7 | -10/+891 |
| | | | | | (#1185) Added bytecode optimization for varint and append/read_msg functions. Mostly based on avoiding LOAD_GLOBAL calls. | ||||
* | Fix timestamp not passed to RecordMetadata (#1273) | Taras Voinarovskyi | 2017-10-22 | 2 | -9/+48 |
| | | | | | | | | * Fix timestamp not being passed to RecordMetadata properly * Add more tests for LegacyBatch * Fix producer test for recordmetadata | ||||
* | Added minor fixes for PR review | Taras | 2017-10-12 | 1 | -1/+1 |
| | |||||
* | Remove the check for timestamp None in producer, as it's done in RecordBatch ↵ | Taras | 2017-10-12 | 1 | -14/+7 |
| | | | | | | anyway. Minor abc doc fixes. | ||||
* | Fix snappy compression on PyPy | Taras | 2017-10-12 | 1 | -4/+5 |
| | |||||
* | Refactor MessageSet and Message into LegacyRecordBatch to later support v2 ↵ | Taras | 2017-10-11 | 5 | -0/+791 |
message format |