- Fixing bug in PrefetchRecordsPublisher which was causing retry storms if initial request fails.
- Fixing bug where idleTimeBetweenReadsInMillis property was ignored in PollingConfig.
- Adding support for Glue Schema Registry. Deserialize and read schemas associated with the records.
- Updating AWS SDK version to 2.15.31
- Introducing support for processing multiple kinesis data streams with the same KCL 2.x for java consumer application
-
To build a consumer application that can process multiple streams at the same time, you must implement a new interface called MultistreamTracker (https://github.com/awslabs/amazon-kinesis-client/blob/0c5042dadf794fe988438436252a5a8fe70b6b0b/amazon-kinesis-client/src/main/java/software/amazon/kinesis/processor/MultiStreamTracker.java)
-
MultistreamTracker will also publish various metrics around the current active streams being processed, the number of streams which are deleted at this time period or are pending deletion.
-
-
Behavior of shard synchronization is moving from each worker independently learning about all existing shards to workers only discovering the children of shards that each worker owns. This optimizes memory usage, lease table IOPS usage, and number of calls made to kinesis for streams with high shard counts and/or frequent resharding.
-
When bootstrapping an empty lease table, KCL utilizes the
ListShard
API's filtering option (the ShardFilter optional request parameter) to retrieve and create leases only for a snapshot of shards open at the time specified by theShardFilter
parameter. TheShardFilter
parameter enables you to filter out the response of theListShards
API, using theType
parameter. KCL uses theType
filter parameter and the following of its valid values to identify and return a snapshot of open shards that might require new leases.- Currently, the following shard filters are supported:
AT_TRIM_HORIZON
- the response includes all the shards that were open atTRIM_HORIZON
.AT_LATEST
- the response includes only the currently open shards of the data stream.AT_TIMESTAMP
- the response includes all shards whose start timestamp is less than or equal to the given timestamp and end timestamp is greater than or equal to the given timestamp or still open.
ShardFilter
is used when creating leases for an empty lease table to initialize leases for a snapshot of shards specified atRetrievalConfig#initialPositionInStreamExtended
.- For more information about ShardFilter, see the official AWS documentation on ShardFilter.
- Currently, the following shard filters are supported:
-
Introducing support for the
ChildShards
response of theGetRecords
and theSubscribeToShard
APIs to perform lease/shard synchronization that happens atSHARD_END
for closed shards, allowing a KCL worker to only create leases for the child shards of the shard it finished processing.- For shared throughout consumer applications, this uses the
ChildShards
response of theGetRecords
API. For dedicated throughput (enhanced fan-out) consumer applications, this uses theChildShards
response of theSubscribeToShard
API. - For more information, see the official AWS Documentation on GetRecords, SubscribeToShard, and ChildShard.
- For shared throughout consumer applications, this uses the
-
KCL now also performs additional periodic shard/lease scans in order to identify any potential holes in the lease table to ensure the complete hash range of the stream is being processed and create leases for them if required.
PeriodicShardSyncManager
is the new component that is responsible for running periodic lease/shard scans.- New configuration options are available to configure
PeriodicShardSyncManager
inLeaseManagementConfig
Name Default Description leasesRecoveryAuditorExecutionFrequencyMillis 120000 (2 minutes) Frequency (in millis) of the auditor job to scan for partial leases in the lease table. If the auditor detects any hole in the leases for a stream, then it would trigger shard sync based on leasesRecoveryAuditorInconsistencyConfidenceThreshold. leasesRecoveryAuditorInconsistencyConfidenceThreshold 3 Confidence threshold for the periodic auditor job to determine if leases for a stream in the lease table is inconsistent. If the auditor finds same set of inconsistencies consecutively for a stream for this many times, then it would trigger a shard sync - New CloudWatch metrics are also now emitted to monitor the health of
PeriodicShardSyncManager
:
Name Description NumStreamsWithPartialLeases Number of streams that had holes in their hash ranges. NumStreamsToSync Number of streams which underwent a full shard sync. - New configuration options are available to configure
-
Introducing deferred lease cleanup. Leases will be deleted asynchronously by
LeaseCleanupManager
upon reachingSHARD_END
, when a shard has either expired past the stream’s retention period or been closed as the result of a resharding operation.- New configuration options are available to configure
LeaseCleanupManager
.
Name Default Description leaseCleanupIntervalMillis 1 minute Interval at which to run lease cleanup thread. completedLeaseCleanupIntervalMillis 5 minutes Interval at which to check if a lease is completed or not. garbageLeaseCleanupIntervalMillis 30 minutes Interval at which to check if a lease is garbage (i.e trimmed past the stream's retention period) or not. - New configuration options are available to configure
-
Introducing experimental support for multistreaming, allowing a single KCL application to multiplex processing multiple streams.
- New configuration options are available to enable multistreaming in
RetrievalConfig#appStreamTracker
.
- New configuration options are available to enable multistreaming in
-
Fixing a bug in
PrefetchRecordsPublisher
restarting while it was already running. -
Including an optimization to
HierarchicalShardSyncer
to only create leases for one layer of shards. -
Adding support to prepare and commit lease checkpoints with arbitrary bytes.
- This allows checkpointing of an arbitrary byte buffer up to the maximum permitted DynamoDB item size (currently 400 KB as of release), and can be used for recovery by passing a serialized byte buffer to
RecordProcessorCheckpointer#prepareCheckpoint
andRecordProcessorCheckpointer#checkpoint
.
- This allows checkpointing of an arbitrary byte buffer up to the maximum permitted DynamoDB item size (currently 400 KB as of release), and can be used for recovery by passing a serialized byte buffer to
-
Upgrading version of AWS SDK to 2.14.0.
-
#725 Allowing KCL to consider lease tables in
UPDATING
healthy.
- Adjusting HTTP2 initial window size to 512 KB
- Updating protobuf-java to version 3.11.4
- Updating the AWS Java SDK to version 2.13.25
- Fixing a bug in DynamoDB billing mode support for special regions.
- Adding request id logging to ShardConsumerSubscriber.
- Updating the AWS SDK version to 2.10.66.
- Adding request id logging to SubscribeToShard response.
- Updating the AWS SDK version to 2.10.56.
- Making ShardConsumerTest resilient to race conditions.
- Updating integration test naming.
- Updating the AWS SDK version to 2.10.25
- Adding a configurable DynamoDB billing mode
- PR#582
- NOTE: Billing mode is not available in all regions; if your lease table cannot be created, use the following configuration as a workaround:
LeaseManagementConfig leaseManagementConfig = builder.leaseManagementConfig().billingMode(null).build();
- Updating the SDK version to 2.9.25.
- Clearing the local cache on a subscription termination, to avoid noisy logs on new subscriptions.
- Updating the SDK version to 2.10.0 in order to fix the premature H2 stream close issue.
- PR#649
- NOTE: SDK has a known connection teardown issue when multiple H2 streams are used within a connection. This might result in shard consumers sticking to a stale service host and not progressing. If your shard consumer gets stuck, use the following configuration as a workaround. This configuration might result in up to 5X increase in total connections.
KinesisAsyncClient kinesisClient = KinesisAsyncClient.builder() .region(region) .httpClientBuilder(NettyNioAsyncHttpClient.builder().maxConcurrency(Integer.MAX_VALUE).maxHttp2Streams(1)) .build()
- Updating Sonatype to dedicated AWS endpoint.
- Introducing a validation step to verify if ShardEnd is reached, to prevent shard consumer stuck scenarios in the event of malformed response from service.
- Making FanoutRecordsPublisher test cases resilient to delayed thread operations
- Drain delivery queue in the FanoutRecordsPublisher to make slow consumers consume events at their pace
- Fix to prevent the onNext event going to stale subscription when restart happens in PrefetchRecordsPublisher
- Fix to prevent data loss and stuck shards in the event of failed records delivery in Polling readers
- Fix to prevent invalid ShardConsumer state transitions due to rejected executor service executions.
- Fixing a bug in which initial subscription failure caused a shard consumer to get stuck.
- Making CW publish failures visible by executing the async publish calls in a blocking manner and logging on exception.
- Update shard end checkpoint failure messaging.
- A fix for resiliency and durability issues that occur in the reduced thread mode - Nonblocking approach.
- Preventing duplicate delivery due to unacknowledged event, while completing the subscription.
- Add periodic logging for the state of the thread pool executor service. This service executes the async tasks submitted to and by the ShardConsumer.
- Add logging of failures from RxJava layer.
- Updated License to Apache License 2.0
- Introducing configuration for suppressing logs from ReadTimeoutExceptions caused while calling SubscribeToShard.
Suppression can be configured by settingLifecycleConfig#readTimeoutsToIgnoreBeforeWarning(Count)
.
- Added a message to recommend using
KinesisClientUtil
when an acquire timeout occurs in theFanOutRecordsPublisher
. - Added a sleep between retries while waiting for a newly created stream consumer to become active.
- Added timeouts on all futures returned from the DynamoDB and Kinesis clients.
The timeouts can be configured by settingLeaseManagementConfig#requestTimeout(Duration)
for DynamoDB, andPollingConfig#kinesisRequestTimeout(Duration)
for Kinesis. - Upgraded to SDK version 2.5.10.
- Artifacts for the Amazon Kinesis Client for Java are now signed by a new GPG key:
pub 4096R/86368934 2019-02-14 [expires: 2020-02-14] uid Amazon Kinesis Tools <amazon-kinesis-tools@amazon.com>
- Fixed handling of the progress detection in the
ShardConsumer
to restart from the last accepted record, instead of the last queued record. - Fixed handling of exceptions when using polling so that it will no longer treat
SdkException
s as an unexpected exception. - Fixed a case where lease loss would block the
Scheduler
while waiting for a record processor'sprocessRecords
method to complete.
- Introducing
SHUT_DOWN_STARTED
state for theWorkerStateChangeListener
. - Fixed a bug with
AWSSessionCredentials
usingAWSSecretID
instead ofAWSAccessID
and vice versa. - Upgrading SDK version to 2.4.0, which includes a fix for a possible deadlock when using Enhanced Fan-Out.
- Introducing MultiLangDaemon support for Enhanced Fan-Out.
- MultiLangDaemon now supports the following command line options.
--properties-file
: Properties file that the KCL should use to set up the Scheduler.--log-configuration
: logback.xml that the KCL should use for logging.
- Updated AWS SDK dependency to 2.2.0.
- MultiLangDaemon now uses logback for logging.
- Fixed a deadlock condition that could occur when using the polling model.
When using thePollingConfig
and a slower record processor it was possible to hit a deadlock in the retrieval of records. - Adjusted
RetrievalConfig
, andFanOutConfig
to use accessors instead of direct member access.
- Added method to retrieve leases from the LeaseCoordinator and LeaseTaker.
- Fixed a race condition shutting down the Scheduler before it has completed initialization.
- Added
HierarchicalShardSyncer
which replaces the staticShardSyncer
.
HierarchicalShardSyncer
removes the contention between multiple instances of the Scheduler when running under a single JVM. - Added
TaskExecutionListener
which allows monitoring of tasks being executed by theShardConsumer
.
The listener is invoked before and after a task is executed by theShardConsumer
.
- Fixed an issue where the
KinesisAsyncClient
could be misconfigured to use HTTP 1.1.
Using HTTP 1.1 withSubscribeToShard
is unsupported, and could cause misdelivery of records to the record processor. - Lower the severity of
ReadTimeout
exceptions.
ReadTimeout
exceptions can occur if the client is unable to request data from Kinesis for more than client timeout, which defaults to 30 seconds. This can occur if the record processor blocks for more than the timeout period.ReadTimeout
could also occur as part of Issue #391. - Added a callback that allows applications to take actions after DynamoDB table creation.
Applications can now install a callback that is called after creating the DynamoDB table by implementingTableCreatorCallback
. - Updated the guava dependency to 26.0-jre.
- Added some additional debug logging around the initialization of the
FanOutRecordsPublisher
. - Upgraded AWS SDK version to 2.0.6
- Fixed an issue where the a warning would be logged every second if
logWarningForTaskAfterMillis
was set.
The logging for last time of data arrival now respects the value oflogWarningForTaskAfterMillis
. - Moved creation of
WorkerStateChangedListener
andGracefulShutdownCoordinator
to theCoordinatorConfig
. Originally theWorkerStateChangedListener
andGracefulShutdownCoordinator
were created by methods on theSchedulerCoordinatorFactory
, but they should have been configuration options.
The original methods have been deprecated, and may be removed at a later date. - Removed dependency on Apache Commons Lang 2.6.
The dependency on Apache Commons Lang 2.6 has removed, and all usages updated to use Apache Commons Lang 3.7. - Fixed a typo in the MutliLang Daemon shutdown hook.
- Added method
onAllInitializationAttemptsFailed(Throwable)
toWorkerStateChangedListener
to report when all initialization attempts have failed.
This method is a default method, and it isn't require to implement the method. This method is only called after all attempts to initialize theScheduler
have failed.
- Mark certain internal components with
@KinesisClientInternalApi
attribute.
Components marked as internal may be deprecated at a faster rate than public components. - Fixed an issue where
ResourceNotFoundException
on subscription to a shard was not triggering end of shard handling.
If a lease table contains a shard that is no longer present in the stream attempt to subscribe to that shard will trigger aResourceNotFoundException
. These exception are treated the same as reaching the end of a shard. - Fixed an issue where the KCL would not Use the configured DynamoDB IOPs when creating the lease table.
- Make the maximum number of Scheduler initialization attempts configurable.
The maximum number ofScheduler
initialization attempts can be configured viaCoordinatorConfig#maxInitializationAttempts
. - Fixed an issue where it was possible to get a duplicate record when resubscribing to a shard.
Subscribe to shard requires periodic resubscribing, and uses a new concept of a continuation sequence number. If the continuation sequence number was equal to the last record that record would be processed a second time. Resubscribing now usesAFTER_SEQUENCE_NUMBER
to ensure that only later records are returned. - Upgraded to AWS SDK 2.0.1
- Fixed an issue where time based restart of the subscription wasn't resetting the
lastRequestTime
.
If a subscription hasn't delivered any data for more than 30 seconds it will be canceled and restarted. This detection is based of thelastRequestTime
which wasn't getting reset after the restart was triggered. - Fixed an issue where requesting on the subscription from the
FanOutRecordsPublisher
could trigger an unexpected failure.
Due to a race condition the underlying flow in the subscription could be set to something else. The method is now synchronized, and verifies that the subscriber it was created with is still the subscriber in affect.
This issue generally would only appear when multiple errors were occurring while connecting to Kinesis. - Fixed an issue where the number of requested items could exceed the capacity of the RxJava queue.
There was an off by one issue when determining whether to make a request to the SDK subscription. This changes the calculation to represent the capacity as a queue.
-
The Maven
groupId
, along with theversion
, for the Amazon Kinesis Client has changed fromcom.amazonaws
tosoftware.amazon.kinesis
.
To add a dependency on the new version of the Amazon Kinesis Client:<dependency> <groupId>software.amazon.kinesis</groupId> <artifactId>amazon-kinesis-client</artifactId> <version>2.0.0</version> </dependency>
-
Added support for Enhanced Fan Out.
Enhanced Fan Out provides for lower end to end latency, and increased number of consumers per stream.- Records are now delivered via streaming, reducing end-to-end latency.
- The Amazon Kinesis Client will automatically register a new consumer if required.
When registering a new consumer, the Kinesis Client will default to the application name unless configured otherwise. SubscribeToShard
maintains long lived connections with Kinesis, which in the AWS Java SDK 2.0 is limited by default.
TheKinesisClientUtil
has been added to assist configuring themaxConcurrency
of theKinesisAsyncClient
.
WARNING: The Amazon Kinesis Client may see significantly increased latency, unless theKinesisAsyncClient
is configured to have amaxConcurrency
high enough to allow all leases plus additional usages of theKinesisAsyncClient
.- The Amazon Kinesis Client now uses 3 additional Kinesis API's:
WARNING: If using a restrictive Kinesis IAM policy you may need to add the following API methods to the policy. - New configuration options are available to configure Enhanced Fan Out.
Name Default Description consumerArn Unset The ARN for an already created consumer. If this is set, the Kinesis Client will not attempt to create a consumer. streamName Unset The name of the stream that a consumer should be create for if necessary consumerName Unset The name of the consumer to create. If this is not set the applicationName will be used instead. applicationName Unset The name of the application. This is used as the name of the consumer unless consumerName is set. -
Modular Configuration of the Kinesis Client The Kinesis Client has migrated to a modular configuration system, and the
KinesisClientLibConfiguration
class has been removed.
Configuration has been split into 7 classes. Default versions of the configuration can be created from theConfigsBuilder
.
Please [see the migration guide for more information][migration-guide].CheckpointConfig
CoordinatorConfig
LeaseManagementConfig
LifecycleConfig
MetricsConfig
ProcessorConfig
RetrievalConfig
-
Upgraded to AWS Java SDK 2.0
The Kinesis Client now uses the AWS Java SDK 2.0. The dependency on AWS Java SDK 1.11 has been removed. All configurations will only accept 2.0 clients.- When configuring the
KinesisAsyncClient
theKinesisClientUtil#createKinesisAsyncClient
can be used to configure the Kinesis Client - If you need support for AWS Java SDK 1.11 you will need to add a direct dependency.
When adding a dependency you must ensure that the 1.11 versions of Jackson dependencies are excluded
[Please see the migration guide for more information][migration-guide]
- When configuring the
-
MultiLangDaemon is now a separate module
The MultiLangDaemon has been separated to its own Maven module and is no longer available inamazon-kinesis-client
. To include the MultiLangDaemon, add a dependency onamazon-kinesis-client-multilang
.
- Added the ability to create a prepared checkpoint when at
SHARD_END
. - Added the ability to subscribe to worker state change events.
- Added support for custom lease managers.
A customLeaseManager
can be provided toWorker.Builder
that will be used to provide lease services. This makes it possible to implement custom lease management systems in addition to the default DynamoDB system. - Updated the version of the AWS Java SDK to 1.11.219
-
Introducing support for ListShards API. This API is used in place of DescribeStream API to provide more throughput during ShardSyncTask. Please consult the AWS Documentation for ListShards for more information.
- ListShards supports higher call rate, which should reduce instances of throttling when attempting to synchronize the shard list.
- WARNING:
ListShards
is a new API, and may require updating any explicit IAM policies - Added configuration parameters for ListShards usage
Name Default Description listShardsBackoffTimeInMillis 1500 ms This is the default backoff time between 2 ListShards calls when throttled. listShardsRetryAttempts 50 This is the maximum number of times the KinesisProxy will retry to make ListShards calls on being throttled. -
Updating the version of AWS Java SDK to 1.11.272.
- Version 1.11.272 is now the minimum support version of the SDK.
-
Deprecating the following methods, and classes. These methods, and classes will be removed in a future release.
- Deprecated IKinesisProxy#getStreamInfo.
- Deprecated IKinesisProxyFactory.
- Deprecated KinesisProxyFactory.
- Deprecated certain KinesisProxy constructors.
- Allow providing a custom IKinesisProxy implementation.
- Checkpointing on a different thread should no longer emit a warning about NullMetricsScope.
- Upgraded the AWS Java SDK to version 1.11.271
- Allow disabling check for the case where a child shard has an open parent shard.
There is a race condition where it's possible for the a parent shard to appear open, while having child shards. This check can now be disabled by settingignoreUnexpectedChildShards
to true. - Upgraded the AWS SDK for Java to 1.11.261
-
Fixed issues with leases losses due to
ExpiredIteratorException
inPrefetchGetRecordsCache
andAsynchronousFetchingStrategy
.
PrefetchGetRecordsCache will request for a new iterator and start fetching data again. -
Added warning message for long running tasks.
Logging long running tasks can be enabled by setting the following configuration property:Name Default Description logWarningForTaskAfterMillis
Not set Milliseconds after which the logger will log a warning message for the long running task -
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. -
ShutdownTask gets retried if the previous attempt on the ShutdownTask fails.
-
Fix for using maxRecords from
KinesisClientLibConfiguration
inGetRecordsCache
for fetching records.
- Don't add a delay for synchronous requests to Kinesis
Removes a delay that had been added for synchronousGetRecords
calls to Kinesis.
-
Add prefetching of records from Kinesis
Prefetching will retrieve and queue additional records from Kinesis while the application is processing existing records.
Prefetching can be enabled by settingdataFetchingStrategy
toPREFETCH_CACHED
. Once enabled an additional fetching thread will be started to retrieve records from Kinesis. Retrieved records will be held in a queue until the application is ready to process them.
Pre-fetching supports the following configuration values:Name Default Description dataFetchingStrategy
DEFAULT
Which data fetching strategy to use maxPendingProcessRecordsInput
3 The maximum number of process records input that can be queued maxCacheByteSize
8 MiB The maximum number of bytes that can be queued maxRecordsCount
30,000 The maximum number of records that can be queued idleMillisBetweenCalls
1,500 ms The amount of time to wait between calls to Kinesis
- Only advance the shard iterator for the accepted response.
This fixes a race condition in theKinesisDataFetcher
when it's being used to make asynchronous requests. The shard iterator is now only advanced when the retriever callsDataFetcherResult#accept()
.
- Create a new completion service for each request.
This ensures that canceled tasks are discarded. This will prevent a cancellation exception causing issues processing records.
- Call shutdown on the retriever when the record processor is being shutdown
This fixes a bug that could leak threads if using theAsynchronousGetRecordsRetrievalStrategy
is being used.
The asynchronous retriever is only used whenKinesisClientLibConfiguration#retryGetRecordsInSeconds
, andKinesisClientLibConfiguration#maxGetRecordsThreadPool
are set.
- Add support for two phase checkpoints
Applications can now set a pending checkpoint, before completing the checkpoint operation. Once the application has completed its checkpoint steps, the final checkpoint will clear the pending checkpoint.
Should the checkpoint fail the attempted sequence number is provided in theInitializationInput#getPendingCheckpointSequenceNumber
otherwise the value will be null. - Support timeouts, and retry for GetRecords calls.
Applications can now set timeouts for GetRecord calls to Kinesis. As part of setting the timeout, the application must also provide a thread pool size for concurrent requests. - Notification when the lease table is throttled
When writes, or reads, to the lease table are throttled a warning will be emitted. If you're seeing this warning you should increase the IOPs for your lease table to prevent processing delays. - Support configuring the graceful shutdown timeout for MultiLang Clients
This adds support for setting the timeout that the Java process will wait for the MutliLang client to complete graceful shutdown. The timeout can be configured by addingshutdownGraceMillis
to the properties file set to the number of milliseconds to wait.
- Support timeouts for calls to the MultiLang Daemon
This adds support for setting a timeout when dispatching records to the client record processor. If the record processor doesn't respond within the timeout the parent Java process will be terminated. This is a temporary fix to handle cases where the KCL becomes blocked while waiting for a client record processor.
The timeout for the this can be set by adding
timeoutInSeconds = <timeout value>
. The default for this is no timeout.
Setting this can cause the KCL to exit suddenly, before using this ensure that you have an automated restart for your application
- Execute graceful shutdown on its own thread
- Added support for controlling the size of the lease renewer thread pool
- Require Java 8 and later
Java 8 is now required for versions 1.8.0 of the amazon-kinesis-client and later.
- Added support for graceful shutdown in MultiLang Clients
- Updated documentation for
v2.IRecordProcessor#shutdown
, andKinesisClientLibConfiguration#idleTimeBetweenReadsMillis
- Updated to version 1.11.151 of the AWS Java SDK
- Correctly handle throttling for DescribeStream, and save accumulated progress from individual calls.
- Upgrade to version 1.11.115 of the AWS Java SDK
- Fixed an issue building JavaDoc for Java 8.
- Reduce Throttling Messages to WARN, unless throttling occurs 6 times consecutively.
- Fixed two bugs occurring in requestShutdown.
- Fixed a bug that prevented the worker from shutting down, via requestShutdown, when no leases were held.
- Fixed a bug that could trigger a NullPointerException if leases changed during requestShutdown.
- PR #139
- Upgraded the AWS SDK Version to 1.11.91
- Use an executor returned from
ExecutorService.newFixedThreadPool
instead of constructing it by hand. - Correctly initialize DynamoDB client, when endpoint is explicitly set.
- Upgrade to the newest AWS Java SDK.
- Added a direct dependency on commons-logging.
- Make ShardInfo public to allow for custom ShardPrioritization strategies.
- MultiLangDaemon Feature Updates The MultiLangDaemon has been upgraded to use the v2 interfaces, which allows access to enhanced checkpointing, and more information during record processor initialization. The MultiLangDaemon clients must be updated before they can take advantage of these new features.
- General
- Allow disabling shard synchronization at startup.
- Applications can disable shard synchronization at startup. Disabling shard synchronization can application startup times for very large streams.
- PR #102
- Applications can now request a graceful shutdown, and record processors that implement the IShutdownNotificationAware will be given a chance to checkpoint before being shutdown.
- This adds a new interface, and a new method on Worker.
- PR #109
- Solves Issue #79
- Allow disabling shard synchronization at startup.
- MultiLangDaemon
- Add support for time based iterators (See GetShardIterator Documentation)
- Allow Prioritization of Parent Shards for Task Assignment
- PR #95
The
KinesisClientLibconfiguration
now supports providing aShardPrioritization
strategy. This strategy controls how theWorker
determines whichShardConsumer
to call next. This can improve processing for streams that split often, such as DynamoDB Streams.
- PR #95
The
- Remove direct dependency on
aws-java-sdk-core
, to allow independent versioning.- PR #92 You may need to add a direct dependency on aws-java-sdk-core if other dependencies include an older version.
- Change LeaseManager to call DescribeTable before attempting to create the lease table.
- Allow DynamoDB lease table name to be specified
- Add approximateArrivalTimestamp for JsonFriendlyRecord
- Shutdown lease renewal thread pool on exit.
- Wait for CloudWatch publishing thread to finish before exiting.
- Added unit, and integration tests for the library.
- Upgrade to AWS SDK for Java 1.11.14
- Maven Artifact Signing Change
- Artifacts are now signed by the identity
Amazon Kinesis Tools <amazon-kinesis-tools@amazon.com>
- Artifacts are now signed by the identity
- Fix format exception caused by DEBUG log in LeaseTaker Issue # 68
- Support for specifying max leases per worker and max leases to steal at a time.
- Support for specifying initial DynamoDB table read and write capacity.
- Support for parallel lease renewal.
- Support for graceful worker shutdown.
- Change DefaultCWMetricsPublisher log level to debug. PR # 49
- Avoid NPE in MLD record processor shutdown if record processor was not initialized. Issue # 29
- Expose approximateArrivalTimestamp for Records in processRecords API call.
- Restores compatibility with dynamodb-streams-kinesis-adapter (which was broken in 1.4.0).
- KCL maven artifact 1.5.0 does not work with JDK 7. This release addresses this issue.
- Metrics Enhancements
- Support metrics level and dimension configurations to control CloudWatch metrics emitted by the KCL.
- Add new metrics that track time spent in record processor methods.
- Disable WorkerIdentifier dimension by default.
- Exception Reporting — Do not silently ignore exceptions in ShardConsumer.
- AWS SDK Component Dependencies — Depend only on AWS SDK components that are used.
- Integration with the Kinesis Producer Library (KPL)
- Automatically de-aggregate records put into the Kinesis stream using the KPL.
- Support checkpointing at the individual user record level when multiple user records are aggregated into one Kinesis record using the KPL.
See Consumer De-aggregation with the KCL for details.
- A new metric called "MillisBehindLatest", which tracks how far consumers are from real time, is now uploaded to CloudWatch.
- MultiLangDaemon — Changes to the MultiLangDaemon to make it easier to provide a custom worker.
- Multi-Language Support — Amazon KCL now supports implementing record processors in any language by communicating with the daemon over STDIN and STDOUT. Python developers can directly use the Amazon Kinesis Client Library for Python to write their data processing applications.
- Checkpointing at a specific sequence number — The IRecordProcessorCheckpointer interface now supports checkpointing at a sequence number specified by the record processor.
- Set region — KinesisClientLibConfiguration now supports setting the region name to indicate the location of the Amazon Kinesis service. The Amazon DynamoDB table and Amazon CloudWatch metrics associated with your application will also use this region setting.