You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release 1.4.0 of the Amazon Kinesis Client for Python
* Added a new v2 record processor class that allows access to updated features.
* Record processor initialization
* The initialize method receives an InitializeInput object that
provides shard id, and the starting sequence and sub sequence numbers.
* Process records calls
* The process_records calls now receives a ProcessRecordsInput
object that, in addition to the records, now includes the
millisBehindLatest for the batch of records
* Records are now represented as a Record object that adds new data,
and includes some convenience methods
* Adds a `binary_data` method that handles the base 64 decode of the data.
* Includes the sub sequence number of the record.
* Includes the approximate arrival time stamp of the record.
* Record processor shutdown
* The method `shutdown` now receives a `ShutdownInput` object.
* Checkpoint methods now accept a sub sequence number in addition to the
sequence number.
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -137,6 +137,20 @@ all languages.
137
137
* The [Amazon Kinesis Forum][kinesis-forum]
138
138
139
139
## Release Notes
140
+
### Release 1.4.0 (November 9, 2016)
141
+
* Added a new v2 record processor class that allows access to updated features.
142
+
* Record processor initialization
143
+
* The initialize method receives an InitializeInput object that provides shard id, and the starting sequence and sub sequence numbers.
144
+
* Process records calls
145
+
* The process_records calls now receives a ProcessRecordsInput object that, in addition to the records, now includes the millisBehindLatest for the batch of records
146
+
* Records are now represented as a Record object that adds new data, and includes some convenience methods
147
+
* Adds a `binary_data` method that handles the base 64 decode of the data.
148
+
* Includes the sub sequence number of the record.
149
+
* Includes the approximate arrival time stamp of the record.
150
+
* Record processor shutdown
151
+
* The method `shutdown` now receives a `ShutdownInput` object.
152
+
* Checkpoint methods now accept a sub sequence number in addition to the sequence number.
153
+
140
154
### Release 1.3.1
141
155
* Version number increase to stay inline with PyPI.
0 commit comments