Release 1.8.8 of the Amazon Kinesis Client for Java
Release 1.8.8 * Fixed issues with leases losses due to `ExpiredIteratorException` in `PrefetchGetRecordsCache` and `AsynchronousFetchingStrategy`. PrefetchGetRecordsCache will request for a new iterator and start fetching data again. * PR#263 * Added warning message for long running tasks. * PR#259 * Handling spurious lease renewal failures gracefully. Added better handling of DynamoDB failures when updating leases. These failures would occur when a request to DynamoDB appeared to fail, but was actually successful. * PR#247 * ShutdownTask gets retried if the previous attempt on the ShutdownTask fails. * PR#267 * Fix for using maxRecords from `KinesisClientLibConfiguration` in `GetRecordsCache` for fetching records. * PR#264
This commit is contained in:
parent
3c705300b5
commit
47e6206e8d
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: Amazon Kinesis Client Library for Java
|
||||
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
||||
Bundle-Version: 1.8.7
|
||||
Bundle-Version: 1.8.8
|
||||
Bundle-Vendor: Amazon Technologies, Inc
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
||||
|
|
|
|||
|
|
@ -126,7 +126,7 @@ public class KinesisClientLibConfiguration {
|
|||
/**
|
||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
||||
*/
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.8.7";
|
||||
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.8.8";
|
||||
|
||||
/**
|
||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||
|
|
|
|||
Loading…
Reference in a new issue