summaryrefslogtreecommitdiff
path: root/kafka/protocol/message.py
Commit message (Collapse)AuthorAgeFilesLines
* Avoid re-encoding for message crc check (#1027)Dana Powers2017-03-131-6/+12
|
* Fixed couple of "leaks" when gc is disabled (#979)Max Baryshnikov2017-03-071-2/+2
|
* PEP-8: Spacing & removed unused imports (#899)Jeff Widman2017-02-091-4/+3
|
* Fix message timestamp_type (#828)Josh Yudaken2016-09-151-1/+4
|
* Always absolute_importabsolute_importDana Powers2016-08-021-0/+2
|
* Always encode size with MessageSet (#771)Dana Powers2016-07-171-3/+1
|
* Fix regression in MessageSet decoding wrt PartialMessages (#716)Dana Powers2016-06-011-3/+6
|
* Use standard LZ4 framing for v1 messages / kafka 0.10 (#695)Dana Powers2016-05-221-2/+6
| | | | | | * LZ4 framing fixed in 0.10 / message v1 -- retain broken lz4 code for compatibility * lz4f does not support easy incremental decompression - raise RuntimeError * Update lz4 codec tests
* KAFKA-3025: Message v1 -- add timetamp and use relative offset in compressed ↵Dana Powers2016-05-221-17/+61
| | | | messagesets
* Always pass encoded message bytes to MessageSet.encode()Dana Powers2016-05-221-37/+17
|
* Add support for LZ4 compressed messages using python-lz4 moduleDana Powers2016-01-251-3/+12
|
* 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
|
* Message value can be NoneDana Powers2016-01-031-1/+1
|
* Override Message __hash__ to use _encode_self and not recalc crcsDana Powers2016-01-031-0/+3
|
* Assert Message value and (optional) key are bytesDana Powers2016-01-031-0/+2
|
* Support message decompressionDana Powers2015-12-311-2/+25
|
* Add Message.validate_crc() methodDana Powers2015-12-281-0/+7
|
* Support pickling of Structs -- _encode_self instance method needs some magicDana Powers2015-12-091-0/+1
|
* Return PartialMessage object in MessageSet.decode if message is truncated by ↵Dana Powers2015-12-091-3/+10
| | | | max_bytes
* Fix BytesIO import in kafka.protocol.messageDana Powers2015-12-091-1/+3
|
* Handle special __init__ signature in Message decode()Dana Powers2015-12-091-0/+8
|
* Handle decoding partial messages in MessageSet - caused by FetchRequest ↵Dana Powers2015-12-091-6/+24
| | | | max_bytes
* Add comment re bytes offset tracking in MessageSet decode()Dana Powers2015-12-041-1/+1
|
* Recursive repr, display all field names and values for StructsDana Powers2015-12-041-1/+5
|
* Use simply counting instead of buffer.tell() -- socket.makefile does not ↵Dana Powers2015-12-041-2/+4
| | | | support tell()
* Rework protocol type definition: AbstractType, Schema, StructDana Powers2015-12-041-0/+67