revert to release 1.9.3
This commit is contained in:
parent
7417524649
commit
43bbeb5fe6
129 changed files with 9557 additions and 2165 deletions
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
*Issue #, if available:*
|
||||||
|
|
||||||
|
*Description of changes:*
|
||||||
|
|
||||||
|
|
||||||
|
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
language: java
|
language: java
|
||||||
jdk:
|
jdk:
|
||||||
- openjdk7
|
- openjdk8
|
||||||
- oraclejdk7
|
|
||||||
- oraclejdk8
|
- oraclejdk8
|
||||||
sudo: false
|
sudo: false
|
||||||
|
dist: trusty
|
||||||
329
CHANGELOG.md
Normal file
329
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,329 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
## Release 1.9.3 (October 30, 2018)
|
||||||
|
* Upgraded Apache Commons Lang from 2.6 to 3.7.
|
||||||
|
* [Issue #370](https://github.com/awslabs/amazon-kinesis-client/issues/370)
|
||||||
|
* [PR #406](https://github.com/awslabs/amazon-kinesis-client/pull/406)
|
||||||
|
* Upgraded Google Guava from 10.0 to 26.0-jre.
|
||||||
|
* [Issue #416](https://github.com/awslabs/amazon-kinesis-client/issues/416)
|
||||||
|
* [PR #421](https://github.com/awslabs/amazon-kinesis-client/pull/421)
|
||||||
|
|
||||||
|
## Release 1.9.2 (September 4, 2018)
|
||||||
|
* Allow use of Immutable Clients
|
||||||
|
* [Issue #280](https://github.com/awslabs/amazon-kinesis-client/issues/280)
|
||||||
|
* [PR #305](https://github.com/awslabs/amazon-kinesis-client/pull/305)
|
||||||
|
* Allow the use of `AT_TIMESTAMP` for MultiLang Daemon Clients.
|
||||||
|
* [Issue #341](https://github.com/awslabs/amazon-kinesis-client/issues/341)
|
||||||
|
* [PR #342](https://github.com/awslabs/amazon-kinesis-client/pull/342)
|
||||||
|
* Update the cache for `KinesisProxy#getShard` on cache misses.
|
||||||
|
* [PR #344](https://github.com/awslabs/amazon-kinesis-client/pull/344)
|
||||||
|
* Changed release process to use a standard process.
|
||||||
|
* [PR #389](https://github.com/awslabs/amazon-kinesis-client/pull/389)
|
||||||
|
* Removed tests that expected a null region response for unknown regions.
|
||||||
|
* [PR #346](https://github.com/awslabs/amazon-kinesis-client/pull/346)
|
||||||
|
* Updated the version of the AWS Java SDK to 1.11.400
|
||||||
|
|
||||||
|
## Release 1.9.1 (April 30, 2018)
|
||||||
|
* Added the ability to create a prepared checkpoint when at `SHARD_END`.
|
||||||
|
* [PR #301](https://github.com/awslabs/amazon-kinesis-client/pull/301)
|
||||||
|
* Added the ability to subscribe to worker state change events.
|
||||||
|
* [PR #291](https://github.com/awslabs/amazon-kinesis-client/pull/291)
|
||||||
|
* Added support for custom lease managers.
|
||||||
|
A custom `LeaseManager` can be provided to `Worker.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.
|
||||||
|
* [PR #297](https://github.com/awslabs/amazon-kinesis-client/pull/297)
|
||||||
|
* Updated the version of the AWS Java SDK to 1.11.219
|
||||||
|
|
||||||
|
## Release 1.9.0 (February 6, 2018)
|
||||||
|
* 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](https://docs.aws.amazon.com/kinesis/latest/APIReference/API_ListShards.html) 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](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1412) | 1500 ms | This is the default backoff time between 2 ListShards calls when throttled. |
|
||||||
|
| [listShardsRetryAttempts](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1423) | 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](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/proxies/IKinesisProxy.java#L48-L62).
|
||||||
|
* Deprecated [IKinesisProxyFactory](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/proxies/IKinesisProxyFactory.java).
|
||||||
|
* Deprecated [KinesisProxyFactory](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/proxies/KinesisProxyFactory.java).
|
||||||
|
* Deprecated certain [KinesisProxy](https://github.com/awslabs/amazon-kinesis-client/blob/3ae916c5fcdccd6b835c86ba7f6f53dd5b4c8b04/src/main/java/com/amazonaws/services/kinesis/clientlibrary/proxies/KinesisProxy.java) constructors.
|
||||||
|
* [PR #293](https://github.com/awslabs/amazon-kinesis-client/pull/293)
|
||||||
|
|
||||||
|
## Release 1.8.10
|
||||||
|
* Allow providing a custom IKinesisProxy implementation.
|
||||||
|
* [PR #274](https://github.com/awslabs/amazon-kinesis-client/pull/274)
|
||||||
|
* Checkpointing on a different thread should no longer emit a warning about NullMetricsScope.
|
||||||
|
* [PR #284](https://github.com/awslabs/amazon-kinesis-client/pull/284)
|
||||||
|
* [Issue #48](https://github.com/awslabs/amazon-kinesis-client/issues/48)
|
||||||
|
* Upgraded the AWS Java SDK to version 1.11.271
|
||||||
|
* [PR #287](https://github.com/awslabs/amazon-kinesis-client/pull/287)
|
||||||
|
|
||||||
|
## Release 1.8.9
|
||||||
|
* 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 setting [`ignoreUnexpectedChildShards`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1037) to true.
|
||||||
|
* [PR #240](https://github.com/awslabs/amazon-kinesis-client/pull/240)
|
||||||
|
* [Issue #210](https://github.com/awslabs/amazon-kinesis-client/issues/210)
|
||||||
|
* Upgraded the AWS SDK for Java to 1.11.261
|
||||||
|
* [PR #281](https://github.com/awslabs/amazon-kinesis-client/pull/281)
|
||||||
|
|
||||||
|
## 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](https://github.com/awslabs/amazon-kinesis-client/pull/263)
|
||||||
|
* Added warning message for long running tasks.
|
||||||
|
Logging long running tasks can be enabled by setting the following configuration property:
|
||||||
|
|
||||||
|
| Name | Default | Description |
|
||||||
|
| ---- | ------- | ----------- |
|
||||||
|
| [`logWarningForTaskAfterMillis`](https://github.com/awslabs/amazon-kinesis-client/blob/3de901ea9327370ed732af86c4d4999c8d99541c/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1367) | Not set | Milliseconds after which the logger will log a warning message for the long running task |
|
||||||
|
|
||||||
|
* [PR#259](https://github.com/awslabs/amazon-kinesis-client/pull/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](https://github.com/awslabs/amazon-kinesis-client/pull/247)
|
||||||
|
* ShutdownTask gets retried if the previous attempt on the ShutdownTask fails.
|
||||||
|
* [PR#267](https://github.com/awslabs/amazon-kinesis-client/pull/267)
|
||||||
|
* Fix for using maxRecords from `KinesisClientLibConfiguration` in `GetRecordsCache` for fetching records.
|
||||||
|
* [PR#264](https://github.com/awslabs/amazon-kinesis-client/pull/264)
|
||||||
|
|
||||||
|
## Release 1.8.7
|
||||||
|
* Don't add a delay for synchronous requests to Kinesis
|
||||||
|
Removes a delay that had been added for synchronous `GetRecords` calls to Kinesis.
|
||||||
|
* [PR #256](https://github.com/awslabs/amazon-kinesis-client/pull/256)
|
||||||
|
|
||||||
|
## Release 1.8.6
|
||||||
|
* 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 setting [`dataFetchingStrategy`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1317) to `PREFETCH_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`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1317) | `DEFAULT` | Which data fetching strategy to use |
|
||||||
|
| [`maxPendingProcessRecordsInput`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1296) | 3 | The maximum number of process records input that can be queued |
|
||||||
|
| [`maxCacheByteSize`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1307) | 8 MiB | The maximum number of bytes that can be queued |
|
||||||
|
| [`maxRecordsCount`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1326) | 30,000 | The maximum number of records that can be queued |
|
||||||
|
| [`idleMillisBetweenCalls`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L1353) | 1,500 ms | The amount of time to wait between calls to Kinesis |
|
||||||
|
|
||||||
|
* [PR #246](https://github.com/awslabs/amazon-kinesis-client/pull/246)
|
||||||
|
|
||||||
|
## Release 1.8.5 (September 26, 2017)
|
||||||
|
* Only advance the shard iterator for the accepted response.
|
||||||
|
This fixes a race condition in the `KinesisDataFetcher` when it's being used to make asynchronous requests. The shard iterator is now only advanced when the retriever calls `DataFetcherResult#accept()`.
|
||||||
|
* [PR #230](https://github.com/awslabs/amazon-kinesis-client/pull/230)
|
||||||
|
* [Issue #231](https://github.com/awslabs/amazon-kinesis-client/issues/231)
|
||||||
|
|
||||||
|
## Release 1.8.4 (September 22, 2017)
|
||||||
|
* 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.
|
||||||
|
* [PR #227](https://github.com/awslabs/amazon-kinesis-client/pull/227)
|
||||||
|
* [Issue #226](https://github.com/awslabs/amazon-kinesis-client/issues/226)
|
||||||
|
|
||||||
|
## Release 1.8.3 (September 22, 2017)
|
||||||
|
* Call shutdown on the retriever when the record processor is being shutdown
|
||||||
|
This fixes a bug that could leak threads if using the [`AsynchronousGetRecordsRetrievalStrategy`](https://github.com/awslabs/amazon-kinesis-client/blob/9a82b6bd05b3c9c5f8581af007141fa6d5f0fc4e/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/AsynchronousGetRecordsRetrievalStrategy.java#L42) is being used.
|
||||||
|
The asynchronous retriever is only used when [`KinesisClientLibConfiguration#retryGetRecordsInSeconds`](https://github.com/awslabs/amazon-kinesis-client/blob/01d2688bc6e68fd3fe5cb698cb65299d67ac930d/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L227), and [`KinesisClientLibConfiguration#maxGetRecordsThreadPool`](https://github.com/awslabs/amazon-kinesis-client/blob/01d2688bc6e68fd3fe5cb698cb65299d67ac930d/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/KinesisClientLibConfiguration.java#L230) are set.
|
||||||
|
* [PR #222](https://github.com/awslabs/amazon-kinesis-client/pull/222)
|
||||||
|
|
||||||
|
## Release 1.8.2 (September 20, 2017)
|
||||||
|
* 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 the [`InitializationInput#getPendingCheckpointSequenceNumber`](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/types/InitializationInput.java#L81) otherwise the value will be null.
|
||||||
|
* [PR #188](https://github.com/awslabs/amazon-kinesis-client/pull/188)
|
||||||
|
* 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.
|
||||||
|
* [PR #214](https://github.com/awslabs/amazon-kinesis-client/pull/214)
|
||||||
|
* 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.
|
||||||
|
* [PR #212](https://github.com/awslabs/amazon-kinesis-client/pull/212)
|
||||||
|
* 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 adding `shutdownGraceMillis` to the properties file set to the number of milliseconds to wait.
|
||||||
|
* [PR #204](https://github.com/awslabs/amazon-kinesis-client/pull/204)
|
||||||
|
|
||||||
|
## Release 1.8.1 (August 2, 2017)
|
||||||
|
* 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__
|
||||||
|
* [PR #195](https://github.com/awslabs/amazon-kinesis-client/pull/195)
|
||||||
|
* [Issue #185](https://github.com/awslabs/amazon-kinesis-client/issues/185)
|
||||||
|
|
||||||
|
## Release 1.8.0 (July 25, 2017)
|
||||||
|
* Execute graceful shutdown on its own thread
|
||||||
|
* [PR #191](https://github.com/awslabs/amazon-kinesis-client/pull/191)
|
||||||
|
* [Issue #167](https://github.com/awslabs/amazon-kinesis-client/issues/167)
|
||||||
|
* Added support for controlling the size of the lease renewer thread pool
|
||||||
|
* [PR #177](https://github.com/awslabs/amazon-kinesis-client/pull/177)
|
||||||
|
* [Issue #171](https://github.com/awslabs/amazon-kinesis-client/issues/171)
|
||||||
|
* Require Java 8 and later
|
||||||
|
__Java 8 is now required for versions 1.8.0 of the amazon-kinesis-client and later.__
|
||||||
|
* [PR #176](https://github.com/awslabs/amazon-kinesis-client/issues/176)
|
||||||
|
|
||||||
|
## Release 1.7.6 (June 21, 2017)
|
||||||
|
* Added support for graceful shutdown in MultiLang Clients
|
||||||
|
* [PR #174](https://github.com/awslabs/amazon-kinesis-client/pull/174)
|
||||||
|
* [PR #182](https://github.com/awslabs/amazon-kinesis-client/pull/182)
|
||||||
|
* Updated documentation for `v2.IRecordProcessor#shutdown`, and `KinesisClientLibConfiguration#idleTimeBetweenReadsMillis`
|
||||||
|
* [PR #170](https://github.com/awslabs/amazon-kinesis-client/pull/170)
|
||||||
|
* Updated to version 1.11.151 of the AWS Java SDK
|
||||||
|
* [PR #183](https://github.com/awslabs/amazon-kinesis-client/pull/183)
|
||||||
|
|
||||||
|
## Release 1.7.5 (April 7, 2017)
|
||||||
|
* Correctly handle throttling for DescribeStream, and save accumulated progress from individual calls.
|
||||||
|
* [PR #152](https://github.com/awslabs/amazon-kinesis-client/pull/152)
|
||||||
|
* Upgrade to version 1.11.115 of the AWS Java SDK
|
||||||
|
* [PR #155](https://github.com/awslabs/amazon-kinesis-client/pull/155)
|
||||||
|
|
||||||
|
## Release 1.7.4 (February 27, 2017)
|
||||||
|
* Fixed an issue building JavaDoc for Java 8.
|
||||||
|
* [Issue #18](https://github.com/awslabs/amazon-kinesis-client/issues/18)
|
||||||
|
* [PR #141](https://github.com/awslabs/amazon-kinesis-client/pull/141)
|
||||||
|
* Reduce Throttling Messages to WARN, unless throttling occurs 6 times consecutively.
|
||||||
|
* [Issue #4](https://github.com/awslabs/amazon-kinesis-client/issues/4)
|
||||||
|
* [PR #140](https://github.com/awslabs/amazon-kinesis-client/pull/140)
|
||||||
|
* Fixed two bugs occurring in requestShutdown.
|
||||||
|
* Fixed a bug that prevented the worker from shutting down, via requestShutdown, when no leases were held.
|
||||||
|
* [Issue #128](https://github.com/awslabs/amazon-kinesis-client/issues/128)
|
||||||
|
* Fixed a bug that could trigger a NullPointerException if leases changed during requestShutdown.
|
||||||
|
* [Issue #129](https://github.com/awslabs/amazon-kinesis-client/issues/129)
|
||||||
|
* [PR #139](https://github.com/awslabs/amazon-kinesis-client/pull/139)
|
||||||
|
* Upgraded the AWS SDK Version to 1.11.91
|
||||||
|
* [PR #138](https://github.com/awslabs/amazon-kinesis-client/pull/138)
|
||||||
|
* Use an executor returned from `ExecutorService.newFixedThreadPool` instead of constructing it by hand.
|
||||||
|
* [PR #135](https://github.com/awslabs/amazon-kinesis-client/pull/135)
|
||||||
|
* Correctly initialize DynamoDB client, when endpoint is explicitly set.
|
||||||
|
* [PR #142](https://github.com/awslabs/amazon-kinesis-client/pull/142)
|
||||||
|
|
||||||
|
## Release 1.7.3 (January 9, 2017)
|
||||||
|
* Upgrade to the newest AWS Java SDK.
|
||||||
|
* [Amazon Kinesis Client Issue #27](https://github.com/awslabs/amazon-kinesis-client-python/issues/27)
|
||||||
|
* [PR #126](https://github.com/awslabs/amazon-kinesis-client/pull/126)
|
||||||
|
* [PR #125](https://github.com/awslabs/amazon-kinesis-client/pull/125)
|
||||||
|
* Added a direct dependency on commons-logging.
|
||||||
|
* [Issue #123](https://github.com/awslabs/amazon-kinesis-client/issues/123)
|
||||||
|
* [PR #124](https://github.com/awslabs/amazon-kinesis-client/pull/124)
|
||||||
|
* Make ShardInfo public to allow for custom ShardPrioritization strategies.
|
||||||
|
* [Issue #120](https://github.com/awslabs/amazon-kinesis-client/issues/120)
|
||||||
|
* [PR #127](https://github.com/awslabs/amazon-kinesis-client/pull/127)
|
||||||
|
|
||||||
|
## Release 1.7.2 (November 7, 2016)
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
## Release 1.7.1 (November 3, 2016)
|
||||||
|
* 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](https://github.com/awslabs/amazon-kinesis-client/pull/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](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/interfaces/v2/IShutdownNotificationAware.java), and a [new method on Worker](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/Worker.java#L539).
|
||||||
|
* [PR #109](https://github.com/awslabs/amazon-kinesis-client/pull/109)
|
||||||
|
* Solves [Issue #79](https://github.com/awslabs/amazon-kinesis-client/issues/79)
|
||||||
|
* MultiLangDaemon
|
||||||
|
* Applications can now use credential provides that accept string parameters.
|
||||||
|
* [PR #99](https://github.com/awslabs/amazon-kinesis-client/pull/99)
|
||||||
|
* Applications can now use different credentials for each service.
|
||||||
|
* [PR #111](https://github.com/awslabs/amazon-kinesis-client/pull/111)
|
||||||
|
|
||||||
|
## Release 1.7.0 (August 22, 2016)
|
||||||
|
* Add support for time based iterators ([See GetShardIterator Documentation](http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html))
|
||||||
|
* [PR #94](https://github.com/awslabs/amazon-kinesis-client/pull/94)
|
||||||
|
The `KinesisClientLibConfiguration` now supports providing an initial time stamp position.
|
||||||
|
* This position is only used if there is no current checkpoint for the shard.
|
||||||
|
* This setting cannot be used with DynamoDB Streams
|
||||||
|
Resolves [Issue #88](https://github.com/awslabs/amazon-kinesis-client/issues/88)
|
||||||
|
* Allow Prioritization of Parent Shards for Task Assignment
|
||||||
|
* [PR #95](https://github.com/awslabs/amazon-kinesis-client/pull/95)
|
||||||
|
The `KinesisClientLibconfiguration` now supports providing a `ShardPrioritization` strategy. This strategy controls how the `Worker` determines which `ShardConsumer` to call next. This can improve processing for streams that split often, such as DynamoDB Streams.
|
||||||
|
* Remove direct dependency on `aws-java-sdk-core`, to allow independent versioning.
|
||||||
|
* [PR #92](https://github.com/awslabs/amazon-kinesis-client/pull/92)
|
||||||
|
**You may need to add a direct dependency on aws-java-sdk-core if other dependencies include an older version.**
|
||||||
|
|
||||||
|
## Release 1.6.5 (July 25, 2016)
|
||||||
|
* Change LeaseManager to call DescribeTable before attempting to create the lease table.
|
||||||
|
* [Issue #36](https://github.com/awslabs/amazon-kinesis-client/issues/36)
|
||||||
|
* [PR #41](https://github.com/awslabs/amazon-kinesis-client/pull/41)
|
||||||
|
* [PR #67](https://github.com/awslabs/amazon-kinesis-client/pull/67)
|
||||||
|
* Allow DynamoDB lease table name to be specified
|
||||||
|
* [PR #61](https://github.com/awslabs/amazon-kinesis-client/pull/61)
|
||||||
|
* Add approximateArrivalTimestamp for JsonFriendlyRecord
|
||||||
|
* [PR #86](https://github.com/awslabs/amazon-kinesis-client/pull/86)
|
||||||
|
* Shutdown lease renewal thread pool on exit.
|
||||||
|
* [PR #84](https://github.com/awslabs/amazon-kinesis-client/pull/84)
|
||||||
|
* Wait for CloudWatch publishing thread to finish before exiting.
|
||||||
|
* [PR #82](https://github.com/awslabs/amazon-kinesis-client/pull/82)
|
||||||
|
* Added unit, and integration tests for the library.
|
||||||
|
|
||||||
|
## Release 1.6.4 (July 6, 2016)
|
||||||
|
* Upgrade to AWS SDK for Java 1.11.14
|
||||||
|
* [Issue #74](https://github.com/awslabs/amazon-kinesis-client/issues/74)
|
||||||
|
* [Issue #73](https://github.com/awslabs/amazon-kinesis-client/issues/73)
|
||||||
|
* **Maven Artifact Signing Change**
|
||||||
|
* Artifacts are now signed by the identity `Amazon Kinesis Tools <amazon-kinesis-tools@amazon.com>`
|
||||||
|
|
||||||
|
## Release 1.6.3 (May 12, 2016)
|
||||||
|
* Fix format exception caused by DEBUG log in LeaseTaker [Issue # 68](https://github.com/awslabs/amazon-kinesis-client/issues/68)
|
||||||
|
|
||||||
|
## Release 1.6.2 (March 23, 2016)
|
||||||
|
* 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](https://github.com/awslabs/amazon-kinesis-client/pull/49)
|
||||||
|
* Avoid NPE in MLD record processor shutdown if record processor was not initialized. [Issue # 29](https://github.com/awslabs/amazon-kinesis-client/issues/29)
|
||||||
|
|
||||||
|
## Release 1.6.1 (September 23, 2015)
|
||||||
|
* Expose [approximateArrivalTimestamp](http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html) for Records in processRecords API call.
|
||||||
|
|
||||||
|
## Release 1.6.0 (July 31, 2015)
|
||||||
|
* Restores compatibility with [dynamodb-streams-kinesis-adapter](https://github.com/awslabs/dynamodb-streams-kinesis-adapter) (which was broken in 1.4.0).
|
||||||
|
|
||||||
|
## Release 1.5.1 (July 20, 2015)
|
||||||
|
* KCL maven artifact 1.5.0 does not work with JDK 7. This release addresses this issue.
|
||||||
|
|
||||||
|
## Release 1.5.0 (July 9, 2015)
|
||||||
|
* **[Metrics Enhancements][kinesis-guide-monitoring-with-kcl]**
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
## Release 1.4.0 (June 2, 2015)
|
||||||
|
* Integration with the **[Kinesis Producer Library (KPL)][kinesis-guide-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][kinesis-guide-consumer-deaggregation] for details.
|
||||||
|
|
||||||
|
## Release 1.3.0 (May 22, 2015)
|
||||||
|
* A new metric called "MillisBehindLatest", which tracks how far consumers are from real time, is now uploaded to CloudWatch.
|
||||||
|
|
||||||
|
## Release 1.2.1 (January 26, 2015)
|
||||||
|
* **MultiLangDaemon** — Changes to the MultiLangDaemon to make it easier to provide a custom worker.
|
||||||
|
|
||||||
|
## Release 1.2 (October 21, 2014)
|
||||||
|
* **Multi-Language Support** — Amazon KCL now supports implementing record processors in any language by communicating with the daemon over [STDIN and STDOUT][multi-lang-protocol]. Python developers can directly use the [Amazon Kinesis Client Library for Python][kclpy] to write their data processing applications.
|
||||||
|
|
||||||
|
## Release 1.1 (June 30, 2014)
|
||||||
|
* **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.
|
||||||
|
|
||||||
|
[kinesis]: http://aws.amazon.com/kinesis
|
||||||
|
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
||||||
|
[kinesis-client-library-issues]: https://github.com/awslabs/amazon-kinesis-client/issues
|
||||||
|
[docs-signup]: http://docs.aws.amazon.com/AWSSdkDocsJava/latest/DeveloperGuide/java-dg-setup.html
|
||||||
|
[kinesis-guide]: http://docs.aws.amazon.com/kinesis/latest/dev/introduction.html
|
||||||
|
[kinesis-guide-begin]: http://docs.aws.amazon.com/kinesis/latest/dev/before-you-begin.html
|
||||||
|
[kinesis-guide-create]: http://docs.aws.amazon.com/kinesis/latest/dev/step-one-create-stream.html
|
||||||
|
[kinesis-guide-applications]: http://docs.aws.amazon.com/kinesis/latest/dev/kinesis-record-processor-app.html
|
||||||
|
[kinesis-guide-monitoring-with-kcl]: http://docs.aws.amazon.com//kinesis/latest/dev/monitoring-with-kcl.html
|
||||||
|
[kinesis-guide-kpl]: http://docs.aws.amazon.com//kinesis/latest/dev/developing-producers-with-kpl.html
|
||||||
|
[kinesis-guide-consumer-deaggregation]: http://docs.aws.amazon.com//kinesis/latest/dev/kinesis-kpl-consumer-deaggregation.html
|
||||||
|
[kclpy]: https://github.com/awslabs/amazon-kinesis-client-python
|
||||||
|
[multi-lang-protocol]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
||||||
4
CODE_OF_CONDUCT.md
Normal file
4
CODE_OF_CONDUCT.md
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
## Code of Conduct
|
||||||
|
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
|
||||||
|
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
|
||||||
|
opensource-codeofconduct@amazon.com with any additional questions or comments.
|
||||||
61
CONTRIBUTING.md
Normal file
61
CONTRIBUTING.md
Normal file
|
|
@ -0,0 +1,61 @@
|
||||||
|
# Contributing Guidelines
|
||||||
|
|
||||||
|
Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
|
||||||
|
documentation, we greatly value feedback and contributions from our community.
|
||||||
|
|
||||||
|
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
|
||||||
|
information to effectively respond to your bug report or contribution.
|
||||||
|
|
||||||
|
|
||||||
|
## Reporting Bugs/Feature Requests
|
||||||
|
|
||||||
|
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
|
||||||
|
|
||||||
|
When filing an issue, please check [existing open](https://github.com/awslabs/amazon-kinesis-client/issues), or [recently closed](https://github.com/awslabs/amazon-kinesis-client/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
|
||||||
|
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
|
||||||
|
|
||||||
|
* A reproducible test case or series of steps
|
||||||
|
* The version of our code being used
|
||||||
|
* Any modifications you've made relevant to the bug
|
||||||
|
* Anything unusual about your environment or deployment
|
||||||
|
|
||||||
|
|
||||||
|
## Contributing via Pull Requests
|
||||||
|
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
|
||||||
|
|
||||||
|
1. You are working against the latest source on the *master* branch.
|
||||||
|
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
|
||||||
|
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.
|
||||||
|
|
||||||
|
To send us a pull request, please:
|
||||||
|
|
||||||
|
1. Fork the repository.
|
||||||
|
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
|
||||||
|
3. Ensure local tests pass.
|
||||||
|
4. Commit to your fork using clear commit messages.
|
||||||
|
5. Send us a pull request, answering any default questions in the pull request interface.
|
||||||
|
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
|
||||||
|
|
||||||
|
GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
|
||||||
|
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).
|
||||||
|
|
||||||
|
|
||||||
|
## Finding contributions to work on
|
||||||
|
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/awslabs/amazon-kinesis-client/labels/help%20wanted) issues is a great place to start.
|
||||||
|
|
||||||
|
|
||||||
|
## Code of Conduct
|
||||||
|
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
|
||||||
|
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
|
||||||
|
opensource-codeofconduct@amazon.com with any additional questions or comments.
|
||||||
|
|
||||||
|
|
||||||
|
## Security issue notifications
|
||||||
|
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.
|
||||||
|
|
||||||
|
|
||||||
|
## Licensing
|
||||||
|
|
||||||
|
See the [LICENSE](https://github.com/awslabs/amazon-kinesis-client/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
|
||||||
|
|
||||||
|
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
|
||||||
|
|
@ -2,9 +2,9 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: Amazon Kinesis Client Library for Java
|
Bundle-Name: Amazon Kinesis Client Library for Java
|
||||||
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
Bundle-SymbolicName: com.amazonaws.kinesisclientlibrary;singleton:=true
|
||||||
Bundle-Version: 1.7.4
|
Bundle-Version: 1.9.1
|
||||||
Bundle-Vendor: Amazon Technologies, Inc
|
Bundle-Vendor: Amazon Technologies, Inc
|
||||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
||||||
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
||||||
org.apache.commons.logging;bundle-version="1.1.3";visibility:=reexport,
|
org.apache.commons.logging;bundle-version="1.1.3";visibility:=reexport,
|
||||||
com.fasterxml.jackson.core.jackson-databind;bundle-version="2.5.3",
|
com.fasterxml.jackson.core.jackson-databind;bundle-version="2.5.3",
|
||||||
|
|
@ -12,7 +12,7 @@ Require-Bundle: org.apache.commons.codec;bundle-version="1.6",
|
||||||
com.fasterxml.jackson.core.jackson-annotations;bundle-version="2.5.0",
|
com.fasterxml.jackson.core.jackson-annotations;bundle-version="2.5.0",
|
||||||
org.apache.httpcomponents.httpcore;bundle-version="4.3.3",
|
org.apache.httpcomponents.httpcore;bundle-version="4.3.3",
|
||||||
org.apache.httpcomponents.httpclient;bundle-version="4.3.6"
|
org.apache.httpcomponents.httpclient;bundle-version="4.3.6"
|
||||||
com.amazonaws.sdk;bundle-version="1.11.14",
|
com.amazonaws.sdk;bundle-version="1.11.319",
|
||||||
Export-Package: com.amazonaws.services.kinesis,
|
Export-Package: com.amazonaws.services.kinesis,
|
||||||
com.amazonaws.services.kinesis.clientlibrary,
|
com.amazonaws.services.kinesis.clientlibrary,
|
||||||
com.amazonaws.services.kinesis.clientlibrary.config,
|
com.amazonaws.services.kinesis.clientlibrary.config,
|
||||||
|
|
|
||||||
149
README.md
149
README.md
|
|
@ -1,4 +1,5 @@
|
||||||
# Amazon Kinesis Client Library for Java [](https://travis-ci.org/awslabs/amazon-kinesis-client)
|
# Amazon Kinesis Client Library for Java
|
||||||
|
[](https://travis-ci.org/awslabs/amazon-kinesis-client) 
|
||||||
|
|
||||||
The **Amazon Kinesis Client Library for Java** (Amazon KCL) enables Java developers to easily consume and process data from [Amazon Kinesis][kinesis].
|
The **Amazon Kinesis Client Library for Java** (Amazon KCL) enables Java developers to easily consume and process data from [Amazon Kinesis][kinesis].
|
||||||
|
|
||||||
|
|
@ -15,7 +16,7 @@ The **Amazon Kinesis Client Library for Java** (Amazon KCL) enables Java develop
|
||||||
|
|
||||||
1. **Sign up for AWS** — Before you begin, you need an AWS account. For more information about creating an AWS account and retrieving your AWS credentials, see [AWS Account and Credentials][docs-signup] in the AWS SDK for Java Developer Guide.
|
1. **Sign up for AWS** — Before you begin, you need an AWS account. For more information about creating an AWS account and retrieving your AWS credentials, see [AWS Account and Credentials][docs-signup] in the AWS SDK for Java Developer Guide.
|
||||||
1. **Sign up for Amazon Kinesis** — Go to the Amazon Kinesis console to sign up for the service and create an Amazon Kinesis stream. For more information, see [Create an Amazon Kinesis Stream][kinesis-guide-create] in the Amazon Kinesis Developer Guide.
|
1. **Sign up for Amazon Kinesis** — Go to the Amazon Kinesis console to sign up for the service and create an Amazon Kinesis stream. For more information, see [Create an Amazon Kinesis Stream][kinesis-guide-create] in the Amazon Kinesis Developer Guide.
|
||||||
1. **Minimum requirements** — To use the Amazon Kinesis Client Library, you'll need **Java 1.7+**. For more information about Amazon Kinesis Client Library requirements, see [Before You Begin][kinesis-guide-begin] in the Amazon Kinesis Developer Guide.
|
1. **Minimum requirements** — To use the Amazon Kinesis Client Library, you'll need **Java 1.8+**. For more information about Amazon Kinesis Client Library requirements, see [Before You Begin][kinesis-guide-begin] in the Amazon Kinesis Developer Guide.
|
||||||
1. **Using the Amazon Kinesis Client Library** — The best way to get familiar with the Amazon Kinesis Client Library is to read [Developing Record Consumer Applications][kinesis-guide-applications] in the Amazon Kinesis Developer Guide.
|
1. **Using the Amazon Kinesis Client Library** — The best way to get familiar with the Amazon Kinesis Client Library is to read [Developing Record Consumer Applications][kinesis-guide-applications] in the Amazon Kinesis Developer Guide.
|
||||||
|
|
||||||
## Building from Source
|
## Building from Source
|
||||||
|
|
@ -23,146 +24,22 @@ The **Amazon Kinesis Client Library for Java** (Amazon KCL) enables Java develop
|
||||||
After you've downloaded the code from GitHub, you can build it using Maven. To disable GPG signing in the build, use this command: `mvn clean install -Dgpg.skip=true`
|
After you've downloaded the code from GitHub, you can build it using Maven. To disable GPG signing in the build, use this command: `mvn clean install -Dgpg.skip=true`
|
||||||
|
|
||||||
## Integration with the Kinesis Producer Library
|
## Integration with the Kinesis Producer Library
|
||||||
For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesis-guide-kpl]**, the KCL integrates without additional effort. When the KCL retrieves an aggregated Amazon Kinesis record consisting of multiple KPL user records, it will automatically invoke the KPL to extract the individual user records before returning them to the user.
|
For producer-side developers using the **[Kinesis Producer Library (KPL)][kinesis-guide-kpl]**, the KCL integrates without additional effort. When the KCL retrieves an aggregated Amazon Kinesis record consisting of multiple KPL user records, it will automatically invoke the KPL to extract the individual user records before returning them to the user.
|
||||||
|
|
||||||
## Amazon KCL support for other languages
|
## Amazon KCL support for other languages
|
||||||
To make it easier for developers to write record processors in other languages, we have implemented a Java based daemon, called MultiLangDaemon that does all the heavy lifting. Our approach has the daemon spawn a sub-process, which in turn runs the record processor, which can be written in any language. The MultiLangDaemon process and the record processor sub-process communicate with each other over [STDIN and STDOUT using a defined protocol][multi-lang-protocol]. There will be a one to one correspondence amongst record processors, child processes, and shards. For Python developers specifically, we have abstracted these implementation details away and [expose an interface][kclpy] that enables you to focus on writing record processing logic in Python. This approach enables KCL to be language agnostic, while providing identical features and similar parallel processing model across all languages.
|
To make it easier for developers to write record processors in other languages, we have implemented a Java based daemon, called MultiLangDaemon that does all the heavy lifting. Our approach has the daemon spawn a sub-process, which in turn runs the record processor, which can be written in any language. The MultiLangDaemon process and the record processor sub-process communicate with each other over [STDIN and STDOUT using a defined protocol][multi-lang-protocol]. There will be a one to one correspondence amongst record processors, child processes, and shards. For Python developers specifically, we have abstracted these implementation details away and [expose an interface][kclpy] that enables you to focus on writing record processing logic in Python. This approach enables KCL to be language agnostic, while providing identical features and similar parallel processing model across all languages.
|
||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
### Release 1.7.4 (February 27, 2017)
|
|
||||||
* Fixed an issue building JavaDoc for Java 8.
|
|
||||||
* [Issue #18](https://github.com/awslabs/amazon-kinesis-client/issues/18)
|
|
||||||
* [PR #141](https://github.com/awslabs/amazon-kinesis-client/pull/141)
|
|
||||||
* Reduce Throttling Messages to WARN, unless throttling occurs 6 times consecutively.
|
|
||||||
* [Issue #4](https://github.com/awslabs/amazon-kinesis-client/issues/4)
|
|
||||||
* [PR #140](https://github.com/awslabs/amazon-kinesis-client/pull/140)
|
|
||||||
* Fixed two bugs occurring in requestShutdown.
|
|
||||||
* Fixed a bug that prevented the worker from shutting down, via requestShutdown, when no leases were held.
|
|
||||||
* [Issue #128](https://github.com/awslabs/amazon-kinesis-client/issues/128)
|
|
||||||
* Fixed a bug that could trigger a NullPointerException if leases changed during requestShutdown.
|
|
||||||
* [Issue #129](https://github.com/awslabs/amazon-kinesis-client/issues/129)
|
|
||||||
* [PR #139](https://github.com/awslabs/amazon-kinesis-client/pull/139)
|
|
||||||
* Upgraded the AWS SDK Version to 1.11.91
|
|
||||||
* [PR #138](https://github.com/awslabs/amazon-kinesis-client/pull/138)
|
|
||||||
* Use an executor returned from `ExecutorService.newFixedThreadPool` instead of constructing it by hand.
|
|
||||||
* [PR #135](https://github.com/awslabs/amazon-kinesis-client/pull/135)
|
|
||||||
* Correctly initialize DynamoDB client, when endpoint is explicitly set.
|
|
||||||
* [PR #142](https://github.com/awslabs/amazon-kinesis-client/pull/142)
|
|
||||||
|
|
||||||
### Release 1.7.3 (January 9, 2017)
|
### Latest Release (1.9.3 - October 30, 2018)
|
||||||
* Upgrade to the newest AWS Java SDK.
|
* Upgraded Apache Commons Lang from 2.6 to 3.7.
|
||||||
* [Amazon Kinesis Client Issue #27](https://github.com/awslabs/amazon-kinesis-client-python/issues/27)
|
* [Issue #370](https://github.com/awslabs/amazon-kinesis-client/issues/370)
|
||||||
* [PR #126](https://github.com/awslabs/amazon-kinesis-client/pull/126)
|
* [PR #406](https://github.com/awslabs/amazon-kinesis-client/pull/406)
|
||||||
* [PR #125](https://github.com/awslabs/amazon-kinesis-client/pull/125)
|
* Upgraded Google Guava from 10.0 to 26.0-jre.
|
||||||
* Added a direct dependency on commons-logging.
|
* [Issue #416](https://github.com/awslabs/amazon-kinesis-client/issues/416)
|
||||||
* [Issue #123](https://github.com/awslabs/amazon-kinesis-client/issues/123)
|
* [PR #421](https://github.com/awslabs/amazon-kinesis-client/pull/421)
|
||||||
* [PR #124](https://github.com/awslabs/amazon-kinesis-client/pull/124)
|
|
||||||
* Make ShardInfo public to allow for custom ShardPrioritization strategies.
|
|
||||||
* [Issue #120](https://github.com/awslabs/amazon-kinesis-client/issues/120)
|
|
||||||
* [PR #127](https://github.com/awslabs/amazon-kinesis-client/pull/127)
|
|
||||||
|
|
||||||
### Release 1.7.2 (November 7, 2016)
|
### For remaining release notes check **[CHANGELOG.md][changelog-md]**.
|
||||||
* 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.
|
|
||||||
|
|
||||||
### Release 1.7.1 (November 3, 2016)
|
|
||||||
* 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](https://github.com/awslabs/amazon-kinesis-client/pull/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](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/interfaces/v2/IShutdownNotificationAware.java), and a [new method on Worker](https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/clientlibrary/lib/worker/Worker.java#L539).
|
|
||||||
* [PR #109](https://github.com/awslabs/amazon-kinesis-client/pull/109)
|
|
||||||
* Solves [Issue #79](https://github.com/awslabs/amazon-kinesis-client/issues/79)
|
|
||||||
* MultiLangDaemon
|
|
||||||
* Applications can now use credential provides that accept string parameters.
|
|
||||||
* [PR #99](https://github.com/awslabs/amazon-kinesis-client/pull/99)
|
|
||||||
* Applications can now use different credentials for each service.
|
|
||||||
* [PR #111](https://github.com/awslabs/amazon-kinesis-client/pull/111)
|
|
||||||
|
|
||||||
### Release 1.7.0 (August 22, 2016)
|
|
||||||
* Add support for time based iterators ([See GetShardIterator Documentation](http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetShardIterator.html))
|
|
||||||
* [PR #94](https://github.com/awslabs/amazon-kinesis-client/pull/94)
|
|
||||||
The `KinesisClientLibConfiguration` now supports providing an initial time stamp position.
|
|
||||||
* This position is only used if there is no current checkpoint for the shard.
|
|
||||||
* This setting cannot be used with DynamoDB Streams
|
|
||||||
Resolves [Issue #88](https://github.com/awslabs/amazon-kinesis-client/issues/88)
|
|
||||||
* Allow Prioritization of Parent Shards for Task Assignment
|
|
||||||
* [PR #95](https://github.com/awslabs/amazon-kinesis-client/pull/95)
|
|
||||||
The `KinesisClientLibconfiguration` now supports providing a `ShardPrioritization` strategy. This strategy controls how the `Worker` determines which `ShardConsumer` to call next. This can improve processing for streams that split often, such as DynamoDB Streams.
|
|
||||||
* Remove direct dependency on `aws-java-sdk-core`, to allow independent versioning.
|
|
||||||
* [PR #92](https://github.com/awslabs/amazon-kinesis-client/pull/92)
|
|
||||||
**You may need to add a direct dependency on aws-java-sdk-core if other dependencies include an older version.**
|
|
||||||
|
|
||||||
### Release 1.6.5 (July 25, 2016)
|
|
||||||
* Change LeaseManager to call DescribeTable before attempting to create the lease table.
|
|
||||||
* [Issue #36](https://github.com/awslabs/amazon-kinesis-client/issues/36)
|
|
||||||
* [PR #41](https://github.com/awslabs/amazon-kinesis-client/pull/41)
|
|
||||||
* [PR #67](https://github.com/awslabs/amazon-kinesis-client/pull/67)
|
|
||||||
* Allow DynamoDB lease table name to be specified
|
|
||||||
* [PR #61](https://github.com/awslabs/amazon-kinesis-client/pull/61)
|
|
||||||
* Add approximateArrivalTimestamp for JsonFriendlyRecord
|
|
||||||
* [PR #86](https://github.com/awslabs/amazon-kinesis-client/pull/86)
|
|
||||||
* Shutdown lease renewal thread pool on exit.
|
|
||||||
* [PR #84](https://github.com/awslabs/amazon-kinesis-client/pull/84)
|
|
||||||
* Wait for CloudWatch publishing thread to finish before exiting.
|
|
||||||
* [PR #82](https://github.com/awslabs/amazon-kinesis-client/pull/82)
|
|
||||||
* Added unit, and integration tests for the library.
|
|
||||||
|
|
||||||
### Release 1.6.4 (July 6, 2016)
|
|
||||||
* Upgrade to AWS SDK for Java 1.11.14
|
|
||||||
* [Issue #74](https://github.com/awslabs/amazon-kinesis-client/issues/74)
|
|
||||||
* [Issue #73](https://github.com/awslabs/amazon-kinesis-client/issues/73)
|
|
||||||
* **Maven Artifact Signing Change**
|
|
||||||
* Artifacts are now signed by the identity `Amazon Kinesis Tools <amazon-kinesis-tools@amazon.com>`
|
|
||||||
|
|
||||||
### Release 1.6.3 (May 12, 2016)
|
|
||||||
* Fix format exception caused by DEBUG log in LeaseTaker [Issue # 68](https://github.com/awslabs/amazon-kinesis-client/issues/68)
|
|
||||||
|
|
||||||
### Release 1.6.2 (March 23, 2016)
|
|
||||||
* 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](https://github.com/awslabs/amazon-kinesis-client/pull/49)
|
|
||||||
* Avoid NPE in MLD record processor shutdown if record processor was not initialized. [Issue # 29](https://github.com/awslabs/amazon-kinesis-client/issues/29)
|
|
||||||
|
|
||||||
### Release 1.6.1 (September 23, 2015)
|
|
||||||
* Expose [approximateArrivalTimestamp](http://docs.aws.amazon.com/kinesis/latest/APIReference/API_GetRecords.html) for Records in processRecords API call.
|
|
||||||
|
|
||||||
### Release 1.6.0 (July 31, 2015)
|
|
||||||
* Restores compatibility with [dynamodb-streams-kinesis-adapter](https://github.com/awslabs/dynamodb-streams-kinesis-adapter) (which was broken in 1.4.0).
|
|
||||||
|
|
||||||
### Release 1.5.1 (July 20, 2015)
|
|
||||||
* KCL maven artifact 1.5.0 does not work with JDK 7. This release addresses this issue.
|
|
||||||
|
|
||||||
### Release 1.5.0 (July 9, 2015)
|
|
||||||
* **[Metrics Enhancements][kinesis-guide-monitoring-with-kcl]**
|
|
||||||
* 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.
|
|
||||||
|
|
||||||
### Release 1.4.0 (June 2, 2015)
|
|
||||||
* Integration with the **[Kinesis Producer Library (KPL)][kinesis-guide-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][kinesis-guide-consumer-deaggregation] for details.
|
|
||||||
|
|
||||||
### Release 1.3.0 (May 22, 2015)
|
|
||||||
* A new metric called "MillisBehindLatest", which tracks how far consumers are from real time, is now uploaded to CloudWatch.
|
|
||||||
|
|
||||||
### Release 1.2.1 (January 26, 2015)
|
|
||||||
* **MultiLangDaemon** — Changes to the MultiLangDaemon to make it easier to provide a custom worker.
|
|
||||||
|
|
||||||
### Release 1.2 (October 21, 2014)
|
|
||||||
* **Multi-Language Support** — Amazon KCL now supports implementing record processors in any language by communicating with the daemon over [STDIN and STDOUT][multi-lang-protocol]. Python developers can directly use the [Amazon Kinesis Client Library for Python][kclpy] to write their data processing applications.
|
|
||||||
|
|
||||||
### Release 1.1 (June 30, 2014)
|
|
||||||
* **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.
|
|
||||||
|
|
||||||
[kinesis]: http://aws.amazon.com/kinesis
|
[kinesis]: http://aws.amazon.com/kinesis
|
||||||
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
[kinesis-forum]: http://developer.amazonwebservices.com/connect/forum.jspa?forumID=169
|
||||||
|
|
@ -177,4 +54,4 @@ To make it easier for developers to write record processors in other languages,
|
||||||
[kinesis-guide-consumer-deaggregation]: http://docs.aws.amazon.com//kinesis/latest/dev/kinesis-kpl-consumer-deaggregation.html
|
[kinesis-guide-consumer-deaggregation]: http://docs.aws.amazon.com//kinesis/latest/dev/kinesis-kpl-consumer-deaggregation.html
|
||||||
[kclpy]: https://github.com/awslabs/amazon-kinesis-client-python
|
[kclpy]: https://github.com/awslabs/amazon-kinesis-client-python
|
||||||
[multi-lang-protocol]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
[multi-lang-protocol]: https://github.com/awslabs/amazon-kinesis-client/blob/master/src/main/java/com/amazonaws/services/kinesis/multilang/package-info.java
|
||||||
|
[changelog-md]: https://github.com/awslabs/amazon-kinesis-client/blob/master/CHANGELOG.md
|
||||||
|
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
source.. = src/main/java,\
|
|
||||||
src/main/resources
|
|
||||||
output.. = bin/
|
|
||||||
|
|
||||||
bin.includes = LICENSE.txt,\
|
|
||||||
NOTICE.txt,\
|
|
||||||
META-INF/,\
|
|
||||||
.
|
|
||||||
|
|
||||||
jre.compilation.profile = JavaSE-1.7
|
|
||||||
86
pom.xml
86
pom.xml
|
|
@ -6,7 +6,7 @@
|
||||||
<artifactId>amazon-kinesis-client</artifactId>
|
<artifactId>amazon-kinesis-client</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<name>Amazon Kinesis Client Library for Java</name>
|
<name>Amazon Kinesis Client Library for Java</name>
|
||||||
<version>1.7.4</version>
|
<version>1.9.3</version>
|
||||||
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
<description>The Amazon Kinesis Client Library for Java enables Java developers to easily consume and process data
|
||||||
from Amazon Kinesis.
|
from Amazon Kinesis.
|
||||||
</description>
|
</description>
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
</licenses>
|
</licenses>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<aws-java-sdk.version>1.11.91</aws-java-sdk.version>
|
<aws-java-sdk.version>1.11.438</aws-java-sdk.version>
|
||||||
<sqlite4java.version>1.0.392</sqlite4java.version>
|
<sqlite4java.version>1.0.392</sqlite4java.version>
|
||||||
<sqlite4java.native>libsqlite4java</sqlite4java.native>
|
<sqlite4java.native>libsqlite4java</sqlite4java.native>
|
||||||
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>
|
<sqlite4java.libpath>${project.build.directory}/test-lib</sqlite4java.libpath>
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.guava</groupId>
|
<groupId>com.google.guava</groupId>
|
||||||
<artifactId>guava</artifactId>
|
<artifactId>guava</artifactId>
|
||||||
<version>18.0</version>
|
<version>26.0-jre</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.google.protobuf</groupId>
|
<groupId>com.google.protobuf</groupId>
|
||||||
|
|
@ -58,9 +58,9 @@
|
||||||
<version>2.6.1</version>
|
<version>2.6.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-lang</groupId>
|
<groupId>org.apache.commons</groupId>
|
||||||
<artifactId>commons-lang</artifactId>
|
<artifactId>commons-lang3</artifactId>
|
||||||
<version>2.6</version>
|
<version>3.7</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-logging</groupId>
|
<groupId>commons-logging</groupId>
|
||||||
|
|
@ -99,16 +99,23 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.amazonaws</groupId>
|
<groupId>com.amazonaws</groupId>
|
||||||
<artifactId>DynamoDBLocal</artifactId>
|
<artifactId>DynamoDBLocal</artifactId>
|
||||||
<version>1.11.0.1</version>
|
<version>1.11.86</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>log4j</groupId>
|
||||||
|
<artifactId>log4j</artifactId>
|
||||||
|
<version>1.2.17</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
<id>dynamodb-local</id>
|
<id>dynamodblocal</id>
|
||||||
<name>DynamoDB Local Release Repository</name>
|
<name>AWS DynamoDB Local Release Repository</name>
|
||||||
<url>http://dynamodb-local.s3-website-us-west-2.amazonaws.com/release</url>
|
<url>https://s3-us-west-2.amazonaws.com/dynamodb-local/release</url>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
|
@ -131,8 +138,8 @@
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.2</version>
|
<version>3.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.7</source>
|
<source>1.8</source>
|
||||||
<target>1.7</target>
|
<target>1.8</target>
|
||||||
<encoding>UTF-8</encoding>
|
<encoding>UTF-8</encoding>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
@ -242,9 +249,50 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||||||
|
<version>2.10.3</version>
|
||||||
|
<configuration>
|
||||||
|
<excludePackageNames>com.amazonaws.services.kinesis.producer.protobuf</excludePackageNames>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-javadocs</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-source-plugin</artifactId>
|
||||||
|
<version>3.0.1</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>attach-sources</id>
|
||||||
|
<goals>
|
||||||
|
<goal>jar</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<snapshotRepository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
</snapshotRepository>
|
||||||
|
<repository>
|
||||||
|
<id>sonatype-nexus-staging</id>
|
||||||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<profile>
|
<profile>
|
||||||
<id>disable-java8-doclint</id>
|
<id>disable-java8-doclint</id>
|
||||||
|
|
@ -255,6 +303,7 @@
|
||||||
<additionalparam>-Xdoclint:none</additionalparam>
|
<additionalparam>-Xdoclint:none</additionalparam>
|
||||||
</properties>
|
</properties>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
||||||
<profile>
|
<profile>
|
||||||
<id>publishing</id>
|
<id>publishing</id>
|
||||||
<build>
|
<build>
|
||||||
|
|
@ -262,7 +311,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-gpg-plugin</artifactId>
|
<artifactId>maven-gpg-plugin</artifactId>
|
||||||
<version>1.5</version>
|
<version>1.6</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>sign-artifacts</id>
|
<id>sign-artifacts</id>
|
||||||
|
|
@ -273,6 +322,17 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.sonatype.plugins</groupId>
|
||||||
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
||||||
|
<version>1.6.8</version>
|
||||||
|
<extensions>true</extensions>
|
||||||
|
<configuration>
|
||||||
|
<serverId>sonatype-nexus-staging</serverId>
|
||||||
|
<nexusUrl>https://oss.sonatype.org</nexusUrl>
|
||||||
|
<autoReleaseAfterClose>false</autoReleaseAfterClose>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
</profile>
|
</profile>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.config;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provide Date property.
|
||||||
|
*/
|
||||||
|
class DatePropertyValueDecoder implements IPropertyValueDecoder<Date> {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*/
|
||||||
|
DatePropertyValueDecoder() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param value property value as String
|
||||||
|
* @return corresponding variable in correct type
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Date decodeValue(String value) {
|
||||||
|
try {
|
||||||
|
return new Date(Long.parseLong(value) * 1000L);
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
throw new IllegalArgumentException("Date property value must be numeric.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return list of supported types
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public List<Class<Date>> getSupportedTypes() {
|
||||||
|
return Arrays.asList(Date.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -66,6 +66,7 @@ public class KinesisClientLibConfigurator {
|
||||||
Arrays.asList(new IntegerPropertyValueDecoder(),
|
Arrays.asList(new IntegerPropertyValueDecoder(),
|
||||||
new LongPropertyValueDecoder(),
|
new LongPropertyValueDecoder(),
|
||||||
new BooleanPropertyValueDecoder(),
|
new BooleanPropertyValueDecoder(),
|
||||||
|
new DatePropertyValueDecoder(),
|
||||||
new AWSCredentialsProviderPropertyValueDecoder(),
|
new AWSCredentialsProviderPropertyValueDecoder(),
|
||||||
new StringPropertyValueDecoder(),
|
new StringPropertyValueDecoder(),
|
||||||
new InitialPositionInStreamPropertyValueDecoder(),
|
new InitialPositionInStreamPropertyValueDecoder(),
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.interfaces;
|
package com.amazonaws.services.kinesis.clientlibrary.interfaces;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.Checkpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -46,4 +47,30 @@ public interface ICheckpoint {
|
||||||
*/
|
*/
|
||||||
ExtendedSequenceNumber getCheckpoint(String shardId) throws KinesisClientLibException;
|
ExtendedSequenceNumber getCheckpoint(String shardId) throws KinesisClientLibException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the current checkpoint stored for the specified shard, which holds the sequence numbers for the checkpoint
|
||||||
|
* and pending checkpoint. Useful for checking that the parent shard has been completely processed before we start
|
||||||
|
* processing the child shard.
|
||||||
|
*
|
||||||
|
* @param shardId Current checkpoint for this shard is fetched
|
||||||
|
* @return Current checkpoint object for this shard, null if there is no record for this shard.
|
||||||
|
* @throws KinesisClientLibException Thrown if we are unable to fetch the checkpoint
|
||||||
|
*/
|
||||||
|
Checkpoint getCheckpointObject(String shardId) throws KinesisClientLibException;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Record intent to checkpoint for a shard. Upon failover, the pendingCheckpointValue will be passed to the new
|
||||||
|
* RecordProcessor's initialize() method.
|
||||||
|
*
|
||||||
|
* @param shardId Checkpoint is specified for this shard.
|
||||||
|
* @param pendingCheckpoint Value of the pending checkpoint (e.g. Kinesis sequence number and subsequence number)
|
||||||
|
* @param concurrencyToken Used with conditional writes to prevent stale updates
|
||||||
|
* (e.g. if there was a fail over to a different record processor, we don't want to
|
||||||
|
* overwrite it's checkpoint)
|
||||||
|
* @throws KinesisClientLibException Thrown if we were unable to save the checkpoint
|
||||||
|
*/
|
||||||
|
void prepareCheckpoint(String shardId, ExtendedSequenceNumber pendingCheckpoint, String concurrencyToken)
|
||||||
|
throws KinesisClientLibException;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,41 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.interfaces;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibDependencyException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Objects of this class are prepared to checkpoint at a specific sequence number. They use an
|
||||||
|
* IRecordProcessorCheckpointer to do the actual checkpointing, so their checkpoint is subject to the same 'didn't go
|
||||||
|
* backwards' validation as a normal checkpoint.
|
||||||
|
*/
|
||||||
|
public interface IPreparedCheckpointer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return sequence number of pending checkpoint
|
||||||
|
*/
|
||||||
|
ExtendedSequenceNumber getPendingCheckpoint();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will record a pending checkpoint.
|
||||||
|
*
|
||||||
|
* @throws ThrottlingException Can't store checkpoint. Can be caused by checkpointing too frequently.
|
||||||
|
* Consider increasing the throughput/capacity of the checkpoint store or reducing checkpoint frequency.
|
||||||
|
* @throws ShutdownException The record processor instance has been shutdown. Another instance may have
|
||||||
|
* started processing some of these records already.
|
||||||
|
* The application should abort processing via this RecordProcessor instance.
|
||||||
|
* @throws InvalidStateException Can't store checkpoint.
|
||||||
|
* Unable to store the checkpoint in the DynamoDB table (e.g. table doesn't exist).
|
||||||
|
* @throws KinesisClientLibDependencyException Encountered an issue when storing the checkpoint. The application can
|
||||||
|
* backoff and retry.
|
||||||
|
* @throws IllegalArgumentException The sequence number being checkpointed is invalid because it is out of range,
|
||||||
|
* i.e. it is smaller than the last check point value (prepared or committed), or larger than the greatest
|
||||||
|
* sequence number seen by the associated record processor.
|
||||||
|
*/
|
||||||
|
void checkpoint()
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
|
IllegalArgumentException;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -120,4 +120,111 @@ public interface IRecordProcessorCheckpointer {
|
||||||
void checkpoint(String sequenceNumber, long subSequenceNumber)
|
void checkpoint(String sequenceNumber, long subSequenceNumber)
|
||||||
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
IllegalArgumentException;
|
IllegalArgumentException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will record a pending checkpoint at the last data record that was delivered to the record processor.
|
||||||
|
* If the application fails over between calling prepareCheckpoint() and checkpoint(), the init() method of the next
|
||||||
|
* IRecordProcessor for this shard will be informed of the prepared sequence number
|
||||||
|
*
|
||||||
|
* Application should use this to assist with idempotency across failover by calling prepareCheckpoint before having
|
||||||
|
* side effects, then by calling checkpoint on the returned PreparedCheckpointer after side effects are complete.
|
||||||
|
* Use the sequence number passed in to init() to behave idempotently.
|
||||||
|
*
|
||||||
|
* @return an IPreparedCheckpointer object that can be called later to persist the checkpoint.
|
||||||
|
*
|
||||||
|
* @throws ThrottlingException Can't store pending checkpoint. Can be caused by checkpointing too frequently.
|
||||||
|
* Consider increasing the throughput/capacity of the checkpoint store or reducing checkpoint frequency.
|
||||||
|
* @throws ShutdownException The record processor instance has been shutdown. Another instance may have
|
||||||
|
* started processing some of these records already.
|
||||||
|
* The application should abort processing via this RecordProcessor instance.
|
||||||
|
* @throws InvalidStateException Can't store pending checkpoint.
|
||||||
|
* Unable to store the checkpoint in the DynamoDB table (e.g. table doesn't exist).
|
||||||
|
* @throws KinesisClientLibDependencyException Encountered an issue when storing the pending checkpoint. The
|
||||||
|
* application can backoff and retry.
|
||||||
|
*/
|
||||||
|
IPreparedCheckpointer prepareCheckpoint()
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will record a pending checkpoint at the at the provided record. This method is analogous to
|
||||||
|
* {@link #prepareCheckpoint()} but provides the ability to specify the record at which to prepare the checkpoint.
|
||||||
|
*
|
||||||
|
* @param record A record at which to prepare checkpoint in this shard.
|
||||||
|
*
|
||||||
|
* Application should use this to assist with idempotency across failover by calling prepareCheckpoint before having
|
||||||
|
* side effects, then by calling checkpoint on the returned PreparedCheckpointer after side effects are complete.
|
||||||
|
* Use the sequence number and application state passed in to init() to behave idempotently.
|
||||||
|
*
|
||||||
|
* @return an IPreparedCheckpointer object that can be called later to persist the checkpoint.
|
||||||
|
*
|
||||||
|
* @throws ThrottlingException Can't store pending checkpoint. Can be caused by checkpointing too frequently.
|
||||||
|
* Consider increasing the throughput/capacity of the checkpoint store or reducing checkpoint frequency.
|
||||||
|
* @throws ShutdownException The record processor instance has been shutdown. Another instance may have
|
||||||
|
* started processing some of these records already.
|
||||||
|
* The application should abort processing via this RecordProcessor instance.
|
||||||
|
* @throws InvalidStateException Can't store pending checkpoint.
|
||||||
|
* Unable to store the checkpoint in the DynamoDB table (e.g. table doesn't exist).
|
||||||
|
* @throws KinesisClientLibDependencyException Encountered an issue when storing the pending checkpoint. The
|
||||||
|
* application can backoff and retry.
|
||||||
|
* @throws IllegalArgumentException The sequence number is invalid for one of the following reasons:
|
||||||
|
* 1.) It appears to be out of range, i.e. it is smaller than the last check point value, or larger than the
|
||||||
|
* greatest sequence number seen by the associated record processor.
|
||||||
|
* 2.) It is not a valid sequence number for a record in this shard.
|
||||||
|
*/
|
||||||
|
IPreparedCheckpointer prepareCheckpoint(Record record)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will record a pending checkpoint at the provided sequenceNumber. This method is analogous to
|
||||||
|
* {@link #prepareCheckpoint()} but provides the ability to specify the sequence number at which to checkpoint.
|
||||||
|
*
|
||||||
|
* @param sequenceNumber A sequence number at which to prepare checkpoint in this shard.
|
||||||
|
|
||||||
|
* @return an IPreparedCheckpointer object that can be called later to persist the checkpoint.
|
||||||
|
*
|
||||||
|
* @throws ThrottlingException Can't store pending checkpoint. Can be caused by checkpointing too frequently.
|
||||||
|
* Consider increasing the throughput/capacity of the checkpoint store or reducing checkpoint frequency.
|
||||||
|
* @throws ShutdownException The record processor instance has been shutdown. Another instance may have
|
||||||
|
* started processing some of these records already.
|
||||||
|
* The application should abort processing via this RecordProcessor instance.
|
||||||
|
* @throws InvalidStateException Can't store pending checkpoint.
|
||||||
|
* Unable to store the checkpoint in the DynamoDB table (e.g. table doesn't exist).
|
||||||
|
* @throws KinesisClientLibDependencyException Encountered an issue when storing the pending checkpoint. The
|
||||||
|
* application can backoff and retry.
|
||||||
|
* @throws IllegalArgumentException The sequence number is invalid for one of the following reasons:
|
||||||
|
* 1.) It appears to be out of range, i.e. it is smaller than the last check point value, or larger than the
|
||||||
|
* greatest sequence number seen by the associated record processor.
|
||||||
|
* 2.) It is not a valid sequence number for a record in this shard.
|
||||||
|
*/
|
||||||
|
IPreparedCheckpointer prepareCheckpoint(String sequenceNumber)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
|
IllegalArgumentException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method will record a pending checkpoint at the provided sequenceNumber and subSequenceNumber, the latter for
|
||||||
|
* aggregated records produced with the Producer Library. This method is analogous to {@link #prepareCheckpoint()}
|
||||||
|
* but provides the ability to specify the sequence number at which to checkpoint
|
||||||
|
*
|
||||||
|
* @param sequenceNumber A sequence number at which to prepare checkpoint in this shard.
|
||||||
|
* @param subSequenceNumber A subsequence number at which to prepare checkpoint within this shard.
|
||||||
|
*
|
||||||
|
* @return an IPreparedCheckpointer object that can be called later to persist the checkpoint.
|
||||||
|
*
|
||||||
|
* @throws ThrottlingException Can't store pending checkpoint. Can be caused by checkpointing too frequently.
|
||||||
|
* Consider increasing the throughput/capacity of the checkpoint store or reducing checkpoint frequency.
|
||||||
|
* @throws ShutdownException The record processor instance has been shutdown. Another instance may have
|
||||||
|
* started processing some of these records already.
|
||||||
|
* The application should abort processing via this RecordProcessor instance.
|
||||||
|
* @throws InvalidStateException Can't store pending checkpoint.
|
||||||
|
* Unable to store the checkpoint in the DynamoDB table (e.g. table doesn't exist).
|
||||||
|
* @throws KinesisClientLibDependencyException Encountered an issue when storing the pending checkpoint. The
|
||||||
|
* application can backoff and retry.
|
||||||
|
* @throws IllegalArgumentException The sequence number is invalid for one of the following reasons:
|
||||||
|
* 1.) It appears to be out of range, i.e. it is smaller than the last check point value, or larger than the
|
||||||
|
* greatest sequence number seen by the associated record processor.
|
||||||
|
* 2.) It is not a valid sequence number for a record in this shard.
|
||||||
|
*/
|
||||||
|
IPreparedCheckpointer prepareCheckpoint(String sequenceNumber, long subSequenceNumber)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
|
IllegalArgumentException;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -45,10 +45,16 @@ public interface IRecordProcessor {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Invoked by the Amazon Kinesis Client Library to indicate it will no longer send data records to this
|
* Invoked by the Amazon Kinesis Client Library to indicate it will no longer send data records to this
|
||||||
* RecordProcessor instance.
|
* RecordProcessor instance.
|
||||||
*
|
*
|
||||||
* @param shutdownInput Provides information and capabilities (eg checkpointing) related to shutdown of this record
|
* <h2><b>Warning</b></h2>
|
||||||
* processor.
|
*
|
||||||
|
* When the value of {@link ShutdownInput#getShutdownReason()} is
|
||||||
|
* {@link com.amazonaws.services.kinesis.clientlibrary.lib.worker.ShutdownReason#TERMINATE} it is required that you
|
||||||
|
* checkpoint. Failure to do so will result in an IllegalArgumentException, and the KCL no longer making progress.
|
||||||
|
*
|
||||||
|
* @param shutdownInput
|
||||||
|
* Provides information and capabilities (eg checkpointing) related to shutdown of this record processor.
|
||||||
*/
|
*/
|
||||||
void shutdown(ShutdownInput shutdownInput);
|
void shutdown(ShutdownInput shutdownInput);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.interfaces.v2;
|
package com.amazonaws.services.kinesis.clientlibrary.interfaces.v2;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,27 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class encapsulating the 2 pieces of state stored in a checkpoint.
|
||||||
|
*/
|
||||||
|
@Data public class Checkpoint {
|
||||||
|
|
||||||
|
private final ExtendedSequenceNumber checkpoint;
|
||||||
|
private final ExtendedSequenceNumber pendingCheckpoint;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param checkpoint the checkpoint sequence number - cannot be null or empty.
|
||||||
|
* @param pendingCheckpoint the pending checkpoint sequence number - can be null.
|
||||||
|
*/
|
||||||
|
public Checkpoint(ExtendedSequenceNumber checkpoint, ExtendedSequenceNumber pendingCheckpoint) {
|
||||||
|
if (checkpoint == null || checkpoint.getSequenceNumber().isEmpty()) {
|
||||||
|
throw new IllegalArgumentException("Checkpoint cannot be null or empty");
|
||||||
|
}
|
||||||
|
this.checkpoint = checkpoint;
|
||||||
|
this.pendingCheckpoint = pendingCheckpoint;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,154 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.CompletionService;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.ExecutorCompletionService;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
|
import java.util.concurrent.RejectedExecutionException;
|
||||||
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.ThreadSafeMetricsDelegatingScope;
|
||||||
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
|
||||||
|
import lombok.NonNull;
|
||||||
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@CommonsLog
|
||||||
|
public class AsynchronousGetRecordsRetrievalStrategy implements GetRecordsRetrievalStrategy {
|
||||||
|
private static final int TIME_TO_KEEP_ALIVE = 5;
|
||||||
|
private static final int CORE_THREAD_POOL_COUNT = 1;
|
||||||
|
|
||||||
|
private final KinesisDataFetcher dataFetcher;
|
||||||
|
private final ExecutorService executorService;
|
||||||
|
private final int retryGetRecordsInSeconds;
|
||||||
|
private final String shardId;
|
||||||
|
final Supplier<CompletionService<DataFetcherResult>> completionServiceSupplier;
|
||||||
|
|
||||||
|
public AsynchronousGetRecordsRetrievalStrategy(@NonNull final KinesisDataFetcher dataFetcher,
|
||||||
|
final int retryGetRecordsInSeconds, final int maxGetRecordsThreadPool, String shardId) {
|
||||||
|
this(dataFetcher, buildExector(maxGetRecordsThreadPool, shardId), retryGetRecordsInSeconds, shardId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public AsynchronousGetRecordsRetrievalStrategy(final KinesisDataFetcher dataFetcher,
|
||||||
|
final ExecutorService executorService, final int retryGetRecordsInSeconds, String shardId) {
|
||||||
|
this(dataFetcher, executorService, retryGetRecordsInSeconds, () -> new ExecutorCompletionService<>(executorService),
|
||||||
|
shardId);
|
||||||
|
}
|
||||||
|
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy(KinesisDataFetcher dataFetcher, ExecutorService executorService,
|
||||||
|
int retryGetRecordsInSeconds, Supplier<CompletionService<DataFetcherResult>> completionServiceSupplier,
|
||||||
|
String shardId) {
|
||||||
|
this.dataFetcher = dataFetcher;
|
||||||
|
this.executorService = executorService;
|
||||||
|
this.retryGetRecordsInSeconds = retryGetRecordsInSeconds;
|
||||||
|
this.completionServiceSupplier = completionServiceSupplier;
|
||||||
|
this.shardId = shardId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult getRecords(final int maxRecords) {
|
||||||
|
if (executorService.isShutdown()) {
|
||||||
|
throw new IllegalStateException("Strategy has been shutdown");
|
||||||
|
}
|
||||||
|
GetRecordsResult result = null;
|
||||||
|
CompletionService<DataFetcherResult> completionService = completionServiceSupplier.get();
|
||||||
|
Set<Future<DataFetcherResult>> futures = new HashSet<>();
|
||||||
|
Callable<DataFetcherResult> retrieverCall = createRetrieverCallable(maxRecords);
|
||||||
|
try {
|
||||||
|
while (true) {
|
||||||
|
try {
|
||||||
|
futures.add(completionService.submit(retrieverCall));
|
||||||
|
} catch (RejectedExecutionException e) {
|
||||||
|
log.warn("Out of resources, unable to start additional requests.");
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Future<DataFetcherResult> resultFuture = completionService.poll(retryGetRecordsInSeconds,
|
||||||
|
TimeUnit.SECONDS);
|
||||||
|
if (resultFuture != null) {
|
||||||
|
//
|
||||||
|
// Fix to ensure that we only let the shard iterator advance when we intend to return the result
|
||||||
|
// to the caller. This ensures that the shard iterator is consistently advance in step with
|
||||||
|
// what the caller sees.
|
||||||
|
//
|
||||||
|
result = resultFuture.get().accept();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
if (e.getCause() instanceof ExpiredIteratorException) {
|
||||||
|
throw (ExpiredIteratorException) e.getCause();
|
||||||
|
}
|
||||||
|
log.error("ExecutionException thrown while trying to get records", e);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
log.error("Thread was interrupted", e);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
futures.forEach(f -> f.cancel(true));
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Callable<DataFetcherResult> createRetrieverCallable(int maxRecords) {
|
||||||
|
ThreadSafeMetricsDelegatingScope metricsScope = new ThreadSafeMetricsDelegatingScope(MetricsHelper.getMetricsScope());
|
||||||
|
return () -> {
|
||||||
|
try {
|
||||||
|
MetricsHelper.setMetricsScope(metricsScope);
|
||||||
|
return dataFetcher.getRecords(maxRecords);
|
||||||
|
} finally {
|
||||||
|
MetricsHelper.unsetMetricsScope();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdown() {
|
||||||
|
executorService.shutdownNow();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isShutdown() {
|
||||||
|
return executorService.isShutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static ExecutorService buildExector(int maxGetRecordsThreadPool, String shardId) {
|
||||||
|
String threadNameFormat = "get-records-worker-" + shardId + "-%d";
|
||||||
|
return new ThreadPoolExecutor(CORE_THREAD_POOL_COUNT, maxGetRecordsThreadPool, TIME_TO_KEEP_ALIVE,
|
||||||
|
TimeUnit.SECONDS, new LinkedBlockingQueue<>(1),
|
||||||
|
new ThreadFactoryBuilder().setDaemon(true).setNameFormat(threadNameFormat).build(),
|
||||||
|
new ThreadPoolExecutor.AbortPolicy());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KinesisDataFetcher getDataFetcher() {
|
||||||
|
return dataFetcher;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.Instant;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the BlockingGetRecordsCache class. This class blocks any calls to the getRecords on the
|
||||||
|
* GetRecordsRetrievalStrategy class.
|
||||||
|
*/
|
||||||
|
@CommonsLog
|
||||||
|
public class BlockingGetRecordsCache implements GetRecordsCache {
|
||||||
|
private final int maxRecordsPerCall;
|
||||||
|
private final GetRecordsRetrievalStrategy getRecordsRetrievalStrategy;
|
||||||
|
|
||||||
|
public BlockingGetRecordsCache(final int maxRecordsPerCall,
|
||||||
|
final GetRecordsRetrievalStrategy getRecordsRetrievalStrategy) {
|
||||||
|
this.maxRecordsPerCall = maxRecordsPerCall;
|
||||||
|
this.getRecordsRetrievalStrategy = getRecordsRetrievalStrategy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void start() {
|
||||||
|
//
|
||||||
|
// Nothing to do here
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ProcessRecordsInput getNextResult() {
|
||||||
|
GetRecordsResult getRecordsResult = getRecordsRetrievalStrategy.getRecords(maxRecordsPerCall);
|
||||||
|
return new ProcessRecordsInput()
|
||||||
|
.withRecords(getRecordsResult.getRecords())
|
||||||
|
.withMillisBehindLatest(getRecordsResult.getMillisBehindLatest());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsRetrievalStrategy getGetRecordsRetrievalStrategy() {
|
||||||
|
return getRecordsRetrievalStrategy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdown() {
|
||||||
|
getRecordsRetrievalStrategy.shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -237,9 +251,14 @@ class ConsumerStates {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ITask createTask(ShardConsumer consumer) {
|
public ITask createTask(ShardConsumer consumer) {
|
||||||
return new InitializeTask(consumer.getShardInfo(), consumer.getRecordProcessor(), consumer.getCheckpoint(),
|
return new InitializeTask(consumer.getShardInfo(),
|
||||||
consumer.getRecordProcessorCheckpointer(), consumer.getDataFetcher(),
|
consumer.getRecordProcessor(),
|
||||||
consumer.getTaskBackoffTimeMillis(), consumer.getStreamConfig());
|
consumer.getCheckpoint(),
|
||||||
|
consumer.getRecordProcessorCheckpointer(),
|
||||||
|
consumer.getDataFetcher(),
|
||||||
|
consumer.getTaskBackoffTimeMillis(),
|
||||||
|
consumer.getStreamConfig(),
|
||||||
|
consumer.getGetRecordsCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -293,9 +312,14 @@ class ConsumerStates {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ITask createTask(ShardConsumer consumer) {
|
public ITask createTask(ShardConsumer consumer) {
|
||||||
return new ProcessTask(consumer.getShardInfo(), consumer.getStreamConfig(), consumer.getRecordProcessor(),
|
return new ProcessTask(consumer.getShardInfo(),
|
||||||
consumer.getRecordProcessorCheckpointer(), consumer.getDataFetcher(),
|
consumer.getStreamConfig(),
|
||||||
consumer.getTaskBackoffTimeMillis(), consumer.isSkipShardSyncAtWorkerInitializationIfLeasesExist());
|
consumer.getRecordProcessor(),
|
||||||
|
consumer.getRecordProcessorCheckpointer(),
|
||||||
|
consumer.getDataFetcher(),
|
||||||
|
consumer.getTaskBackoffTimeMillis(),
|
||||||
|
consumer.isSkipShardSyncAtWorkerInitializationIfLeasesExist(),
|
||||||
|
consumer.getGetRecordsCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -354,8 +378,10 @@ class ConsumerStates {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ITask createTask(ShardConsumer consumer) {
|
public ITask createTask(ShardConsumer consumer) {
|
||||||
return new ShutdownNotificationTask(consumer.getRecordProcessor(), consumer.getRecordProcessorCheckpointer(),
|
return new ShutdownNotificationTask(consumer.getRecordProcessor(),
|
||||||
consumer.getShutdownNotification(), consumer.getShardInfo());
|
consumer.getRecordProcessorCheckpointer(),
|
||||||
|
consumer.getShutdownNotification(),
|
||||||
|
consumer.getShardInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -494,12 +520,17 @@ class ConsumerStates {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ITask createTask(ShardConsumer consumer) {
|
public ITask createTask(ShardConsumer consumer) {
|
||||||
return new ShutdownTask(consumer.getShardInfo(), consumer.getRecordProcessor(),
|
return new ShutdownTask(consumer.getShardInfo(),
|
||||||
consumer.getRecordProcessorCheckpointer(), consumer.getShutdownReason(),
|
consumer.getRecordProcessor(),
|
||||||
|
consumer.getRecordProcessorCheckpointer(),
|
||||||
|
consumer.getShutdownReason(),
|
||||||
consumer.getStreamConfig().getStreamProxy(),
|
consumer.getStreamConfig().getStreamProxy(),
|
||||||
consumer.getStreamConfig().getInitialPositionInStream(),
|
consumer.getStreamConfig().getInitialPositionInStream(),
|
||||||
consumer.isCleanupLeasesOfCompletedShards(), consumer.getLeaseManager(),
|
consumer.isCleanupLeasesOfCompletedShards(),
|
||||||
consumer.getTaskBackoffTimeMillis());
|
consumer.isIgnoreUnexpectedChildShards(),
|
||||||
|
consumer.getLeaseManager(),
|
||||||
|
consumer.getTaskBackoffTimeMillis(),
|
||||||
|
consumer.getGetRecordsCache());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,37 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Amazon Software License
|
||||||
|
* (the "License"). You may not use this file except in compliance with the License. A copy of the License is located at
|
||||||
|
* http://aws.amazon.com/asl/ or in the "license" file accompanying this file. This file is distributed on an "AS IS"
|
||||||
|
* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific
|
||||||
|
* language governing permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the result from the DataFetcher, and allows the receiver to accept a result
|
||||||
|
*/
|
||||||
|
public interface DataFetcherResult {
|
||||||
|
/**
|
||||||
|
* The result of the request to Kinesis
|
||||||
|
*
|
||||||
|
* @return The result of the request, this can be null if the request failed.
|
||||||
|
*/
|
||||||
|
GetRecordsResult getResult();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Accepts the result, and advances the shard iterator. A result from the data fetcher must be accepted before any
|
||||||
|
* further progress can be made.
|
||||||
|
*
|
||||||
|
* @return the result of the request, this can be null if the request failed.
|
||||||
|
*/
|
||||||
|
GetRecordsResult accept();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicates whether this result is at the end of the shard or not
|
||||||
|
*
|
||||||
|
* @return true if the result is at the end of a shard, false otherwise
|
||||||
|
*/
|
||||||
|
boolean isShardEnd();
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public enum DataFetchingStrategy {
|
||||||
|
DEFAULT, PREFETCH_CACHED;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,66 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibDependencyException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IPreparedCheckpointer;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A special IPreparedCheckpointer that does nothing, which can be used when preparing a checkpoint at the current
|
||||||
|
* checkpoint sequence number where it is never necessary to do another checkpoint.
|
||||||
|
* This simplifies programming by preventing application developers from having to reason about whether
|
||||||
|
* their application has processed records before calling prepareCheckpoint
|
||||||
|
*
|
||||||
|
* Here's why it's safe to do nothing:
|
||||||
|
* The only way to checkpoint at current checkpoint value is to have a record processor that gets
|
||||||
|
* initialized, processes 0 records, then calls prepareCheckpoint(). The value in the table is the same, so there's
|
||||||
|
* no reason to overwrite it with another copy of itself.
|
||||||
|
*/
|
||||||
|
public class DoesNothingPreparedCheckpointer implements IPreparedCheckpointer {
|
||||||
|
|
||||||
|
private final ExtendedSequenceNumber sequenceNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
* @param sequenceNumber the sequence number value
|
||||||
|
*/
|
||||||
|
public DoesNothingPreparedCheckpointer(ExtendedSequenceNumber sequenceNumber) {
|
||||||
|
this.sequenceNumber = sequenceNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ExtendedSequenceNumber getPendingCheckpoint() {
|
||||||
|
return sequenceNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void checkpoint()
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
|
IllegalArgumentException {
|
||||||
|
// This method does nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is used as a cache for Prefetching data from Kinesis.
|
||||||
|
*/
|
||||||
|
public interface GetRecordsCache {
|
||||||
|
/**
|
||||||
|
* This method calls the start behavior on the cache, if available.
|
||||||
|
*/
|
||||||
|
void start();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method returns the next set of records from the Cache if present, or blocks the request till it gets the
|
||||||
|
* next set of records back from Kinesis.
|
||||||
|
*
|
||||||
|
* @return The next set of records.
|
||||||
|
*/
|
||||||
|
ProcessRecordsInput getNextResult();
|
||||||
|
|
||||||
|
GetRecordsRetrievalStrategy getGetRecordsRetrievalStrategy();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method calls the shutdown behavior on the cache, if available.
|
||||||
|
*/
|
||||||
|
void shutdown();
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a strategy to retrieve records from Kinesis. Allows for variations on how records are retrieved from
|
||||||
|
* Kinesis.
|
||||||
|
*/
|
||||||
|
public interface GetRecordsRetrievalStrategy {
|
||||||
|
/**
|
||||||
|
* Gets a set of records from Kinesis.
|
||||||
|
*
|
||||||
|
* @param maxRecords
|
||||||
|
* passed to Kinesis, and can be used to restrict the number of records returned from Kinesis.
|
||||||
|
* @return the resulting records.
|
||||||
|
* @throws IllegalStateException
|
||||||
|
* if the strategy has been shutdown.
|
||||||
|
*/
|
||||||
|
GetRecordsResult getRecords(int maxRecords);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Releases any resources used by the strategy. Once the strategy is shutdown it is no longer safe to call
|
||||||
|
* {@link #getRecords(int)}.
|
||||||
|
*/
|
||||||
|
void shutdown();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns whether this strategy has been shutdown.
|
||||||
|
*
|
||||||
|
* @return true if the strategy has been shutdown, false otherwise.
|
||||||
|
*/
|
||||||
|
boolean isShutdown();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the KinesisDataFetcher used to getRecords from Kinesis.
|
||||||
|
*
|
||||||
|
* @return KinesisDataFetcher
|
||||||
|
*/
|
||||||
|
KinesisDataFetcher getDataFetcher();
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,12 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class uses the GetRecordsRetrievalStrategy class to retrieve the next set of records and update the cache.
|
||||||
|
*/
|
||||||
|
public interface GetRecordsRetriever {
|
||||||
|
GetRecordsResult getNextRecords(int maxRecords);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,33 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
class GracefulShutdownContext {
|
||||||
|
private final CountDownLatch shutdownCompleteLatch;
|
||||||
|
private final CountDownLatch notificationCompleteLatch;
|
||||||
|
private final Worker worker;
|
||||||
|
|
||||||
|
static GracefulShutdownContext SHUTDOWN_ALREADY_COMPLETED = new GracefulShutdownContext(null, null, null);
|
||||||
|
|
||||||
|
boolean isShutdownAlreadyCompleted() {
|
||||||
|
return shutdownCompleteLatch == null && notificationCompleteLatch == null && worker == null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,163 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.FutureTask;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
class GracefulShutdownCoordinator {
|
||||||
|
|
||||||
|
Future<Boolean> startGracefulShutdown(Callable<Boolean> shutdownCallable) {
|
||||||
|
FutureTask<Boolean> task = new FutureTask<>(shutdownCallable);
|
||||||
|
Thread shutdownThread = new Thread(task, "RequestedShutdownThread");
|
||||||
|
shutdownThread.start();
|
||||||
|
return task;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Callable<Boolean> createGracefulShutdownCallable(Callable<GracefulShutdownContext> startWorkerShutdown) {
|
||||||
|
return new GracefulShutdownCallable(startWorkerShutdown);
|
||||||
|
}
|
||||||
|
|
||||||
|
static class GracefulShutdownCallable implements Callable<Boolean> {
|
||||||
|
|
||||||
|
private static final Log log = LogFactory.getLog(GracefulShutdownCallable.class);
|
||||||
|
|
||||||
|
private final Callable<GracefulShutdownContext> startWorkerShutdown;
|
||||||
|
|
||||||
|
GracefulShutdownCallable(Callable<GracefulShutdownContext> startWorkerShutdown) {
|
||||||
|
this.startWorkerShutdown = startWorkerShutdown;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isWorkerShutdownComplete(GracefulShutdownContext context) {
|
||||||
|
return context.getWorker().isShutdownComplete() || context.getWorker().getShardInfoShardConsumerMap().isEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
private String awaitingLogMessage(GracefulShutdownContext context) {
|
||||||
|
long awaitingNotification = context.getNotificationCompleteLatch().getCount();
|
||||||
|
long awaitingFinalShutdown = context.getShutdownCompleteLatch().getCount();
|
||||||
|
|
||||||
|
return String.format(
|
||||||
|
"Waiting for %d record process to complete shutdown notification, and %d record processor to complete final shutdown ",
|
||||||
|
awaitingNotification, awaitingFinalShutdown);
|
||||||
|
}
|
||||||
|
|
||||||
|
private String awaitingFinalShutdownMessage(GracefulShutdownContext context) {
|
||||||
|
long outstanding = context.getShutdownCompleteLatch().getCount();
|
||||||
|
return String.format("Waiting for %d record processors to complete final shutdown", outstanding);
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean waitForRecordProcessors(GracefulShutdownContext context) {
|
||||||
|
|
||||||
|
//
|
||||||
|
// Awaiting for all ShardConsumer/RecordProcessors to be notified that a shutdown has been requested.
|
||||||
|
// There is the possibility of a race condition where a lease is terminated after the shutdown request
|
||||||
|
// notification is started, but before the ShardConsumer is sent the notification. In this case the
|
||||||
|
// ShardConsumer would start the lease loss shutdown, and may never call the notification methods.
|
||||||
|
//
|
||||||
|
try {
|
||||||
|
while (!context.getNotificationCompleteLatch().await(1, TimeUnit.SECONDS)) {
|
||||||
|
if (Thread.interrupted()) {
|
||||||
|
throw new InterruptedException();
|
||||||
|
}
|
||||||
|
log.info(awaitingLogMessage(context));
|
||||||
|
if (workerShutdownWithRemaining(context.getShutdownCompleteLatch().getCount(), context)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
log.warn("Interrupted while waiting for notification complete, terminating shutdown. "
|
||||||
|
+ awaitingLogMessage(context));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Thread.interrupted()) {
|
||||||
|
log.warn("Interrupted before worker shutdown, terminating shutdown");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Once all record processors have been notified of the shutdown it is safe to allow the worker to
|
||||||
|
// start its shutdown behavior. Once shutdown starts it will stop renewer, and drop any remaining leases.
|
||||||
|
//
|
||||||
|
context.getWorker().shutdown();
|
||||||
|
|
||||||
|
if (Thread.interrupted()) {
|
||||||
|
log.warn("Interrupted after worker shutdown, terminating shutdown");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Want to wait for all the remaining ShardConsumers/RecordProcessor's to complete their final shutdown
|
||||||
|
// processing. This should really be a no-op since as part of the notification completion the lease for
|
||||||
|
// ShardConsumer is terminated.
|
||||||
|
//
|
||||||
|
try {
|
||||||
|
while (!context.getShutdownCompleteLatch().await(1, TimeUnit.SECONDS)) {
|
||||||
|
if (Thread.interrupted()) {
|
||||||
|
throw new InterruptedException();
|
||||||
|
}
|
||||||
|
log.info(awaitingFinalShutdownMessage(context));
|
||||||
|
if (workerShutdownWithRemaining(context.getShutdownCompleteLatch().getCount(), context)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
log.warn("Interrupted while waiting for shutdown completion, terminating shutdown. "
|
||||||
|
+ awaitingFinalShutdownMessage(context));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This checks to see if the worker has already hit it's shutdown target, while there is outstanding record
|
||||||
|
* processors. This maybe a little racy due to when the value of outstanding is retrieved. In general though the
|
||||||
|
* latch should be decremented before the shutdown completion.
|
||||||
|
*
|
||||||
|
* @param outstanding
|
||||||
|
* the number of record processor still awaiting shutdown.
|
||||||
|
*/
|
||||||
|
private boolean workerShutdownWithRemaining(long outstanding, GracefulShutdownContext context) {
|
||||||
|
if (isWorkerShutdownComplete(context)) {
|
||||||
|
if (outstanding != 0) {
|
||||||
|
log.info("Shutdown completed, but shutdownCompleteLatch still had outstanding " + outstanding
|
||||||
|
+ " with a current value of " + context.getShutdownCompleteLatch().getCount() + ". shutdownComplete: "
|
||||||
|
+ context.getWorker().isShutdownComplete() + " -- Consumer Map: "
|
||||||
|
+ context.getWorker().getShardInfoShardConsumerMap().size());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Boolean call() throws Exception {
|
||||||
|
GracefulShutdownContext context;
|
||||||
|
try {
|
||||||
|
context = startWorkerShutdown.call();
|
||||||
|
} catch (Exception ex) {
|
||||||
|
log.warn("Caught exception while requesting initial worker shutdown.", ex);
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
return context.isShutdownAlreadyCompleted() || waitForRecordProcessors(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
@ -19,6 +19,7 @@ import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IRecordProcessor;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IRecordProcessor;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.Checkpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
||||||
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
|
|
@ -42,17 +43,19 @@ class InitializeTask implements ITask {
|
||||||
// Back off for this interval if we encounter a problem (exception)
|
// Back off for this interval if we encounter a problem (exception)
|
||||||
private final long backoffTimeMillis;
|
private final long backoffTimeMillis;
|
||||||
private final StreamConfig streamConfig;
|
private final StreamConfig streamConfig;
|
||||||
|
private final GetRecordsCache getRecordsCache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*/
|
*/
|
||||||
InitializeTask(ShardInfo shardInfo,
|
InitializeTask(ShardInfo shardInfo,
|
||||||
IRecordProcessor recordProcessor,
|
IRecordProcessor recordProcessor,
|
||||||
ICheckpoint checkpoint,
|
ICheckpoint checkpoint,
|
||||||
RecordProcessorCheckpointer recordProcessorCheckpointer,
|
RecordProcessorCheckpointer recordProcessorCheckpointer,
|
||||||
KinesisDataFetcher dataFetcher,
|
KinesisDataFetcher dataFetcher,
|
||||||
long backoffTimeMillis,
|
long backoffTimeMillis,
|
||||||
StreamConfig streamConfig) {
|
StreamConfig streamConfig,
|
||||||
|
GetRecordsCache getRecordsCache) {
|
||||||
this.shardInfo = shardInfo;
|
this.shardInfo = shardInfo;
|
||||||
this.recordProcessor = recordProcessor;
|
this.recordProcessor = recordProcessor;
|
||||||
this.checkpoint = checkpoint;
|
this.checkpoint = checkpoint;
|
||||||
|
|
@ -60,6 +63,7 @@ class InitializeTask implements ITask {
|
||||||
this.dataFetcher = dataFetcher;
|
this.dataFetcher = dataFetcher;
|
||||||
this.backoffTimeMillis = backoffTimeMillis;
|
this.backoffTimeMillis = backoffTimeMillis;
|
||||||
this.streamConfig = streamConfig;
|
this.streamConfig = streamConfig;
|
||||||
|
this.getRecordsCache = getRecordsCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -75,16 +79,19 @@ class InitializeTask implements ITask {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
LOG.debug("Initializing ShardId " + shardInfo.getShardId());
|
LOG.debug("Initializing ShardId " + shardInfo.getShardId());
|
||||||
ExtendedSequenceNumber initialCheckpoint = checkpoint.getCheckpoint(shardInfo.getShardId());
|
Checkpoint initialCheckpointObject = checkpoint.getCheckpointObject(shardInfo.getShardId());
|
||||||
|
ExtendedSequenceNumber initialCheckpoint = initialCheckpointObject.getCheckpoint();
|
||||||
|
|
||||||
dataFetcher.initialize(initialCheckpoint.getSequenceNumber(), streamConfig.getInitialPositionInStream());
|
dataFetcher.initialize(initialCheckpoint.getSequenceNumber(), streamConfig.getInitialPositionInStream());
|
||||||
|
getRecordsCache.start();
|
||||||
recordProcessorCheckpointer.setLargestPermittedCheckpointValue(initialCheckpoint);
|
recordProcessorCheckpointer.setLargestPermittedCheckpointValue(initialCheckpoint);
|
||||||
recordProcessorCheckpointer.setInitialCheckpointValue(initialCheckpoint);
|
recordProcessorCheckpointer.setInitialCheckpointValue(initialCheckpoint);
|
||||||
|
|
||||||
LOG.debug("Calling the record processor initialize().");
|
LOG.debug("Calling the record processor initialize().");
|
||||||
final InitializationInput initializationInput = new InitializationInput()
|
final InitializationInput initializationInput = new InitializationInput()
|
||||||
.withShardId(shardInfo.getShardId())
|
.withShardId(shardInfo.getShardId())
|
||||||
.withExtendedSequenceNumber(initialCheckpoint);
|
.withExtendedSequenceNumber(initialCheckpoint)
|
||||||
|
.withPendingCheckpointSequenceNumber(initialCheckpointObject.getPendingCheckpoint());
|
||||||
final long recordProcessorStartTimeMillis = System.currentTimeMillis();
|
final long recordProcessorStartTimeMillis = System.currentTimeMillis();
|
||||||
try {
|
try {
|
||||||
recordProcessor.initialize(initializationInput);
|
recordProcessor.initialize(initializationInput);
|
||||||
|
|
|
||||||
|
|
@ -1,22 +1,25 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.Validate;
|
||||||
|
|
||||||
import com.amazonaws.ClientConfiguration;
|
import com.amazonaws.ClientConfiguration;
|
||||||
import com.amazonaws.auth.AWSCredentialsProvider;
|
import com.amazonaws.auth.AWSCredentialsProvider;
|
||||||
import com.amazonaws.regions.RegionUtils;
|
import com.amazonaws.regions.RegionUtils;
|
||||||
|
|
@ -25,6 +28,8 @@ import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsScope;
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
||||||
import com.google.common.collect.ImmutableSet;
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configuration for the Amazon Kinesis Client Library.
|
* Configuration for the Amazon Kinesis Client Library.
|
||||||
*/
|
*/
|
||||||
|
|
@ -52,7 +57,8 @@ public class KinesisClientLibConfiguration {
|
||||||
public static final int DEFAULT_MAX_RECORDS = 10000;
|
public static final int DEFAULT_MAX_RECORDS = 10000;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Idle time between record reads in milliseconds.
|
* The default value for how long the {@link ShardConsumer} should sleep if no records are returned from the call to
|
||||||
|
* {@link com.amazonaws.services.kinesis.AmazonKinesis#getRecords(com.amazonaws.services.kinesis.model.GetRecordsRequest)}.
|
||||||
*/
|
*/
|
||||||
public static final long DEFAULT_IDLETIME_BETWEEN_READS_MILLIS = 1000L;
|
public static final long DEFAULT_IDLETIME_BETWEEN_READS_MILLIS = 1000L;
|
||||||
|
|
||||||
|
|
@ -120,7 +126,7 @@ public class KinesisClientLibConfiguration {
|
||||||
/**
|
/**
|
||||||
* User agent set when Amazon Kinesis Client Library makes AWS requests.
|
* 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.7.4";
|
public static final String KINESIS_CLIENT_LIB_USER_AGENT = "amazon-kinesis-client-library-java-1.9.3";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
* KCL will validate client provided sequence numbers with a call to Amazon Kinesis before checkpointing for calls
|
||||||
|
|
@ -154,10 +160,10 @@ public class KinesisClientLibConfiguration {
|
||||||
*/
|
*/
|
||||||
public static final int DEFAULT_INITIAL_LEASE_TABLE_WRITE_CAPACITY = 10;
|
public static final int DEFAULT_INITIAL_LEASE_TABLE_WRITE_CAPACITY = 10;
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* The Worker will skip shard sync during initialization if there are one or more leases in the lease table.
|
* The Worker will skip shard sync during initialization if there are one or more leases in the lease table. This
|
||||||
* This assumes that the shards and leases are in-sync.
|
* assumes that the shards and leases are in-sync. This enables customers to choose faster startup times (e.g.
|
||||||
* This enables customers to choose faster startup times (e.g. during incremental deployments of an application).
|
* during incremental deployments of an application).
|
||||||
*/
|
*/
|
||||||
public static final boolean DEFAULT_SKIP_SHARD_SYNC_AT_STARTUP_IF_LEASES_EXIST = false;
|
public static final boolean DEFAULT_SKIP_SHARD_SYNC_AT_STARTUP_IF_LEASES_EXIST = false;
|
||||||
|
|
||||||
|
|
@ -166,6 +172,26 @@ public class KinesisClientLibConfiguration {
|
||||||
*/
|
*/
|
||||||
public static final ShardPrioritization DEFAULT_SHARD_PRIORITIZATION = new NoOpShardPrioritization();
|
public static final ShardPrioritization DEFAULT_SHARD_PRIORITIZATION = new NoOpShardPrioritization();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The amount of milliseconds to wait before graceful shutdown forcefully terminates.
|
||||||
|
*/
|
||||||
|
public static final long DEFAULT_SHUTDOWN_GRACE_MILLIS = 5000L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The size of the thread pool to create for the lease renewer to use.
|
||||||
|
*/
|
||||||
|
public static final int DEFAULT_MAX_LEASE_RENEWAL_THREADS = 20;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The sleep time between two listShards calls from the proxy when throttled.
|
||||||
|
*/
|
||||||
|
public static final long DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS = 1500;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of times the Proxy will retry listShards call when throttled.
|
||||||
|
*/
|
||||||
|
public static final int DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS = 50;
|
||||||
|
|
||||||
private String applicationName;
|
private String applicationName;
|
||||||
private String tableName;
|
private String tableName;
|
||||||
private String streamName;
|
private String streamName;
|
||||||
|
|
@ -184,6 +210,7 @@ public class KinesisClientLibConfiguration {
|
||||||
private boolean callProcessRecordsEvenForEmptyRecordList;
|
private boolean callProcessRecordsEvenForEmptyRecordList;
|
||||||
private long parentShardPollIntervalMillis;
|
private long parentShardPollIntervalMillis;
|
||||||
private boolean cleanupLeasesUponShardCompletion;
|
private boolean cleanupLeasesUponShardCompletion;
|
||||||
|
private boolean ignoreUnexpectedChildShards;
|
||||||
private ClientConfiguration kinesisClientConfig;
|
private ClientConfiguration kinesisClientConfig;
|
||||||
private ClientConfiguration dynamoDBClientConfig;
|
private ClientConfiguration dynamoDBClientConfig;
|
||||||
private ClientConfiguration cloudWatchClientConfig;
|
private ClientConfiguration cloudWatchClientConfig;
|
||||||
|
|
@ -202,6 +229,31 @@ public class KinesisClientLibConfiguration {
|
||||||
// This is useful for optimizing deployments to large fleets working on a stable stream.
|
// This is useful for optimizing deployments to large fleets working on a stable stream.
|
||||||
private boolean skipShardSyncAtWorkerInitializationIfLeasesExist;
|
private boolean skipShardSyncAtWorkerInitializationIfLeasesExist;
|
||||||
private ShardPrioritization shardPrioritization;
|
private ShardPrioritization shardPrioritization;
|
||||||
|
private long shutdownGraceMillis;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private Optional<Integer> timeoutInSeconds = Optional.empty();
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private Optional<Integer> retryGetRecordsInSeconds = Optional.empty();
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private Optional<Integer> maxGetRecordsThreadPool = Optional.empty();
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private int maxLeaseRenewalThreads = DEFAULT_MAX_LEASE_RENEWAL_THREADS;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private RecordsFetcherFactory recordsFetcherFactory;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private Optional<Long> logWarningForTaskAfterMillis = Optional.empty();
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private long listShardsBackoffTimeInMillis = DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private int maxListShardsRetryAttempts = DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
|
|
@ -238,14 +290,31 @@ public class KinesisClientLibConfiguration {
|
||||||
AWSCredentialsProvider dynamoDBCredentialsProvider,
|
AWSCredentialsProvider dynamoDBCredentialsProvider,
|
||||||
AWSCredentialsProvider cloudWatchCredentialsProvider,
|
AWSCredentialsProvider cloudWatchCredentialsProvider,
|
||||||
String workerId) {
|
String workerId) {
|
||||||
this(applicationName, streamName, null, null, DEFAULT_INITIAL_POSITION_IN_STREAM, kinesisCredentialsProvider,
|
this(applicationName,
|
||||||
dynamoDBCredentialsProvider, cloudWatchCredentialsProvider, DEFAULT_FAILOVER_TIME_MILLIS, workerId,
|
streamName,
|
||||||
DEFAULT_MAX_RECORDS, DEFAULT_IDLETIME_BETWEEN_READS_MILLIS,
|
null,
|
||||||
DEFAULT_DONT_CALL_PROCESS_RECORDS_FOR_EMPTY_RECORD_LIST, DEFAULT_PARENT_SHARD_POLL_INTERVAL_MILLIS,
|
null,
|
||||||
DEFAULT_SHARD_SYNC_INTERVAL_MILLIS, DEFAULT_CLEANUP_LEASES_UPON_SHARDS_COMPLETION,
|
DEFAULT_INITIAL_POSITION_IN_STREAM,
|
||||||
new ClientConfiguration(), new ClientConfiguration(), new ClientConfiguration(),
|
kinesisCredentialsProvider,
|
||||||
DEFAULT_TASK_BACKOFF_TIME_MILLIS, DEFAULT_METRICS_BUFFER_TIME_MILLIS, DEFAULT_METRICS_MAX_QUEUE_SIZE,
|
dynamoDBCredentialsProvider,
|
||||||
DEFAULT_VALIDATE_SEQUENCE_NUMBER_BEFORE_CHECKPOINTING, null);
|
cloudWatchCredentialsProvider,
|
||||||
|
DEFAULT_FAILOVER_TIME_MILLIS,
|
||||||
|
workerId,
|
||||||
|
DEFAULT_MAX_RECORDS,
|
||||||
|
DEFAULT_IDLETIME_BETWEEN_READS_MILLIS,
|
||||||
|
DEFAULT_DONT_CALL_PROCESS_RECORDS_FOR_EMPTY_RECORD_LIST,
|
||||||
|
DEFAULT_PARENT_SHARD_POLL_INTERVAL_MILLIS,
|
||||||
|
DEFAULT_SHARD_SYNC_INTERVAL_MILLIS,
|
||||||
|
DEFAULT_CLEANUP_LEASES_UPON_SHARDS_COMPLETION,
|
||||||
|
new ClientConfiguration(),
|
||||||
|
new ClientConfiguration(),
|
||||||
|
new ClientConfiguration(),
|
||||||
|
DEFAULT_TASK_BACKOFF_TIME_MILLIS,
|
||||||
|
DEFAULT_METRICS_BUFFER_TIME_MILLIS,
|
||||||
|
DEFAULT_METRICS_MAX_QUEUE_SIZE,
|
||||||
|
DEFAULT_VALIDATE_SEQUENCE_NUMBER_BEFORE_CHECKPOINTING,
|
||||||
|
null,
|
||||||
|
DEFAULT_SHUTDOWN_GRACE_MILLIS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -280,32 +349,34 @@ public class KinesisClientLibConfiguration {
|
||||||
* with a call to Amazon Kinesis before checkpointing for calls to
|
* with a call to Amazon Kinesis before checkpointing for calls to
|
||||||
* {@link RecordProcessorCheckpointer#checkpoint(String)}
|
* {@link RecordProcessorCheckpointer#checkpoint(String)}
|
||||||
* @param regionName The region name for the service
|
* @param regionName The region name for the service
|
||||||
|
* @param shutdownGraceMillis The number of milliseconds before graceful shutdown terminates forcefully
|
||||||
*/
|
*/
|
||||||
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 26 LINES
|
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 26 LINES
|
||||||
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 26 LINES
|
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 26 LINES
|
||||||
public KinesisClientLibConfiguration(String applicationName,
|
public KinesisClientLibConfiguration(String applicationName,
|
||||||
String streamName,
|
String streamName,
|
||||||
String kinesisEndpoint,
|
String kinesisEndpoint,
|
||||||
InitialPositionInStream initialPositionInStream,
|
InitialPositionInStream initialPositionInStream,
|
||||||
AWSCredentialsProvider kinesisCredentialsProvider,
|
AWSCredentialsProvider kinesisCredentialsProvider,
|
||||||
AWSCredentialsProvider dynamoDBCredentialsProvider,
|
AWSCredentialsProvider dynamoDBCredentialsProvider,
|
||||||
AWSCredentialsProvider cloudWatchCredentialsProvider,
|
AWSCredentialsProvider cloudWatchCredentialsProvider,
|
||||||
long failoverTimeMillis,
|
long failoverTimeMillis,
|
||||||
String workerId,
|
String workerId,
|
||||||
int maxRecords,
|
int maxRecords,
|
||||||
long idleTimeBetweenReadsInMillis,
|
long idleTimeBetweenReadsInMillis,
|
||||||
boolean callProcessRecordsEvenForEmptyRecordList,
|
boolean callProcessRecordsEvenForEmptyRecordList,
|
||||||
long parentShardPollIntervalMillis,
|
long parentShardPollIntervalMillis,
|
||||||
long shardSyncIntervalMillis,
|
long shardSyncIntervalMillis,
|
||||||
boolean cleanupTerminatedShardsBeforeExpiry,
|
boolean cleanupTerminatedShardsBeforeExpiry,
|
||||||
ClientConfiguration kinesisClientConfig,
|
ClientConfiguration kinesisClientConfig,
|
||||||
ClientConfiguration dynamoDBClientConfig,
|
ClientConfiguration dynamoDBClientConfig,
|
||||||
ClientConfiguration cloudWatchClientConfig,
|
ClientConfiguration cloudWatchClientConfig,
|
||||||
long taskBackoffTimeMillis,
|
long taskBackoffTimeMillis,
|
||||||
long metricsBufferTimeMillis,
|
long metricsBufferTimeMillis,
|
||||||
int metricsMaxQueueSize,
|
int metricsMaxQueueSize,
|
||||||
boolean validateSequenceNumberBeforeCheckpointing,
|
boolean validateSequenceNumberBeforeCheckpointing,
|
||||||
String regionName) {
|
String regionName,
|
||||||
|
long shutdownGraceMillis) {
|
||||||
this(applicationName, streamName, kinesisEndpoint, null, initialPositionInStream, kinesisCredentialsProvider,
|
this(applicationName, streamName, kinesisEndpoint, null, initialPositionInStream, kinesisCredentialsProvider,
|
||||||
dynamoDBCredentialsProvider, cloudWatchCredentialsProvider, failoverTimeMillis, workerId,
|
dynamoDBCredentialsProvider, cloudWatchCredentialsProvider, failoverTimeMillis, workerId,
|
||||||
maxRecords, idleTimeBetweenReadsInMillis,
|
maxRecords, idleTimeBetweenReadsInMillis,
|
||||||
|
|
@ -313,7 +384,116 @@ public class KinesisClientLibConfiguration {
|
||||||
shardSyncIntervalMillis, cleanupTerminatedShardsBeforeExpiry,
|
shardSyncIntervalMillis, cleanupTerminatedShardsBeforeExpiry,
|
||||||
kinesisClientConfig, dynamoDBClientConfig, cloudWatchClientConfig,
|
kinesisClientConfig, dynamoDBClientConfig, cloudWatchClientConfig,
|
||||||
taskBackoffTimeMillis, metricsBufferTimeMillis, metricsMaxQueueSize,
|
taskBackoffTimeMillis, metricsBufferTimeMillis, metricsMaxQueueSize,
|
||||||
validateSequenceNumberBeforeCheckpointing, regionName);
|
validateSequenceNumberBeforeCheckpointing, regionName, shutdownGraceMillis);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param applicationName Name of the Kinesis application
|
||||||
|
* By default the application name is included in the user agent string used to make AWS requests. This
|
||||||
|
* can assist with troubleshooting (e.g. distinguish requests made by separate applications).
|
||||||
|
* @param streamName Name of the Kinesis stream
|
||||||
|
* @param kinesisEndpoint Kinesis endpoint
|
||||||
|
* @param dynamoDBEndpoint DynamoDB endpoint
|
||||||
|
* @param initialPositionInStream One of LATEST or TRIM_HORIZON. The KinesisClientLibrary will start fetching
|
||||||
|
* records from that location in the stream when an application starts up for the first time and there
|
||||||
|
* are no checkpoints. If there are checkpoints, then we start from the checkpoint position.
|
||||||
|
* @param kinesisCredentialsProvider Provides credentials used to access Kinesis
|
||||||
|
* @param dynamoDBCredentialsProvider Provides credentials used to access DynamoDB
|
||||||
|
* @param cloudWatchCredentialsProvider Provides credentials used to access CloudWatch
|
||||||
|
* @param failoverTimeMillis Lease duration (leases not renewed within this period will be claimed by others)
|
||||||
|
* @param workerId Used to distinguish different workers/processes of a Kinesis application
|
||||||
|
* @param maxRecords Max records to read per Kinesis getRecords() call
|
||||||
|
* @param idleTimeBetweenReadsInMillis Idle time between calls to fetch data from Kinesis
|
||||||
|
* @param callProcessRecordsEvenForEmptyRecordList Call the IRecordProcessor::processRecords() API even if
|
||||||
|
* GetRecords returned an empty record list.
|
||||||
|
* @param parentShardPollIntervalMillis Wait for this long between polls to check if parent shards are done
|
||||||
|
* @param shardSyncIntervalMillis Time between tasks to sync leases and Kinesis shards
|
||||||
|
* @param cleanupTerminatedShardsBeforeExpiry Clean up shards we've finished processing (don't wait for expiration
|
||||||
|
* in Kinesis)
|
||||||
|
* @param kinesisClientConfig Client Configuration used by Kinesis client
|
||||||
|
* @param dynamoDBClientConfig Client Configuration used by DynamoDB client
|
||||||
|
* @param cloudWatchClientConfig Client Configuration used by CloudWatch client
|
||||||
|
* @param taskBackoffTimeMillis Backoff period when tasks encounter an exception
|
||||||
|
* @param metricsBufferTimeMillis Metrics are buffered for at most this long before publishing to CloudWatch
|
||||||
|
* @param metricsMaxQueueSize Max number of metrics to buffer before publishing to CloudWatch
|
||||||
|
* @param validateSequenceNumberBeforeCheckpointing whether KCL should validate client provided sequence numbers
|
||||||
|
* with a call to Amazon Kinesis before checkpointing for calls to
|
||||||
|
* {@link RecordProcessorCheckpointer#checkpoint(String)}
|
||||||
|
* @param regionName The region name for the service
|
||||||
|
*/
|
||||||
|
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 26 LINES
|
||||||
|
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 26 LINES
|
||||||
|
public KinesisClientLibConfiguration(String applicationName,
|
||||||
|
String streamName,
|
||||||
|
String kinesisEndpoint,
|
||||||
|
String dynamoDBEndpoint,
|
||||||
|
InitialPositionInStream initialPositionInStream,
|
||||||
|
AWSCredentialsProvider kinesisCredentialsProvider,
|
||||||
|
AWSCredentialsProvider dynamoDBCredentialsProvider,
|
||||||
|
AWSCredentialsProvider cloudWatchCredentialsProvider,
|
||||||
|
long failoverTimeMillis,
|
||||||
|
String workerId,
|
||||||
|
int maxRecords,
|
||||||
|
long idleTimeBetweenReadsInMillis,
|
||||||
|
boolean callProcessRecordsEvenForEmptyRecordList,
|
||||||
|
long parentShardPollIntervalMillis,
|
||||||
|
long shardSyncIntervalMillis,
|
||||||
|
boolean cleanupTerminatedShardsBeforeExpiry,
|
||||||
|
ClientConfiguration kinesisClientConfig,
|
||||||
|
ClientConfiguration dynamoDBClientConfig,
|
||||||
|
ClientConfiguration cloudWatchClientConfig,
|
||||||
|
long taskBackoffTimeMillis,
|
||||||
|
long metricsBufferTimeMillis,
|
||||||
|
int metricsMaxQueueSize,
|
||||||
|
boolean validateSequenceNumberBeforeCheckpointing,
|
||||||
|
String regionName,
|
||||||
|
long shutdownGraceMillis) {
|
||||||
|
// Check following values are greater than zero
|
||||||
|
checkIsValuePositive("FailoverTimeMillis", failoverTimeMillis);
|
||||||
|
checkIsValuePositive("IdleTimeBetweenReadsInMillis", idleTimeBetweenReadsInMillis);
|
||||||
|
checkIsValuePositive("ParentShardPollIntervalMillis", parentShardPollIntervalMillis);
|
||||||
|
checkIsValuePositive("ShardSyncIntervalMillis", shardSyncIntervalMillis);
|
||||||
|
checkIsValuePositive("MaxRecords", (long) maxRecords);
|
||||||
|
checkIsValuePositive("TaskBackoffTimeMillis", taskBackoffTimeMillis);
|
||||||
|
checkIsValuePositive("MetricsBufferTimeMills", metricsBufferTimeMillis);
|
||||||
|
checkIsValuePositive("MetricsMaxQueueSize", (long) metricsMaxQueueSize);
|
||||||
|
checkIsValuePositive("ShutdownGraceMillis", shutdownGraceMillis);
|
||||||
|
this.applicationName = applicationName;
|
||||||
|
this.tableName = applicationName;
|
||||||
|
this.streamName = streamName;
|
||||||
|
this.kinesisEndpoint = kinesisEndpoint;
|
||||||
|
this.dynamoDBEndpoint = dynamoDBEndpoint;
|
||||||
|
this.initialPositionInStream = initialPositionInStream;
|
||||||
|
this.kinesisCredentialsProvider = kinesisCredentialsProvider;
|
||||||
|
this.dynamoDBCredentialsProvider = dynamoDBCredentialsProvider;
|
||||||
|
this.cloudWatchCredentialsProvider = cloudWatchCredentialsProvider;
|
||||||
|
this.failoverTimeMillis = failoverTimeMillis;
|
||||||
|
this.maxRecords = maxRecords;
|
||||||
|
this.idleTimeBetweenReadsInMillis = idleTimeBetweenReadsInMillis;
|
||||||
|
this.callProcessRecordsEvenForEmptyRecordList = callProcessRecordsEvenForEmptyRecordList;
|
||||||
|
this.parentShardPollIntervalMillis = parentShardPollIntervalMillis;
|
||||||
|
this.shardSyncIntervalMillis = shardSyncIntervalMillis;
|
||||||
|
this.cleanupLeasesUponShardCompletion = cleanupTerminatedShardsBeforeExpiry;
|
||||||
|
this.workerIdentifier = workerId;
|
||||||
|
this.kinesisClientConfig = checkAndAppendKinesisClientLibUserAgent(kinesisClientConfig);
|
||||||
|
this.dynamoDBClientConfig = checkAndAppendKinesisClientLibUserAgent(dynamoDBClientConfig);
|
||||||
|
this.cloudWatchClientConfig = checkAndAppendKinesisClientLibUserAgent(cloudWatchClientConfig);
|
||||||
|
this.taskBackoffTimeMillis = taskBackoffTimeMillis;
|
||||||
|
this.metricsBufferTimeMillis = metricsBufferTimeMillis;
|
||||||
|
this.metricsMaxQueueSize = metricsMaxQueueSize;
|
||||||
|
this.metricsLevel = DEFAULT_METRICS_LEVEL;
|
||||||
|
this.metricsEnabledDimensions = DEFAULT_METRICS_ENABLED_DIMENSIONS;
|
||||||
|
this.validateSequenceNumberBeforeCheckpointing = validateSequenceNumberBeforeCheckpointing;
|
||||||
|
this.regionName = regionName;
|
||||||
|
this.maxLeasesForWorker = DEFAULT_MAX_LEASES_FOR_WORKER;
|
||||||
|
this.maxLeasesToStealAtOneTime = DEFAULT_MAX_LEASES_TO_STEAL_AT_ONE_TIME;
|
||||||
|
this.initialLeaseTableReadCapacity = DEFAULT_INITIAL_LEASE_TABLE_READ_CAPACITY;
|
||||||
|
this.initialLeaseTableWriteCapacity = DEFAULT_INITIAL_LEASE_TABLE_WRITE_CAPACITY;
|
||||||
|
this.initialPositionInStreamExtended =
|
||||||
|
InitialPositionInStreamExtended.newInitialPosition(initialPositionInStream);
|
||||||
|
this.skipShardSyncAtWorkerInitializationIfLeasesExist = DEFAULT_SKIP_SHARD_SYNC_AT_STARTUP_IF_LEASES_EXIST;
|
||||||
|
this.shardPrioritization = DEFAULT_SHARD_PRIORITIZATION;
|
||||||
|
this.recordsFetcherFactory = new SimpleRecordsFetcherFactory();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -375,7 +555,8 @@ public class KinesisClientLibConfiguration {
|
||||||
long metricsBufferTimeMillis,
|
long metricsBufferTimeMillis,
|
||||||
int metricsMaxQueueSize,
|
int metricsMaxQueueSize,
|
||||||
boolean validateSequenceNumberBeforeCheckpointing,
|
boolean validateSequenceNumberBeforeCheckpointing,
|
||||||
String regionName) {
|
String regionName,
|
||||||
|
RecordsFetcherFactory recordsFetcherFactory) {
|
||||||
// Check following values are greater than zero
|
// Check following values are greater than zero
|
||||||
checkIsValuePositive("FailoverTimeMillis", failoverTimeMillis);
|
checkIsValuePositive("FailoverTimeMillis", failoverTimeMillis);
|
||||||
checkIsValuePositive("IdleTimeBetweenReadsInMillis", idleTimeBetweenReadsInMillis);
|
checkIsValuePositive("IdleTimeBetweenReadsInMillis", idleTimeBetweenReadsInMillis);
|
||||||
|
|
@ -385,7 +566,6 @@ public class KinesisClientLibConfiguration {
|
||||||
checkIsValuePositive("TaskBackoffTimeMillis", taskBackoffTimeMillis);
|
checkIsValuePositive("TaskBackoffTimeMillis", taskBackoffTimeMillis);
|
||||||
checkIsValuePositive("MetricsBufferTimeMills", metricsBufferTimeMillis);
|
checkIsValuePositive("MetricsBufferTimeMills", metricsBufferTimeMillis);
|
||||||
checkIsValuePositive("MetricsMaxQueueSize", (long) metricsMaxQueueSize);
|
checkIsValuePositive("MetricsMaxQueueSize", (long) metricsMaxQueueSize);
|
||||||
checkIsRegionNameValid(regionName);
|
|
||||||
this.applicationName = applicationName;
|
this.applicationName = applicationName;
|
||||||
this.tableName = applicationName;
|
this.tableName = applicationName;
|
||||||
this.streamName = streamName;
|
this.streamName = streamName;
|
||||||
|
|
@ -421,6 +601,8 @@ public class KinesisClientLibConfiguration {
|
||||||
InitialPositionInStreamExtended.newInitialPosition(initialPositionInStream);
|
InitialPositionInStreamExtended.newInitialPosition(initialPositionInStream);
|
||||||
this.skipShardSyncAtWorkerInitializationIfLeasesExist = DEFAULT_SKIP_SHARD_SYNC_AT_STARTUP_IF_LEASES_EXIST;
|
this.skipShardSyncAtWorkerInitializationIfLeasesExist = DEFAULT_SKIP_SHARD_SYNC_AT_STARTUP_IF_LEASES_EXIST;
|
||||||
this.shardPrioritization = DEFAULT_SHARD_PRIORITIZATION;
|
this.shardPrioritization = DEFAULT_SHARD_PRIORITIZATION;
|
||||||
|
this.recordsFetcherFactory = recordsFetcherFactory;
|
||||||
|
this.shutdownGraceMillis = shutdownGraceMillis;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if value is positive, otherwise throw an exception
|
// Check if value is positive, otherwise throw an exception
|
||||||
|
|
@ -446,12 +628,6 @@ public class KinesisClientLibConfiguration {
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void checkIsRegionNameValid(String regionNameToCheck) {
|
|
||||||
if (regionNameToCheck != null && RegionUtils.getRegion(regionNameToCheck) == null) {
|
|
||||||
throw new IllegalArgumentException("The specified region name is not valid");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Name of the application
|
* @return Name of the application
|
||||||
*/
|
*/
|
||||||
|
|
@ -635,6 +811,13 @@ public class KinesisClientLibConfiguration {
|
||||||
return cleanupLeasesUponShardCompletion;
|
return cleanupLeasesUponShardCompletion;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return true if we should ignore child shards which have open parents
|
||||||
|
*/
|
||||||
|
public boolean shouldIgnoreUnexpectedChildShards() {
|
||||||
|
return ignoreUnexpectedChildShards;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return true if KCL should validate client provided sequence numbers with a call to Amazon Kinesis before
|
* @return true if KCL should validate client provided sequence numbers with a call to Amazon Kinesis before
|
||||||
* checkpointing for calls to {@link RecordProcessorCheckpointer#checkpoint(String)}
|
* checkpointing for calls to {@link RecordProcessorCheckpointer#checkpoint(String)}
|
||||||
|
|
@ -708,6 +891,14 @@ public class KinesisClientLibConfiguration {
|
||||||
return shardPrioritization;
|
return shardPrioritization;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Graceful shutdown timeout
|
||||||
|
*/
|
||||||
|
public long getShutdownGraceMillis() {
|
||||||
|
return shutdownGraceMillis;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 190 LINES
|
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 190 LINES
|
||||||
/**
|
/**
|
||||||
* @param tableName name of the lease table in DynamoDB
|
* @param tableName name of the lease table in DynamoDB
|
||||||
|
|
@ -790,7 +981,23 @@ public class KinesisClientLibConfiguration {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param idleTimeBetweenReadsInMillis Idle time between calls to fetch data from Kinesis
|
* Controls how long the KCL will sleep if no records are returned from Kinesis
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This value is only used when no records are returned; if records are returned, the {@link com.amazonaws.services.kinesis.clientlibrary.lib.worker.ProcessTask} will
|
||||||
|
* immediately retrieve the next set of records after the call to
|
||||||
|
* {@link com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IRecordProcessor#processRecords(ProcessRecordsInput)}
|
||||||
|
* has returned. Setting this value to high may result in the KCL being unable to catch up. If you are changing this
|
||||||
|
* value it's recommended that you enable {@link #withCallProcessRecordsEvenForEmptyRecordList(boolean)}, and
|
||||||
|
* monitor how far behind the records retrieved are by inspecting
|
||||||
|
* {@link com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput#getMillisBehindLatest()}, and the
|
||||||
|
* <a href=
|
||||||
|
* "http://docs.aws.amazon.com/streams/latest/dev/monitoring-with-cloudwatch.html#kinesis-metrics-stream">CloudWatch
|
||||||
|
* Metric: GetRecords.MillisBehindLatest</a>
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @param idleTimeBetweenReadsInMillis
|
||||||
|
* how long to sleep between GetRecords calls when no records are returned.
|
||||||
* @return KinesisClientLibConfiguration
|
* @return KinesisClientLibConfiguration
|
||||||
*/
|
*/
|
||||||
public KinesisClientLibConfiguration withIdleTimeBetweenReadsInMillis(long idleTimeBetweenReadsInMillis) {
|
public KinesisClientLibConfiguration withIdleTimeBetweenReadsInMillis(long idleTimeBetweenReadsInMillis) {
|
||||||
|
|
@ -831,6 +1038,16 @@ public class KinesisClientLibConfiguration {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param ignoreUnexpectedChildShards Ignore child shards with open parents.
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withIgnoreUnexpectedChildShards(
|
||||||
|
boolean ignoreUnexpectedChildShards) {
|
||||||
|
this.ignoreUnexpectedChildShards = ignoreUnexpectedChildShards;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param clientConfig Common client configuration used by Kinesis/DynamoDB/CloudWatch client
|
* @param clientConfig Common client configuration used by Kinesis/DynamoDB/CloudWatch client
|
||||||
* @return KinesisClientLibConfiguration
|
* @return KinesisClientLibConfiguration
|
||||||
|
|
@ -989,7 +1206,6 @@ public class KinesisClientLibConfiguration {
|
||||||
*/
|
*/
|
||||||
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 2 LINES
|
// CHECKSTYLE:IGNORE HiddenFieldCheck FOR NEXT 2 LINES
|
||||||
public KinesisClientLibConfiguration withRegionName(String regionName) {
|
public KinesisClientLibConfiguration withRegionName(String regionName) {
|
||||||
checkIsRegionNameValid(regionName);
|
|
||||||
this.regionName = regionName;
|
this.regionName = regionName;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
@ -1058,4 +1274,146 @@ public class KinesisClientLibConfiguration {
|
||||||
this.shardPrioritization = shardPrioritization;
|
this.shardPrioritization = shardPrioritization;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the size of the thread pool that will be used to renew leases.
|
||||||
|
*
|
||||||
|
* Setting this to low may starve the lease renewal process, and cause the worker to lose leases at a higher rate.
|
||||||
|
*
|
||||||
|
* @param maxLeaseRenewalThreads
|
||||||
|
* the maximum size of the lease renewal thread pool
|
||||||
|
* @throws IllegalArgumentException
|
||||||
|
* if maxLeaseRenewalThreads is <= 0
|
||||||
|
* @return this configuration object
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxLeaseRenewalThreads(int maxLeaseRenewalThreads) {
|
||||||
|
Validate.isTrue(maxLeaseRenewalThreads > 2,
|
||||||
|
"The maximum number of lease renewal threads must be greater than or equal to 2.");
|
||||||
|
this.maxLeaseRenewalThreads = maxLeaseRenewalThreads;
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param retryGetRecordsInSeconds the time in seconds to wait before the worker retries to get a record.
|
||||||
|
* @return this configuration object.
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withRetryGetRecordsInSeconds(final int retryGetRecordsInSeconds) {
|
||||||
|
checkIsValuePositive("retryGetRecordsInSeconds", retryGetRecordsInSeconds);
|
||||||
|
this.retryGetRecordsInSeconds = Optional.of(retryGetRecordsInSeconds);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*@param maxGetRecordsThreadPool the max number of threads in the getRecords thread pool.
|
||||||
|
*@return this configuration object
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxGetRecordsThreadPool(final int maxGetRecordsThreadPool) {
|
||||||
|
checkIsValuePositive("maxGetRecordsThreadPool", maxGetRecordsThreadPool);
|
||||||
|
this.maxGetRecordsThreadPool = Optional.of(maxGetRecordsThreadPool);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param maxPendingProcessRecordsInput The max number of ProcessRecordsInput that can be stored in the cache before
|
||||||
|
* blocking
|
||||||
|
* @return this configuration object
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxPendingProcessRecordsInput(final int maxPendingProcessRecordsInput) {
|
||||||
|
checkIsValuePositive("maxPendingProcessRecordsInput", maxPendingProcessRecordsInput);
|
||||||
|
this.recordsFetcherFactory.setMaxPendingProcessRecordsInput(maxPendingProcessRecordsInput);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param maxCacheByteSize Max byte size for the cache at any given point of time. After this threshold is crossed
|
||||||
|
* the KinesisDataFetcher will be blocked until the cache has more space available.
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxCacheByteSize(final int maxCacheByteSize) {
|
||||||
|
checkIsValuePositive("maxCacheByteSize", maxCacheByteSize);
|
||||||
|
this.recordsFetcherFactory.setMaxByteSize(maxCacheByteSize);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param dataFetchingStrategy The strategy for fetching data from kinesis.
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withDataFetchingStrategy(String dataFetchingStrategy) {
|
||||||
|
this.recordsFetcherFactory.setDataFetchingStrategy(DataFetchingStrategy.valueOf(dataFetchingStrategy.toUpperCase()));
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param maxRecordsCount The maximum number of records in the cache, accross all ProcessRecordInput objects
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxRecordsCount(final int maxRecordsCount) {
|
||||||
|
checkIsValuePositive("maxRecordsCount", maxRecordsCount);
|
||||||
|
this.recordsFetcherFactory.setMaxRecordsCount(maxRecordsCount);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param timeoutInSeconds The timeout in seconds to wait for the MultiLangProtocol to wait for
|
||||||
|
*/
|
||||||
|
public void withTimeoutInSeconds(final int timeoutInSeconds) {
|
||||||
|
this.timeoutInSeconds = Optional.of(timeoutInSeconds);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param shutdownGraceMillis Time before gracefully shutdown forcefully terminates
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withShutdownGraceMillis(long shutdownGraceMillis) {
|
||||||
|
checkIsValuePositive("ShutdownGraceMillis", shutdownGraceMillis);
|
||||||
|
this.shutdownGraceMillis = shutdownGraceMillis;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param idleMillisBetweenCalls Idle time between 2 getcalls from the data fetcher.
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withIdleMillisBetweenCalls(long idleMillisBetweenCalls) {
|
||||||
|
checkIsValuePositive("IdleMillisBetweenCalls", idleMillisBetweenCalls);
|
||||||
|
this.recordsFetcherFactory.setIdleMillisBetweenCalls(idleMillisBetweenCalls);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param logWarningForTaskAfterMillis Logs warn message if as task is held in a task for more than the set
|
||||||
|
* time.
|
||||||
|
* @return KinesisClientLibConfiguration
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withLogWarningForTaskAfterMillis(long logWarningForTaskAfterMillis) {
|
||||||
|
checkIsValuePositive("LogProcessTaskStatusAfterInMillis", logWarningForTaskAfterMillis);
|
||||||
|
this.logWarningForTaskAfterMillis = Optional.of(logWarningForTaskAfterMillis);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param listShardsBackoffTimeInMillis Max sleep between two listShards call when throttled
|
||||||
|
* in {@link com.amazonaws.services.kinesis.clientlibrary.proxies.KinesisProxy}.
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withListShardsBackoffTimeInMillis(long listShardsBackoffTimeInMillis) {
|
||||||
|
checkIsValuePositive("listShardsBackoffTimeInMillis", listShardsBackoffTimeInMillis);
|
||||||
|
this.listShardsBackoffTimeInMillis = listShardsBackoffTimeInMillis;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param maxListShardsRetryAttempts Max number of retries for listShards when throttled
|
||||||
|
* in {@link com.amazonaws.services.kinesis.clientlibrary.proxies.KinesisProxy}.
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public KinesisClientLibConfiguration withMaxListShardsRetryAttempts(int maxListShardsRetryAttempts) {
|
||||||
|
checkIsValuePositive("maxListShardsRetryAttempts", maxListShardsRetryAttempts);
|
||||||
|
this.maxListShardsRetryAttempts = maxListShardsRetryAttempts;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Objects;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
|
@ -30,6 +31,7 @@ import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.internal.KinesisClientLibIOException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.internal.KinesisClientLibIOException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.Checkpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
import com.amazonaws.services.kinesis.leases.exceptions.DependencyException;
|
import com.amazonaws.services.kinesis.leases.exceptions.DependencyException;
|
||||||
import com.amazonaws.services.kinesis.leases.exceptions.InvalidStateException;
|
import com.amazonaws.services.kinesis.leases.exceptions.InvalidStateException;
|
||||||
|
|
@ -99,9 +101,10 @@ class KinesisClientLibLeaseCoordinator extends LeaseCoordinator<KinesisClientLea
|
||||||
long epsilonMillis,
|
long epsilonMillis,
|
||||||
int maxLeasesForWorker,
|
int maxLeasesForWorker,
|
||||||
int maxLeasesToStealAtOneTime,
|
int maxLeasesToStealAtOneTime,
|
||||||
|
int maxLeaseRenewerThreadCount,
|
||||||
IMetricsFactory metricsFactory) {
|
IMetricsFactory metricsFactory) {
|
||||||
super(leaseManager, workerIdentifier, leaseDurationMillis, epsilonMillis, maxLeasesForWorker,
|
super(leaseManager, workerIdentifier, leaseDurationMillis, epsilonMillis, maxLeasesForWorker,
|
||||||
maxLeasesToStealAtOneTime, metricsFactory);
|
maxLeasesToStealAtOneTime, maxLeaseRenewerThreadCount, metricsFactory);
|
||||||
this.leaseManager = leaseManager;
|
this.leaseManager = leaseManager;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -156,6 +159,7 @@ class KinesisClientLibLeaseCoordinator extends LeaseCoordinator<KinesisClientLea
|
||||||
}
|
}
|
||||||
|
|
||||||
lease.setCheckpoint(checkpoint);
|
lease.setCheckpoint(checkpoint);
|
||||||
|
lease.setPendingCheckpoint(null);
|
||||||
lease.setOwnerSwitchesSinceCheckpoint(0L);
|
lease.setOwnerSwitchesSinceCheckpoint(0L);
|
||||||
|
|
||||||
return updateLease(lease, concurrencyToken);
|
return updateLease(lease, concurrencyToken);
|
||||||
|
|
@ -197,6 +201,75 @@ class KinesisClientLibLeaseCoordinator extends LeaseCoordinator<KinesisClientLea
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Records pending checkpoint for a shard. Does not modify checkpoint or ownerSwitchesSinceCheckpoint.
|
||||||
|
*
|
||||||
|
* @param shardId shardId to update the checkpoint for
|
||||||
|
* @param pendingCheckpoint pending checkpoint value to set, not null
|
||||||
|
* @param concurrencyToken obtained by calling Lease.getConcurrencyToken for a currently held lease
|
||||||
|
*
|
||||||
|
* @return true if setting the pending checkpoint succeeded, false otherwise
|
||||||
|
*
|
||||||
|
* @throws InvalidStateException if lease table does not exist
|
||||||
|
* @throws ProvisionedThroughputException if DynamoDB update fails due to lack of capacity
|
||||||
|
* @throws DependencyException if DynamoDB update fails in an unexpected way
|
||||||
|
*/
|
||||||
|
boolean prepareCheckpoint(String shardId, ExtendedSequenceNumber pendingCheckpoint, UUID concurrencyToken)
|
||||||
|
throws DependencyException, InvalidStateException, ProvisionedThroughputException {
|
||||||
|
KinesisClientLease lease = getCurrentlyHeldLease(shardId);
|
||||||
|
if (lease == null) {
|
||||||
|
LOG.info(String.format(
|
||||||
|
"Worker %s could not prepare checkpoint for shard %s because it does not hold the lease",
|
||||||
|
getWorkerIdentifier(),
|
||||||
|
shardId));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
lease.setPendingCheckpoint(Objects.requireNonNull(pendingCheckpoint, "pendingCheckpoint should not be null"));
|
||||||
|
return updateLease(lease, concurrencyToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void prepareCheckpoint(String shardId,
|
||||||
|
ExtendedSequenceNumber pendingCheckpointValue,
|
||||||
|
String concurrencyToken) throws KinesisClientLibException {
|
||||||
|
try {
|
||||||
|
boolean wasSuccessful =
|
||||||
|
prepareCheckpoint(shardId, pendingCheckpointValue, UUID.fromString(concurrencyToken));
|
||||||
|
if (!wasSuccessful) {
|
||||||
|
throw new ShutdownException(
|
||||||
|
"Can't prepare checkpoint - instance doesn't hold the lease for this shard");
|
||||||
|
}
|
||||||
|
} catch (ProvisionedThroughputException e) {
|
||||||
|
throw new ThrottlingException("Got throttled while preparing checkpoint.", e);
|
||||||
|
} catch (InvalidStateException e) {
|
||||||
|
String message = "Unable to prepare checkpoint for shardId " + shardId;
|
||||||
|
LOG.error(message, e);
|
||||||
|
throw new com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException(message, e);
|
||||||
|
} catch (DependencyException e) {
|
||||||
|
throw new KinesisClientLibDependencyException("Unable to prepare checkpoint for shardId " + shardId, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Checkpoint getCheckpointObject(String shardId) throws KinesisClientLibException {
|
||||||
|
try {
|
||||||
|
KinesisClientLease lease = leaseManager.getLease(shardId);
|
||||||
|
return new Checkpoint(lease.getCheckpoint(), lease.getPendingCheckpoint());
|
||||||
|
} catch (DependencyException | InvalidStateException | ProvisionedThroughputException e) {
|
||||||
|
String message = "Unable to fetch checkpoint for shardId " + shardId;
|
||||||
|
LOG.error(message, e);
|
||||||
|
throw new KinesisClientLibIOException(message, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Current shard/lease assignments
|
* @return Current shard/lease assignments
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1,31 +1,37 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
|
||||||
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
|
||||||
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.SentinelCheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.SentinelCheckpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.proxies.MetricsCollectingKinesisProxyDecorator;
|
import com.amazonaws.services.kinesis.clientlibrary.proxies.MetricsCollectingKinesisProxyDecorator;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
||||||
|
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
||||||
|
import com.amazonaws.util.CollectionUtils;
|
||||||
|
import com.google.common.collect.Iterables;
|
||||||
|
|
||||||
import java.util.Date;
|
import lombok.Data;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to get data from Amazon Kinesis. Tracks iterator state internally.
|
* Used to get data from Amazon Kinesis. Tracks iterator state internally.
|
||||||
|
|
@ -39,6 +45,8 @@ class KinesisDataFetcher {
|
||||||
private final String shardId;
|
private final String shardId;
|
||||||
private boolean isShardEndReached;
|
private boolean isShardEndReached;
|
||||||
private boolean isInitialized;
|
private boolean isInitialized;
|
||||||
|
private String lastKnownSequenceNumber;
|
||||||
|
private InitialPositionInStreamExtended initialPositionInStream;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
@ -47,8 +55,7 @@ class KinesisDataFetcher {
|
||||||
*/
|
*/
|
||||||
public KinesisDataFetcher(IKinesisProxy kinesisProxy, ShardInfo shardInfo) {
|
public KinesisDataFetcher(IKinesisProxy kinesisProxy, ShardInfo shardInfo) {
|
||||||
this.shardId = shardInfo.getShardId();
|
this.shardId = shardInfo.getShardId();
|
||||||
this.kinesisProxy =
|
this.kinesisProxy = new MetricsCollectingKinesisProxyDecorator("KinesisDataFetcher", kinesisProxy, this.shardId);
|
||||||
new MetricsCollectingKinesisProxyDecorator("KinesisDataFetcher", kinesisProxy, this.shardId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -57,28 +64,68 @@ class KinesisDataFetcher {
|
||||||
* @param maxRecords Max records to fetch
|
* @param maxRecords Max records to fetch
|
||||||
* @return list of records of up to maxRecords size
|
* @return list of records of up to maxRecords size
|
||||||
*/
|
*/
|
||||||
public GetRecordsResult getRecords(int maxRecords) {
|
public DataFetcherResult getRecords(int maxRecords) {
|
||||||
if (!isInitialized) {
|
if (!isInitialized) {
|
||||||
throw new IllegalArgumentException("KinesisDataFetcher.getRecords called before initialization.");
|
throw new IllegalArgumentException("KinesisDataFetcher.getRecords called before initialization.");
|
||||||
}
|
}
|
||||||
|
|
||||||
GetRecordsResult response = null;
|
|
||||||
if (nextIterator != null) {
|
if (nextIterator != null) {
|
||||||
try {
|
try {
|
||||||
response = kinesisProxy.get(nextIterator, maxRecords);
|
return new AdvancingResult(kinesisProxy.get(nextIterator, maxRecords));
|
||||||
nextIterator = response.getNextShardIterator();
|
|
||||||
} catch (ResourceNotFoundException e) {
|
} catch (ResourceNotFoundException e) {
|
||||||
LOG.info("Caught ResourceNotFoundException when fetching records for shard " + shardId);
|
LOG.info("Caught ResourceNotFoundException when fetching records for shard " + shardId);
|
||||||
nextIterator = null;
|
return TERMINAL_RESULT;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return TERMINAL_RESULT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final DataFetcherResult TERMINAL_RESULT = new DataFetcherResult() {
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult getResult() {
|
||||||
|
return new GetRecordsResult().withMillisBehindLatest(null).withRecords(Collections.emptyList())
|
||||||
|
.withNextShardIterator(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult accept() {
|
||||||
|
isShardEndReached = true;
|
||||||
|
return getResult();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isShardEnd() {
|
||||||
|
return isShardEndReached;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
@Data
|
||||||
|
class AdvancingResult implements DataFetcherResult {
|
||||||
|
|
||||||
|
final GetRecordsResult result;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult getResult() {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult accept() {
|
||||||
|
nextIterator = result.getNextShardIterator();
|
||||||
|
if (!CollectionUtils.isNullOrEmpty(result.getRecords())) {
|
||||||
|
lastKnownSequenceNumber = Iterables.getLast(result.getRecords()).getSequenceNumber();
|
||||||
}
|
}
|
||||||
if (nextIterator == null) {
|
if (nextIterator == null) {
|
||||||
isShardEndReached = true;
|
isShardEndReached = true;
|
||||||
}
|
}
|
||||||
} else {
|
return getResult();
|
||||||
isShardEndReached = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return response;
|
@Override
|
||||||
|
public boolean isShardEnd() {
|
||||||
|
return isShardEndReached;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -122,6 +169,8 @@ class KinesisDataFetcher {
|
||||||
if (nextIterator == null) {
|
if (nextIterator == null) {
|
||||||
isShardEndReached = true;
|
isShardEndReached = true;
|
||||||
}
|
}
|
||||||
|
this.lastKnownSequenceNumber = sequenceNumber;
|
||||||
|
this.initialPositionInStream = initialPositionInStream;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -178,6 +227,17 @@ class KinesisDataFetcher {
|
||||||
return iterator;
|
return iterator;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets a new iterator from the last known sequence number i.e. the sequence number of the last record from the last
|
||||||
|
* getRecords call.
|
||||||
|
*/
|
||||||
|
public void restartIterator() {
|
||||||
|
if (StringUtils.isEmpty(lastKnownSequenceNumber) || initialPositionInStream == null) {
|
||||||
|
throw new IllegalStateException("Make sure to initialize the KinesisDataFetcher before restarting the iterator.");
|
||||||
|
}
|
||||||
|
advanceIteratorTo(lastKnownSequenceNumber, initialPositionInStream);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the shardEndReached
|
* @return the shardEndReached
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,16 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
public class NoOpWorkerStateChangeListener implements WorkerStateChangeListener {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Empty constructor for NoOp Worker State Change Listener
|
||||||
|
*/
|
||||||
|
public NoOpWorkerStateChangeListener() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onWorkerStateChange(WorkerState newState) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,268 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.Instant;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.Validate;
|
||||||
|
|
||||||
|
import com.amazonaws.SdkClientException;
|
||||||
|
import com.amazonaws.services.cloudwatch.model.StandardUnit;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.ThreadSafeMetricsDelegatingFactory;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
||||||
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
import lombok.NonNull;
|
||||||
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This is the prefetch caching class, this class spins up a thread if prefetching is enabled. That thread fetches the
|
||||||
|
* next set of records and stores it in the cache. The size of the cache is limited by setting
|
||||||
|
* maxPendingProcessRecordsInput i.e. the maximum number of GetRecordsResult that the cache can store, maxByteSize
|
||||||
|
* i.e. the byte size of the records stored in the cache and maxRecordsCount i.e. the max number of records that should
|
||||||
|
* be present in the cache across multiple GetRecordsResult object. If no data is available in the cache, the call from
|
||||||
|
* the record processor is blocked till records are retrieved from Kinesis.
|
||||||
|
*/
|
||||||
|
@CommonsLog
|
||||||
|
public class PrefetchGetRecordsCache implements GetRecordsCache {
|
||||||
|
private static final String EXPIRED_ITERATOR_METRIC = "ExpiredIterator";
|
||||||
|
LinkedBlockingQueue<ProcessRecordsInput> getRecordsResultQueue;
|
||||||
|
private int maxPendingProcessRecordsInput;
|
||||||
|
private int maxByteSize;
|
||||||
|
private int maxRecordsCount;
|
||||||
|
private final int maxRecordsPerCall;
|
||||||
|
private final GetRecordsRetrievalStrategy getRecordsRetrievalStrategy;
|
||||||
|
private final ExecutorService executorService;
|
||||||
|
private final IMetricsFactory metricsFactory;
|
||||||
|
private final long idleMillisBetweenCalls;
|
||||||
|
private Instant lastSuccessfulCall;
|
||||||
|
private final DefaultGetRecordsCacheDaemon defaultGetRecordsCacheDaemon;
|
||||||
|
private PrefetchCounters prefetchCounters;
|
||||||
|
private boolean started = false;
|
||||||
|
private final String operation;
|
||||||
|
private final KinesisDataFetcher dataFetcher;
|
||||||
|
private final String shardId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor for the PrefetchGetRecordsCache. This cache prefetches records from Kinesis and stores them in a
|
||||||
|
* LinkedBlockingQueue.
|
||||||
|
*
|
||||||
|
* @see com.amazonaws.services.kinesis.clientlibrary.lib.worker.PrefetchGetRecordsCache
|
||||||
|
*
|
||||||
|
* @param maxPendingProcessRecordsInput Max number of ProcessRecordsInput that can be held in the cache before
|
||||||
|
* blocking
|
||||||
|
* @param maxByteSize Max byte size of the queue before blocking next get records call
|
||||||
|
* @param maxRecordsCount Max number of records in the queue across all ProcessRecordInput objects
|
||||||
|
* @param maxRecordsPerCall Max records to be returned per call
|
||||||
|
* @param getRecordsRetrievalStrategy Retrieval strategy for the get records call
|
||||||
|
* @param executorService Executor service for the cache
|
||||||
|
* @param idleMillisBetweenCalls maximum time to wait before dispatching the next get records call
|
||||||
|
*/
|
||||||
|
public PrefetchGetRecordsCache(final int maxPendingProcessRecordsInput, final int maxByteSize, final int maxRecordsCount,
|
||||||
|
final int maxRecordsPerCall,
|
||||||
|
@NonNull final GetRecordsRetrievalStrategy getRecordsRetrievalStrategy,
|
||||||
|
@NonNull final ExecutorService executorService,
|
||||||
|
final long idleMillisBetweenCalls,
|
||||||
|
@NonNull final IMetricsFactory metricsFactory,
|
||||||
|
@NonNull final String operation,
|
||||||
|
@NonNull final String shardId) {
|
||||||
|
this.getRecordsRetrievalStrategy = getRecordsRetrievalStrategy;
|
||||||
|
this.maxRecordsPerCall = maxRecordsPerCall;
|
||||||
|
this.maxPendingProcessRecordsInput = maxPendingProcessRecordsInput;
|
||||||
|
this.maxByteSize = maxByteSize;
|
||||||
|
this.maxRecordsCount = maxRecordsCount;
|
||||||
|
this.getRecordsResultQueue = new LinkedBlockingQueue<>(this.maxPendingProcessRecordsInput);
|
||||||
|
this.prefetchCounters = new PrefetchCounters();
|
||||||
|
this.executorService = executorService;
|
||||||
|
this.metricsFactory = new ThreadSafeMetricsDelegatingFactory(metricsFactory);
|
||||||
|
this.idleMillisBetweenCalls = idleMillisBetweenCalls;
|
||||||
|
this.defaultGetRecordsCacheDaemon = new DefaultGetRecordsCacheDaemon();
|
||||||
|
Validate.notEmpty(operation, "Operation cannot be empty");
|
||||||
|
this.operation = operation;
|
||||||
|
this.dataFetcher = this.getRecordsRetrievalStrategy.getDataFetcher();
|
||||||
|
this.shardId = shardId;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void start() {
|
||||||
|
if (executorService.isShutdown()) {
|
||||||
|
throw new IllegalStateException("ExecutorService has been shutdown.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!started) {
|
||||||
|
log.info("Starting prefetching thread.");
|
||||||
|
executorService.execute(defaultGetRecordsCacheDaemon);
|
||||||
|
}
|
||||||
|
started = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public ProcessRecordsInput getNextResult() {
|
||||||
|
if (executorService.isShutdown()) {
|
||||||
|
throw new IllegalStateException("Shutdown has been called on the cache, can't accept new requests.");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!started) {
|
||||||
|
throw new IllegalStateException("Cache has not been initialized, make sure to call start.");
|
||||||
|
}
|
||||||
|
ProcessRecordsInput result = null;
|
||||||
|
try {
|
||||||
|
result = getRecordsResultQueue.take().withCacheExitTime(Instant.now());
|
||||||
|
prefetchCounters.removed(result);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
log.error("Interrupted while getting records from the cache", e);
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsRetrievalStrategy getGetRecordsRetrievalStrategy() {
|
||||||
|
return getRecordsRetrievalStrategy;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdown() {
|
||||||
|
defaultGetRecordsCacheDaemon.isShutdown = true;
|
||||||
|
executorService.shutdownNow();
|
||||||
|
started = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private class DefaultGetRecordsCacheDaemon implements Runnable {
|
||||||
|
volatile boolean isShutdown = false;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
while (!isShutdown) {
|
||||||
|
if (Thread.currentThread().isInterrupted()) {
|
||||||
|
log.warn("Prefetch thread was interrupted.");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
MetricsHelper.startScope(metricsFactory, operation);
|
||||||
|
if (prefetchCounters.shouldGetNewRecords()) {
|
||||||
|
try {
|
||||||
|
sleepBeforeNextCall();
|
||||||
|
GetRecordsResult getRecordsResult = getRecordsRetrievalStrategy.getRecords(maxRecordsPerCall);
|
||||||
|
lastSuccessfulCall = Instant.now();
|
||||||
|
ProcessRecordsInput processRecordsInput = new ProcessRecordsInput()
|
||||||
|
.withRecords(getRecordsResult.getRecords())
|
||||||
|
.withMillisBehindLatest(getRecordsResult.getMillisBehindLatest())
|
||||||
|
.withCacheEntryTime(lastSuccessfulCall);
|
||||||
|
getRecordsResultQueue.put(processRecordsInput);
|
||||||
|
prefetchCounters.added(processRecordsInput);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
log.info("Thread was interrupted, indicating shutdown was called on the cache.");
|
||||||
|
} catch (ExpiredIteratorException e) {
|
||||||
|
log.info(String.format("ShardId %s: getRecords threw ExpiredIteratorException - restarting"
|
||||||
|
+ " after greatest seqNum passed to customer", shardId), e);
|
||||||
|
|
||||||
|
MetricsHelper.getMetricsScope().addData(EXPIRED_ITERATOR_METRIC, 1, StandardUnit.Count,
|
||||||
|
MetricsLevel.SUMMARY);
|
||||||
|
|
||||||
|
dataFetcher.restartIterator();
|
||||||
|
} catch (SdkClientException e) {
|
||||||
|
log.error("Exception thrown while fetching records from Kinesis", e);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
log.error("Unexpected exception was thrown. This could probably be an issue or a bug." +
|
||||||
|
" Please search for the exception/error online to check what is going on. If the " +
|
||||||
|
"issue persists or is a recurring problem, feel free to open an issue on, " +
|
||||||
|
"https://github.com/awslabs/amazon-kinesis-client.", e);
|
||||||
|
} finally {
|
||||||
|
MetricsHelper.endScope();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//
|
||||||
|
// Consumer isn't ready to receive new records will allow prefetch counters to pause
|
||||||
|
//
|
||||||
|
try {
|
||||||
|
prefetchCounters.waitForConsumer();
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
log.info("Thread was interrupted while waiting for the consumer. " +
|
||||||
|
"Shutdown has probably been started");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
callShutdownOnStrategy();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void callShutdownOnStrategy() {
|
||||||
|
if (!getRecordsRetrievalStrategy.isShutdown()) {
|
||||||
|
getRecordsRetrievalStrategy.shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void sleepBeforeNextCall() throws InterruptedException {
|
||||||
|
if (lastSuccessfulCall == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
long timeSinceLastCall = Duration.between(lastSuccessfulCall, Instant.now()).abs().toMillis();
|
||||||
|
if (timeSinceLastCall < idleMillisBetweenCalls) {
|
||||||
|
Thread.sleep(idleMillisBetweenCalls - timeSinceLastCall);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class PrefetchCounters {
|
||||||
|
private long size = 0;
|
||||||
|
private long byteSize = 0;
|
||||||
|
|
||||||
|
public synchronized void added(final ProcessRecordsInput result) {
|
||||||
|
size += getSize(result);
|
||||||
|
byteSize += getByteSize(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
public synchronized void removed(final ProcessRecordsInput result) {
|
||||||
|
size -= getSize(result);
|
||||||
|
byteSize -= getByteSize(result);
|
||||||
|
this.notifyAll();
|
||||||
|
}
|
||||||
|
|
||||||
|
private long getSize(final ProcessRecordsInput result) {
|
||||||
|
return result.getRecords().size();
|
||||||
|
}
|
||||||
|
|
||||||
|
private long getByteSize(final ProcessRecordsInput result) {
|
||||||
|
return result.getRecords().stream().mapToLong(record -> record.getData().array().length).sum();
|
||||||
|
}
|
||||||
|
|
||||||
|
public synchronized void waitForConsumer() throws InterruptedException {
|
||||||
|
if (!shouldGetNewRecords()) {
|
||||||
|
log.debug("Queue is full waiting for consumer for " + idleMillisBetweenCalls + " ms");
|
||||||
|
this.wait(idleMillisBetweenCalls);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public synchronized boolean shouldGetNewRecords() {
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("Current Prefetch Counter States: " + this.toString());
|
||||||
|
}
|
||||||
|
return size < maxRecordsCount && byteSize < maxByteSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return String.format("{ Requests: %d, Records: %d, Bytes: %d }", getRecordsResultQueue.size(), size,
|
||||||
|
byteSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,65 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibDependencyException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IPreparedCheckpointer;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Objects of this class are prepared to checkpoint at a specific sequence number. They use an
|
||||||
|
* IRecordProcessorCheckpointer to do the actual checkpointing, so their checkpoint is subject to the same 'didn't go
|
||||||
|
* backwards' validation as a normal checkpoint.
|
||||||
|
*/
|
||||||
|
public class PreparedCheckpointer implements IPreparedCheckpointer {
|
||||||
|
|
||||||
|
private final ExtendedSequenceNumber pendingCheckpointSequenceNumber;
|
||||||
|
private final IRecordProcessorCheckpointer checkpointer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param pendingCheckpointSequenceNumber sequence number to checkpoint at
|
||||||
|
* @param checkpointer checkpointer to use
|
||||||
|
*/
|
||||||
|
public PreparedCheckpointer(ExtendedSequenceNumber pendingCheckpointSequenceNumber,
|
||||||
|
IRecordProcessorCheckpointer checkpointer) {
|
||||||
|
this.pendingCheckpointSequenceNumber = pendingCheckpointSequenceNumber;
|
||||||
|
this.checkpointer = checkpointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public ExtendedSequenceNumber getPendingCheckpoint() {
|
||||||
|
return pendingCheckpointSequenceNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void checkpoint()
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException,
|
||||||
|
IllegalArgumentException {
|
||||||
|
checkpointer.checkpoint(pendingCheckpointSequenceNumber.getSequenceNumber(),
|
||||||
|
pendingCheckpointSequenceNumber.getSubSequenceNumber());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
@ -62,6 +62,8 @@ class ProcessTask implements ITask {
|
||||||
private final Shard shard;
|
private final Shard shard;
|
||||||
private final ThrottlingReporter throttlingReporter;
|
private final ThrottlingReporter throttlingReporter;
|
||||||
|
|
||||||
|
private final GetRecordsCache getRecordsCache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param shardInfo
|
* @param shardInfo
|
||||||
* contains information about the shard
|
* contains information about the shard
|
||||||
|
|
@ -75,13 +77,17 @@ class ProcessTask implements ITask {
|
||||||
* Kinesis data fetcher (used to fetch records from Kinesis)
|
* Kinesis data fetcher (used to fetch records from Kinesis)
|
||||||
* @param backoffTimeMillis
|
* @param backoffTimeMillis
|
||||||
* backoff time when catching exceptions
|
* backoff time when catching exceptions
|
||||||
|
* @param getRecordsCache
|
||||||
|
* The retrieval strategy for fetching records from kinesis
|
||||||
*/
|
*/
|
||||||
public ProcessTask(ShardInfo shardInfo, StreamConfig streamConfig, IRecordProcessor recordProcessor,
|
public ProcessTask(ShardInfo shardInfo, StreamConfig streamConfig, IRecordProcessor recordProcessor,
|
||||||
RecordProcessorCheckpointer recordProcessorCheckpointer, KinesisDataFetcher dataFetcher,
|
RecordProcessorCheckpointer recordProcessorCheckpointer, KinesisDataFetcher dataFetcher,
|
||||||
long backoffTimeMillis, boolean skipShardSyncAtWorkerInitializationIfLeasesExist) {
|
long backoffTimeMillis, boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
|
GetRecordsCache getRecordsCache) {
|
||||||
this(shardInfo, streamConfig, recordProcessor, recordProcessorCheckpointer, dataFetcher, backoffTimeMillis,
|
this(shardInfo, streamConfig, recordProcessor, recordProcessorCheckpointer, dataFetcher, backoffTimeMillis,
|
||||||
skipShardSyncAtWorkerInitializationIfLeasesExist,
|
skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
new ThrottlingReporter(MAX_CONSECUTIVE_THROTTLES, shardInfo.getShardId()));
|
new ThrottlingReporter(MAX_CONSECUTIVE_THROTTLES, shardInfo.getShardId()),
|
||||||
|
getRecordsCache);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -101,9 +107,9 @@ class ProcessTask implements ITask {
|
||||||
* determines how throttling events should be reported in the log.
|
* determines how throttling events should be reported in the log.
|
||||||
*/
|
*/
|
||||||
public ProcessTask(ShardInfo shardInfo, StreamConfig streamConfig, IRecordProcessor recordProcessor,
|
public ProcessTask(ShardInfo shardInfo, StreamConfig streamConfig, IRecordProcessor recordProcessor,
|
||||||
RecordProcessorCheckpointer recordProcessorCheckpointer, KinesisDataFetcher dataFetcher,
|
RecordProcessorCheckpointer recordProcessorCheckpointer, KinesisDataFetcher dataFetcher,
|
||||||
long backoffTimeMillis, boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
long backoffTimeMillis, boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
ThrottlingReporter throttlingReporter) {
|
ThrottlingReporter throttlingReporter, GetRecordsCache getRecordsCache) {
|
||||||
super();
|
super();
|
||||||
this.shardInfo = shardInfo;
|
this.shardInfo = shardInfo;
|
||||||
this.recordProcessor = recordProcessor;
|
this.recordProcessor = recordProcessor;
|
||||||
|
|
@ -113,6 +119,7 @@ class ProcessTask implements ITask {
|
||||||
this.backoffTimeMillis = backoffTimeMillis;
|
this.backoffTimeMillis = backoffTimeMillis;
|
||||||
this.throttlingReporter = throttlingReporter;
|
this.throttlingReporter = throttlingReporter;
|
||||||
IKinesisProxy kinesisProxy = this.streamConfig.getStreamProxy();
|
IKinesisProxy kinesisProxy = this.streamConfig.getStreamProxy();
|
||||||
|
this.getRecordsCache = getRecordsCache;
|
||||||
// If skipShardSyncAtWorkerInitializationIfLeasesExist is set, we will not get the shard for
|
// If skipShardSyncAtWorkerInitializationIfLeasesExist is set, we will not get the shard for
|
||||||
// this ProcessTask. In this case, duplicate KPL user records in the event of resharding will
|
// this ProcessTask. In this case, duplicate KPL user records in the event of resharding will
|
||||||
// not be dropped during deaggregation of Amazon Kinesis records. This is only applicable if
|
// not be dropped during deaggregation of Amazon Kinesis records. This is only applicable if
|
||||||
|
|
@ -141,7 +148,6 @@ class ProcessTask implements ITask {
|
||||||
scope.addDimension(MetricsHelper.SHARD_ID_DIMENSION_NAME, shardInfo.getShardId());
|
scope.addDimension(MetricsHelper.SHARD_ID_DIMENSION_NAME, shardInfo.getShardId());
|
||||||
scope.addData(RECORDS_PROCESSED_METRIC, 0, StandardUnit.Count, MetricsLevel.SUMMARY);
|
scope.addData(RECORDS_PROCESSED_METRIC, 0, StandardUnit.Count, MetricsLevel.SUMMARY);
|
||||||
scope.addData(DATA_BYTES_PROCESSED_METRIC, 0, StandardUnit.Bytes, MetricsLevel.SUMMARY);
|
scope.addData(DATA_BYTES_PROCESSED_METRIC, 0, StandardUnit.Bytes, MetricsLevel.SUMMARY);
|
||||||
|
|
||||||
Exception exception = null;
|
Exception exception = null;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -150,10 +156,10 @@ class ProcessTask implements ITask {
|
||||||
return new TaskResult(null, true);
|
return new TaskResult(null, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
final GetRecordsResult getRecordsResult = getRecordsResult();
|
final ProcessRecordsInput processRecordsInput = getRecordsResult();
|
||||||
throttlingReporter.success();
|
throttlingReporter.success();
|
||||||
List<Record> records = getRecordsResult.getRecords();
|
List<Record> records = processRecordsInput.getRecords();
|
||||||
|
|
||||||
if (!records.isEmpty()) {
|
if (!records.isEmpty()) {
|
||||||
scope.addData(RECORDS_PROCESSED_METRIC, records.size(), StandardUnit.Count, MetricsLevel.SUMMARY);
|
scope.addData(RECORDS_PROCESSED_METRIC, records.size(), StandardUnit.Count, MetricsLevel.SUMMARY);
|
||||||
} else {
|
} else {
|
||||||
|
|
@ -167,7 +173,7 @@ class ProcessTask implements ITask {
|
||||||
recordProcessorCheckpointer.getLargestPermittedCheckpointValue()));
|
recordProcessorCheckpointer.getLargestPermittedCheckpointValue()));
|
||||||
|
|
||||||
if (shouldCallProcessRecords(records)) {
|
if (shouldCallProcessRecords(records)) {
|
||||||
callProcessRecords(getRecordsResult, records);
|
callProcessRecords(processRecordsInput, records);
|
||||||
}
|
}
|
||||||
} catch (ProvisionedThroughputExceededException pte) {
|
} catch (ProvisionedThroughputExceededException pte) {
|
||||||
throttlingReporter.throttled();
|
throttlingReporter.throttled();
|
||||||
|
|
@ -197,18 +203,18 @@ class ProcessTask implements ITask {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dispatches a batch of records to the record processor, and handles any fallout from that.
|
* Dispatches a batch of records to the record processor, and handles any fallout from that.
|
||||||
*
|
*
|
||||||
* @param getRecordsResult
|
* @param input
|
||||||
* the result of the last call to Kinesis
|
* the result of the last call to Kinesis
|
||||||
* @param records
|
* @param records
|
||||||
* the records to be dispatched. It's possible the records have been adjusted by KPL deaggregation.
|
* the records to be dispatched. It's possible the records have been adjusted by KPL deaggregation.
|
||||||
*/
|
*/
|
||||||
private void callProcessRecords(GetRecordsResult getRecordsResult, List<Record> records) {
|
private void callProcessRecords(ProcessRecordsInput input, List<Record> records) {
|
||||||
LOG.debug("Calling application processRecords() with " + records.size() + " records from "
|
LOG.debug("Calling application processRecords() with " + records.size() + " records from "
|
||||||
+ shardInfo.getShardId());
|
+ shardInfo.getShardId());
|
||||||
final ProcessRecordsInput processRecordsInput = new ProcessRecordsInput().withRecords(records)
|
final ProcessRecordsInput processRecordsInput = new ProcessRecordsInput().withRecords(records)
|
||||||
.withCheckpointer(recordProcessorCheckpointer)
|
.withCheckpointer(recordProcessorCheckpointer)
|
||||||
.withMillisBehindLatest(getRecordsResult.getMillisBehindLatest());
|
.withMillisBehindLatest(input.getMillisBehindLatest());
|
||||||
|
|
||||||
final long recordProcessorStartTimeMillis = System.currentTimeMillis();
|
final long recordProcessorStartTimeMillis = System.currentTimeMillis();
|
||||||
try {
|
try {
|
||||||
|
|
@ -225,7 +231,7 @@ class ProcessTask implements ITask {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether we should call process records or not
|
* Whether we should call process records or not
|
||||||
*
|
*
|
||||||
* @param records
|
* @param records
|
||||||
* the records returned from the call to Kinesis, and/or deaggregation
|
* the records returned from the call to Kinesis, and/or deaggregation
|
||||||
* @return true if the set of records should be dispatched to the record process, false if they should not.
|
* @return true if the set of records should be dispatched to the record process, false if they should not.
|
||||||
|
|
@ -236,7 +242,7 @@ class ProcessTask implements ITask {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Determines whether to deaggregate the given records, and if they are KPL records dispatches them to deaggregation
|
* Determines whether to deaggregate the given records, and if they are KPL records dispatches them to deaggregation
|
||||||
*
|
*
|
||||||
* @param records
|
* @param records
|
||||||
* the records to deaggregate is deaggregation is required.
|
* the records to deaggregate is deaggregation is required.
|
||||||
* @return returns either the deaggregated records, or the original records
|
* @return returns either the deaggregated records, or the original records
|
||||||
|
|
@ -259,7 +265,7 @@ class ProcessTask implements ITask {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Emits metrics, and sleeps if there are no records available
|
* Emits metrics, and sleeps if there are no records available
|
||||||
*
|
*
|
||||||
* @param startTimeMillis
|
* @param startTimeMillis
|
||||||
* the time when the task started
|
* the time when the task started
|
||||||
*/
|
*/
|
||||||
|
|
@ -296,8 +302,8 @@ class ProcessTask implements ITask {
|
||||||
* @return the largest extended sequence number among the retained records
|
* @return the largest extended sequence number among the retained records
|
||||||
*/
|
*/
|
||||||
private ExtendedSequenceNumber filterAndGetMaxExtendedSequenceNumber(IMetricsScope scope, List<Record> records,
|
private ExtendedSequenceNumber filterAndGetMaxExtendedSequenceNumber(IMetricsScope scope, List<Record> records,
|
||||||
final ExtendedSequenceNumber lastCheckpointValue,
|
final ExtendedSequenceNumber lastCheckpointValue,
|
||||||
final ExtendedSequenceNumber lastLargestPermittedCheckpointValue) {
|
final ExtendedSequenceNumber lastLargestPermittedCheckpointValue) {
|
||||||
ExtendedSequenceNumber largestExtendedSequenceNumber = lastLargestPermittedCheckpointValue;
|
ExtendedSequenceNumber largestExtendedSequenceNumber = lastLargestPermittedCheckpointValue;
|
||||||
ListIterator<Record> recordIterator = records.listIterator();
|
ListIterator<Record> recordIterator = records.listIterator();
|
||||||
while (recordIterator.hasNext()) {
|
while (recordIterator.hasNext()) {
|
||||||
|
|
@ -331,7 +337,7 @@ class ProcessTask implements ITask {
|
||||||
*
|
*
|
||||||
* @return list of data records from Kinesis
|
* @return list of data records from Kinesis
|
||||||
*/
|
*/
|
||||||
private GetRecordsResult getRecordsResult() {
|
private ProcessRecordsInput getRecordsResult() {
|
||||||
try {
|
try {
|
||||||
return getRecordsResultAndRecordMillisBehindLatest();
|
return getRecordsResultAndRecordMillisBehindLatest();
|
||||||
} catch (ExpiredIteratorException e) {
|
} catch (ExpiredIteratorException e) {
|
||||||
|
|
@ -367,22 +373,17 @@ class ProcessTask implements ITask {
|
||||||
*
|
*
|
||||||
* @return list of data records from Kinesis
|
* @return list of data records from Kinesis
|
||||||
*/
|
*/
|
||||||
private GetRecordsResult getRecordsResultAndRecordMillisBehindLatest() {
|
private ProcessRecordsInput getRecordsResultAndRecordMillisBehindLatest() {
|
||||||
final GetRecordsResult getRecordsResult = dataFetcher.getRecords(streamConfig.getMaxRecords());
|
final ProcessRecordsInput processRecordsInput = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
if (getRecordsResult == null) {
|
if (processRecordsInput.getMillisBehindLatest() != null) {
|
||||||
// Stream no longer exists
|
|
||||||
return new GetRecordsResult().withRecords(Collections.<Record>emptyList());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getRecordsResult.getMillisBehindLatest() != null) {
|
|
||||||
MetricsHelper.getMetricsScope().addData(MILLIS_BEHIND_LATEST_METRIC,
|
MetricsHelper.getMetricsScope().addData(MILLIS_BEHIND_LATEST_METRIC,
|
||||||
getRecordsResult.getMillisBehindLatest(),
|
processRecordsInput.getMillisBehindLatest(),
|
||||||
StandardUnit.Milliseconds,
|
StandardUnit.Milliseconds,
|
||||||
MetricsLevel.SUMMARY);
|
MetricsLevel.SUMMARY);
|
||||||
}
|
}
|
||||||
|
|
||||||
return getRecordsResult;
|
return processRecordsInput;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
|
|
@ -14,6 +14,9 @@
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.ThreadSafeMetricsDelegatingScope;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
|
@ -23,6 +26,7 @@ import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibE
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ThrottlingException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IPreparedCheckpointer;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.UserRecord;
|
import com.amazonaws.services.kinesis.clientlibrary.types.UserRecord;
|
||||||
|
|
@ -49,6 +53,8 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
private SequenceNumberValidator sequenceNumberValidator;
|
private SequenceNumberValidator sequenceNumberValidator;
|
||||||
|
|
||||||
private ExtendedSequenceNumber sequenceNumberAtShardEnd;
|
private ExtendedSequenceNumber sequenceNumberAtShardEnd;
|
||||||
|
|
||||||
|
private IMetricsFactory metricsFactory;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Only has package level access, since only the Amazon Kinesis Client Library should be creating these.
|
* Only has package level access, since only the Amazon Kinesis Client Library should be creating these.
|
||||||
|
|
@ -58,10 +64,12 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
*/
|
*/
|
||||||
RecordProcessorCheckpointer(ShardInfo shardInfo,
|
RecordProcessorCheckpointer(ShardInfo shardInfo,
|
||||||
ICheckpoint checkpoint,
|
ICheckpoint checkpoint,
|
||||||
SequenceNumberValidator validator) {
|
SequenceNumberValidator validator,
|
||||||
|
IMetricsFactory metricsFactory) {
|
||||||
this.shardInfo = shardInfo;
|
this.shardInfo = shardInfo;
|
||||||
this.checkpoint = checkpoint;
|
this.checkpoint = checkpoint;
|
||||||
this.sequenceNumberValidator = validator;
|
this.sequenceNumberValidator = validator;
|
||||||
|
this.metricsFactory = metricsFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -127,7 +135,7 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
* If there is a last checkpoint value, we want to check both the lower and upper bound.
|
* If there is a last checkpoint value, we want to check both the lower and upper bound.
|
||||||
*/
|
*/
|
||||||
ExtendedSequenceNumber newCheckpoint = new ExtendedSequenceNumber(sequenceNumber, subSequenceNumber);
|
ExtendedSequenceNumber newCheckpoint = new ExtendedSequenceNumber(sequenceNumber, subSequenceNumber);
|
||||||
if ((lastCheckpointValue.compareTo(newCheckpoint) <= 0)
|
if ((lastCheckpointValue == null || lastCheckpointValue.compareTo(newCheckpoint) <= 0)
|
||||||
&& newCheckpoint.compareTo(largestPermittedCheckpointValue) <= 0) {
|
&& newCheckpoint.compareTo(largestPermittedCheckpointValue) <= 0) {
|
||||||
|
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
|
|
@ -144,6 +152,82 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized IPreparedCheckpointer prepareCheckpoint()
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException {
|
||||||
|
return this.prepareCheckpoint(
|
||||||
|
this.largestPermittedCheckpointValue.getSequenceNumber(),
|
||||||
|
this.largestPermittedCheckpointValue.getSubSequenceNumber());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized IPreparedCheckpointer prepareCheckpoint(Record record)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException {
|
||||||
|
if (record == null) {
|
||||||
|
throw new IllegalArgumentException("Could not prepare checkpoint a null record");
|
||||||
|
} else if (record instanceof UserRecord) {
|
||||||
|
return prepareCheckpoint(record.getSequenceNumber(), ((UserRecord) record).getSubSequenceNumber());
|
||||||
|
} else {
|
||||||
|
return prepareCheckpoint(record.getSequenceNumber(), 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized IPreparedCheckpointer prepareCheckpoint(String sequenceNumber)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException {
|
||||||
|
return prepareCheckpoint(sequenceNumber, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized IPreparedCheckpointer prepareCheckpoint(String sequenceNumber, long subSequenceNumber)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException {
|
||||||
|
|
||||||
|
if (subSequenceNumber < 0) {
|
||||||
|
throw new IllegalArgumentException("Could not checkpoint at invalid, negative subsequence number "
|
||||||
|
+ subSequenceNumber);
|
||||||
|
}
|
||||||
|
|
||||||
|
// throws exception if sequence number shouldn't be checkpointed for this shard
|
||||||
|
sequenceNumberValidator.validateSequenceNumber(sequenceNumber);
|
||||||
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Validated prepareCheckpoint sequence number " + sequenceNumber + " for " + shardInfo.getShardId()
|
||||||
|
+ ", token " + shardInfo.getConcurrencyToken());
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* If there isn't a last checkpoint value, we only care about checking the upper bound.
|
||||||
|
* If there is a last checkpoint value, we want to check both the lower and upper bound.
|
||||||
|
*/
|
||||||
|
ExtendedSequenceNumber pendingCheckpoint = new ExtendedSequenceNumber(sequenceNumber, subSequenceNumber);
|
||||||
|
if ((lastCheckpointValue == null || lastCheckpointValue.compareTo(pendingCheckpoint) <= 0)
|
||||||
|
&& pendingCheckpoint.compareTo(largestPermittedCheckpointValue) <= 0) {
|
||||||
|
|
||||||
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Preparing checkpoint " + shardInfo.getShardId()
|
||||||
|
+ ", token " + shardInfo.getConcurrencyToken()
|
||||||
|
+ " at specific extended sequence number " + pendingCheckpoint);
|
||||||
|
}
|
||||||
|
return doPrepareCheckpoint(pendingCheckpoint);
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException(String.format(
|
||||||
|
"Could not prepare checkpoint at extended sequence number %s as it did not fall into acceptable "
|
||||||
|
+ "range between the last checkpoint %s and the greatest extended sequence number passed "
|
||||||
|
+ "to this record processor %s",
|
||||||
|
pendingCheckpoint, this.lastCheckpointValue, this.largestPermittedCheckpointValue));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the lastCheckpointValue
|
* @return the lastCheckpointValue
|
||||||
*/
|
*/
|
||||||
|
|
@ -165,7 +249,7 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param checkpoint the checkpoint value to set
|
* @param largestPermittedCheckpointValue the largest permitted checkpoint
|
||||||
*/
|
*/
|
||||||
synchronized void setLargestPermittedCheckpointValue(ExtendedSequenceNumber largestPermittedCheckpointValue) {
|
synchronized void setLargestPermittedCheckpointValue(ExtendedSequenceNumber largestPermittedCheckpointValue) {
|
||||||
this.largestPermittedCheckpointValue = largestPermittedCheckpointValue;
|
this.largestPermittedCheckpointValue = largestPermittedCheckpointValue;
|
||||||
|
|
@ -206,22 +290,88 @@ class RecordProcessorCheckpointer implements IRecordProcessorCheckpointer {
|
||||||
// just checkpoint at SHARD_END
|
// just checkpoint at SHARD_END
|
||||||
checkpointToRecord = ExtendedSequenceNumber.SHARD_END;
|
checkpointToRecord = ExtendedSequenceNumber.SHARD_END;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean unsetMetrics = false;
|
||||||
// Don't checkpoint a value we already successfully checkpointed
|
// Don't checkpoint a value we already successfully checkpointed
|
||||||
if (extendedSequenceNumber != null && !extendedSequenceNumber.equals(lastCheckpointValue)) {
|
try {
|
||||||
try {
|
if (!MetricsHelper.isMetricsScopePresent()) {
|
||||||
if (LOG.isDebugEnabled()) {
|
MetricsHelper.setMetricsScope(new ThreadSafeMetricsDelegatingScope(metricsFactory.createMetrics()));
|
||||||
LOG.debug("Setting " + shardInfo.getShardId() + ", token " + shardInfo.getConcurrencyToken()
|
unsetMetrics = true;
|
||||||
+ " checkpoint to " + checkpointToRecord);
|
}
|
||||||
|
if (extendedSequenceNumber != null && !extendedSequenceNumber.equals(lastCheckpointValue)) {
|
||||||
|
try {
|
||||||
|
if (LOG.isDebugEnabled()) {
|
||||||
|
LOG.debug("Setting " + shardInfo.getShardId() + ", token " + shardInfo.getConcurrencyToken()
|
||||||
|
+ " checkpoint to " + checkpointToRecord);
|
||||||
|
}
|
||||||
|
checkpoint.setCheckpoint(shardInfo.getShardId(), checkpointToRecord, shardInfo.getConcurrencyToken());
|
||||||
|
lastCheckpointValue = checkpointToRecord;
|
||||||
|
} catch (ThrottlingException | ShutdownException | InvalidStateException
|
||||||
|
| KinesisClientLibDependencyException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (KinesisClientLibException e) {
|
||||||
|
LOG.warn("Caught exception setting checkpoint.", e);
|
||||||
|
throw new KinesisClientLibDependencyException("Caught exception while checkpointing", e);
|
||||||
}
|
}
|
||||||
checkpoint.setCheckpoint(shardInfo.getShardId(), checkpointToRecord, shardInfo.getConcurrencyToken());
|
}
|
||||||
lastCheckpointValue = checkpointToRecord;
|
} finally {
|
||||||
} catch (ThrottlingException | ShutdownException | InvalidStateException
|
if (unsetMetrics) {
|
||||||
| KinesisClientLibDependencyException e) {
|
MetricsHelper.unsetMetricsScope();
|
||||||
throw e;
|
|
||||||
} catch (KinesisClientLibException e) {
|
|
||||||
LOG.warn("Caught exception setting checkpoint.", e);
|
|
||||||
throw new KinesisClientLibDependencyException("Caught exception while checkpointing", e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method stores the given sequenceNumber as a pending checkpooint in the lease table without overwriting the
|
||||||
|
* current checkpoint, then returns a PreparedCheckpointer that is ready to checkpoint at the given sequence number.
|
||||||
|
*
|
||||||
|
* This method does not advance lastCheckpointValue, but calls to PreparedCheckpointer.checkpoint() on the returned
|
||||||
|
* objects do. This allows customers to 'discard' prepared checkpoints by calling any of the 4 checkpoint methods on
|
||||||
|
* this class before calling PreparedCheckpointer.checkpoint(). Some examples:
|
||||||
|
*
|
||||||
|
* 1) prepareCheckpoint(snA); checkpoint(snB). // this works regardless of whether snA or snB is bigger. It discards
|
||||||
|
* the prepared checkpoint at snA.
|
||||||
|
* 2) prepareCheckpoint(snA); prepareCheckpoint(snB). // this works regardless of whether snA or snB is bigger. It
|
||||||
|
* replaces the preparedCheckpoint at snA with a new one at snB.
|
||||||
|
* 3) checkpointerA = prepareCheckpoint(snA); checkpointerB = prepareCheckpoint(snB); checkpointerB.checkpoint();
|
||||||
|
* checkpointerA.checkpoint(); // This replaces the prepared checkpoint at snA with a new one at snB, then
|
||||||
|
* checkpoints at snB regardless of whether snA or snB is bigger. The checkpoint at snA only succeeds if snA > snB.
|
||||||
|
*
|
||||||
|
* @param extendedSequenceNumber the sequence number for the prepared checkpoint
|
||||||
|
* @return a prepared checkpointer that is ready to checkpoint at the given sequence number.
|
||||||
|
* @throws KinesisClientLibDependencyException
|
||||||
|
* @throws InvalidStateException
|
||||||
|
* @throws ThrottlingException
|
||||||
|
* @throws ShutdownException
|
||||||
|
*/
|
||||||
|
private IPreparedCheckpointer doPrepareCheckpoint(ExtendedSequenceNumber extendedSequenceNumber)
|
||||||
|
throws KinesisClientLibDependencyException, InvalidStateException, ThrottlingException, ShutdownException {
|
||||||
|
|
||||||
|
ExtendedSequenceNumber newPrepareCheckpoint = extendedSequenceNumber;
|
||||||
|
if (sequenceNumberAtShardEnd != null && sequenceNumberAtShardEnd.equals(extendedSequenceNumber)) {
|
||||||
|
// If we are about to checkpoint the very last sequence number for this shard, we might as well
|
||||||
|
// just checkpoint at SHARD_END
|
||||||
|
newPrepareCheckpoint = ExtendedSequenceNumber.SHARD_END;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Don't actually prepare a checkpoint if they're trying to checkpoint at the current checkpointed value.
|
||||||
|
// The only way this can happen is if they call prepareCheckpoint() in a record processor that was initialized
|
||||||
|
// AND that has not processed any records since initialization.
|
||||||
|
if (newPrepareCheckpoint.equals(lastCheckpointValue)) {
|
||||||
|
return new DoesNothingPreparedCheckpointer(newPrepareCheckpoint);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
checkpoint.prepareCheckpoint(shardInfo.getShardId(), newPrepareCheckpoint, shardInfo.getConcurrencyToken());
|
||||||
|
} catch (ThrottlingException | ShutdownException | InvalidStateException
|
||||||
|
| KinesisClientLibDependencyException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (KinesisClientLibException e) {
|
||||||
|
LOG.warn("Caught exception setting prepareCheckpoint.", e);
|
||||||
|
throw new KinesisClientLibDependencyException("Caught exception while prepareCheckpointing", e);
|
||||||
|
}
|
||||||
|
|
||||||
|
PreparedCheckpointer result = new PreparedCheckpointer(newPrepareCheckpoint, this);
|
||||||
|
return result;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,76 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This factory is used to create the records fetcher to retrieve data from Kinesis for a given shard.
|
||||||
|
*/
|
||||||
|
public interface RecordsFetcherFactory {
|
||||||
|
/**
|
||||||
|
* Returns a GetRecordsCache to be used for retrieving records for a given shard.
|
||||||
|
*
|
||||||
|
* @param getRecordsRetrievalStrategy GetRecordsRetrievalStrategy to be used with the GetRecordsCache
|
||||||
|
* @param shardId ShardId of the shard that the fetcher will retrieve records for
|
||||||
|
* @param metricsFactory MetricsFactory used to create metricScope
|
||||||
|
* @param maxRecords Max number of records to be returned in a single get call
|
||||||
|
*
|
||||||
|
* @return GetRecordsCache used to get records from Kinesis.
|
||||||
|
*/
|
||||||
|
GetRecordsCache createRecordsFetcher(GetRecordsRetrievalStrategy getRecordsRetrievalStrategy, String shardId,
|
||||||
|
IMetricsFactory metricsFactory, int maxRecords);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the maximum number of ProcessRecordsInput objects the GetRecordsCache can hold, before further requests are
|
||||||
|
* blocked.
|
||||||
|
*
|
||||||
|
* @param maxPendingProcessRecordsInput The maximum number of ProcessRecordsInput objects that the cache will accept
|
||||||
|
* before blocking.
|
||||||
|
*/
|
||||||
|
void setMaxPendingProcessRecordsInput(int maxPendingProcessRecordsInput);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the max byte size for the GetRecordsCache, before further requests are blocked. The byte size of the cache
|
||||||
|
* is the sum of byte size of all the ProcessRecordsInput objects in the cache at any point of time.
|
||||||
|
*
|
||||||
|
* @param maxByteSize The maximum byte size for the cache before blocking.
|
||||||
|
*/
|
||||||
|
void setMaxByteSize(int maxByteSize);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the max number of records for the GetRecordsCache can hold, before further requests are blocked. The records
|
||||||
|
* count is the sum of all records present in across all the ProcessRecordsInput objects in the cache at any point
|
||||||
|
* of time.
|
||||||
|
*
|
||||||
|
* @param maxRecordsCount The mximum number of records in the cache before blocking.
|
||||||
|
*/
|
||||||
|
void setMaxRecordsCount(int maxRecordsCount);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the dataFetchingStrategy to determine the type of GetRecordsCache to be used.
|
||||||
|
*
|
||||||
|
* @param dataFetchingStrategy Fetching strategy to be used
|
||||||
|
*/
|
||||||
|
void setDataFetchingStrategy(DataFetchingStrategy dataFetchingStrategy);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the maximum idle time between two get calls.
|
||||||
|
*
|
||||||
|
* @param idleMillisBetweenCalls Sleep millis between calls.
|
||||||
|
*/
|
||||||
|
void setIdleMillisBetweenCalls(long idleMillisBetweenCalls);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -70,12 +70,14 @@ public class SequenceNumberValidator {
|
||||||
*/
|
*/
|
||||||
void validateSequenceNumber(String sequenceNumber)
|
void validateSequenceNumber(String sequenceNumber)
|
||||||
throws IllegalArgumentException, ThrottlingException, KinesisClientLibDependencyException {
|
throws IllegalArgumentException, ThrottlingException, KinesisClientLibDependencyException {
|
||||||
if (!isDigits(sequenceNumber)) {
|
boolean atShardEnd = ExtendedSequenceNumber.SHARD_END.getSequenceNumber().equals(sequenceNumber);
|
||||||
|
|
||||||
|
if (!atShardEnd && !isDigits(sequenceNumber)) {
|
||||||
LOG.info("Sequence number must be numeric, but was " + sequenceNumber);
|
LOG.info("Sequence number must be numeric, but was " + sequenceNumber);
|
||||||
throw new IllegalArgumentException("Sequence number must be numeric, but was " + sequenceNumber);
|
throw new IllegalArgumentException("Sequence number must be numeric, but was " + sequenceNumber);
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
if (validateWithGetIterator) {
|
if (!atShardEnd &&validateWithGetIterator) {
|
||||||
proxy.getIterator(shardId, ShardIteratorType.AFTER_SEQUENCE_NUMBER.toString(), sequenceNumber);
|
proxy.getIterator(shardId, ShardIteratorType.AFTER_SEQUENCE_NUMBER.toString(), sequenceNumber);
|
||||||
LOG.info("Validated sequence number " + sequenceNumber + " with shard id " + shardId);
|
LOG.info("Validated sequence number " + sequenceNumber + " with shard id " + shardId);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,20 +1,21 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
import java.util.concurrent.RejectedExecutionException;
|
import java.util.concurrent.RejectedExecutionException;
|
||||||
|
|
@ -30,6 +31,8 @@ import com.amazonaws.services.kinesis.leases.interfaces.ILeaseManager;
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
import com.google.common.annotations.VisibleForTesting;
|
import com.google.common.annotations.VisibleForTesting;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Responsible for consuming data records of a (specified) shard.
|
* Responsible for consuming data records of a (specified) shard.
|
||||||
* The instance should be shutdown when we lose the primary responsibility for a shard.
|
* The instance should be shutdown when we lose the primary responsibility for a shard.
|
||||||
|
|
@ -41,6 +44,7 @@ class ShardConsumer {
|
||||||
|
|
||||||
private final StreamConfig streamConfig;
|
private final StreamConfig streamConfig;
|
||||||
private final IRecordProcessor recordProcessor;
|
private final IRecordProcessor recordProcessor;
|
||||||
|
private final KinesisClientLibConfiguration config;
|
||||||
private final RecordProcessorCheckpointer recordProcessorCheckpointer;
|
private final RecordProcessorCheckpointer recordProcessorCheckpointer;
|
||||||
private final ExecutorService executorService;
|
private final ExecutorService executorService;
|
||||||
private final ShardInfo shardInfo;
|
private final ShardInfo shardInfo;
|
||||||
|
|
@ -57,6 +61,20 @@ class ShardConsumer {
|
||||||
private ITask currentTask;
|
private ITask currentTask;
|
||||||
private long currentTaskSubmitTime;
|
private long currentTaskSubmitTime;
|
||||||
private Future<TaskResult> future;
|
private Future<TaskResult> future;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private final GetRecordsCache getRecordsCache;
|
||||||
|
|
||||||
|
private static final GetRecordsRetrievalStrategy makeStrategy(KinesisDataFetcher dataFetcher,
|
||||||
|
Optional<Integer> retryGetRecordsInSeconds,
|
||||||
|
Optional<Integer> maxGetRecordsThreadPool,
|
||||||
|
ShardInfo shardInfo) {
|
||||||
|
Optional<GetRecordsRetrievalStrategy> getRecordsRetrievalStrategy = retryGetRecordsInSeconds.flatMap(retry ->
|
||||||
|
maxGetRecordsThreadPool.map(max ->
|
||||||
|
new AsynchronousGetRecordsRetrievalStrategy(dataFetcher, retry, max, shardInfo.getShardId())));
|
||||||
|
|
||||||
|
return getRecordsRetrievalStrategy.orElse(new SynchronousGetRecordsRetrievalStrategy(dataFetcher));
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Tracks current state. It is only updated via the consumeStream/shutdown APIs. Therefore we don't do
|
* Tracks current state. It is only updated via the consumeStream/shutdown APIs. Therefore we don't do
|
||||||
|
|
@ -75,6 +93,7 @@ class ShardConsumer {
|
||||||
* @param streamConfig Stream configuration to use
|
* @param streamConfig Stream configuration to use
|
||||||
* @param checkpoint Checkpoint tracker
|
* @param checkpoint Checkpoint tracker
|
||||||
* @param recordProcessor Record processor used to process the data records for the shard
|
* @param recordProcessor Record processor used to process the data records for the shard
|
||||||
|
* @param config Kinesis library configuration
|
||||||
* @param leaseManager Used to create leases for new shards
|
* @param leaseManager Used to create leases for new shards
|
||||||
* @param parentShardPollIntervalMillis Wait for this long if parent shards are not done (or we get an exception)
|
* @param parentShardPollIntervalMillis Wait for this long if parent shards are not done (or we get an exception)
|
||||||
* @param executorService ExecutorService used to execute process tasks for this shard
|
* @param executorService ExecutorService used to execute process tasks for this shard
|
||||||
|
|
@ -83,34 +102,141 @@ class ShardConsumer {
|
||||||
*/
|
*/
|
||||||
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 10 LINES
|
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 10 LINES
|
||||||
ShardConsumer(ShardInfo shardInfo,
|
ShardConsumer(ShardInfo shardInfo,
|
||||||
StreamConfig streamConfig,
|
StreamConfig streamConfig,
|
||||||
ICheckpoint checkpoint,
|
ICheckpoint checkpoint,
|
||||||
IRecordProcessor recordProcessor,
|
IRecordProcessor recordProcessor,
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
long parentShardPollIntervalMillis,
|
long parentShardPollIntervalMillis,
|
||||||
boolean cleanupLeasesOfCompletedShards,
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
ExecutorService executorService,
|
ExecutorService executorService,
|
||||||
IMetricsFactory metricsFactory,
|
IMetricsFactory metricsFactory,
|
||||||
long backoffTimeMillis,
|
long backoffTimeMillis,
|
||||||
boolean skipShardSyncAtWorkerInitializationIfLeasesExist) {
|
boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
this.streamConfig = streamConfig;
|
KinesisClientLibConfiguration config) {
|
||||||
this.recordProcessor = recordProcessor;
|
this(shardInfo,
|
||||||
this.executorService = executorService;
|
streamConfig,
|
||||||
this.shardInfo = shardInfo;
|
checkpoint,
|
||||||
this.checkpoint = checkpoint;
|
recordProcessor,
|
||||||
this.recordProcessorCheckpointer =
|
leaseManager,
|
||||||
new RecordProcessorCheckpointer(shardInfo,
|
parentShardPollIntervalMillis,
|
||||||
|
cleanupLeasesOfCompletedShards,
|
||||||
|
executorService,
|
||||||
|
metricsFactory,
|
||||||
|
backoffTimeMillis,
|
||||||
|
skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
|
Optional.empty(),
|
||||||
|
Optional.empty(),
|
||||||
|
config);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param shardInfo Shard information
|
||||||
|
* @param streamConfig Stream configuration to use
|
||||||
|
* @param checkpoint Checkpoint tracker
|
||||||
|
* @param recordProcessor Record processor used to process the data records for the shard
|
||||||
|
* @param leaseManager Used to create leases for new shards
|
||||||
|
* @param parentShardPollIntervalMillis Wait for this long if parent shards are not done (or we get an exception)
|
||||||
|
* @param executorService ExecutorService used to execute process tasks for this shard
|
||||||
|
* @param metricsFactory IMetricsFactory used to construct IMetricsScopes for this shard
|
||||||
|
* @param backoffTimeMillis backoff interval when we encounter exceptions
|
||||||
|
* @param retryGetRecordsInSeconds time in seconds to wait before the worker retries to get a record.
|
||||||
|
* @param maxGetRecordsThreadPool max number of threads in the getRecords thread pool.
|
||||||
|
* @param config Kinesis library configuration
|
||||||
|
*/
|
||||||
|
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 10 LINES
|
||||||
|
ShardConsumer(ShardInfo shardInfo,
|
||||||
|
StreamConfig streamConfig,
|
||||||
|
ICheckpoint checkpoint,
|
||||||
|
IRecordProcessor recordProcessor,
|
||||||
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
|
long parentShardPollIntervalMillis,
|
||||||
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
|
ExecutorService executorService,
|
||||||
|
IMetricsFactory metricsFactory,
|
||||||
|
long backoffTimeMillis,
|
||||||
|
boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
|
Optional<Integer> retryGetRecordsInSeconds,
|
||||||
|
Optional<Integer> maxGetRecordsThreadPool,
|
||||||
|
KinesisClientLibConfiguration config) {
|
||||||
|
|
||||||
|
this(
|
||||||
|
shardInfo,
|
||||||
|
streamConfig,
|
||||||
|
checkpoint,
|
||||||
|
recordProcessor,
|
||||||
|
new RecordProcessorCheckpointer(
|
||||||
|
shardInfo,
|
||||||
checkpoint,
|
checkpoint,
|
||||||
new SequenceNumberValidator(streamConfig.getStreamProxy(),
|
new SequenceNumberValidator(
|
||||||
|
streamConfig.getStreamProxy(),
|
||||||
shardInfo.getShardId(),
|
shardInfo.getShardId(),
|
||||||
streamConfig.shouldValidateSequenceNumberBeforeCheckpointing()));
|
streamConfig.shouldValidateSequenceNumberBeforeCheckpointing()),
|
||||||
this.dataFetcher = new KinesisDataFetcher(streamConfig.getStreamProxy(), shardInfo);
|
metricsFactory),
|
||||||
|
leaseManager,
|
||||||
|
parentShardPollIntervalMillis,
|
||||||
|
cleanupLeasesOfCompletedShards,
|
||||||
|
executorService,
|
||||||
|
metricsFactory,
|
||||||
|
backoffTimeMillis,
|
||||||
|
skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
|
new KinesisDataFetcher(streamConfig.getStreamProxy(), shardInfo),
|
||||||
|
retryGetRecordsInSeconds,
|
||||||
|
maxGetRecordsThreadPool,
|
||||||
|
config
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param shardInfo Shard information
|
||||||
|
* @param streamConfig Stream Config to use
|
||||||
|
* @param checkpoint Checkpoint tracker
|
||||||
|
* @param recordProcessor Record processor used to process the data records for the shard
|
||||||
|
* @param recordProcessorCheckpointer RecordProcessorCheckpointer to use to checkpoint progress
|
||||||
|
* @param leaseManager Used to create leases for new shards
|
||||||
|
* @param parentShardPollIntervalMillis Wait for this long if parent shards are not done (or we get an exception)
|
||||||
|
* @param cleanupLeasesOfCompletedShards clean up the leases of completed shards
|
||||||
|
* @param executorService ExecutorService used to execute process tasks for this shard
|
||||||
|
* @param metricsFactory IMetricsFactory used to construct IMetricsScopes for this shard
|
||||||
|
* @param backoffTimeMillis backoff interval when we encounter exceptions
|
||||||
|
* @param skipShardSyncAtWorkerInitializationIfLeasesExist Skip sync at init if lease exists
|
||||||
|
* @param kinesisDataFetcher KinesisDataFetcher to fetch data from Kinesis streams.
|
||||||
|
* @param retryGetRecordsInSeconds time in seconds to wait before the worker retries to get a record
|
||||||
|
* @param maxGetRecordsThreadPool max number of threads in the getRecords thread pool
|
||||||
|
* @param config Kinesis library configuration
|
||||||
|
*/
|
||||||
|
ShardConsumer(ShardInfo shardInfo,
|
||||||
|
StreamConfig streamConfig,
|
||||||
|
ICheckpoint checkpoint,
|
||||||
|
IRecordProcessor recordProcessor,
|
||||||
|
RecordProcessorCheckpointer recordProcessorCheckpointer,
|
||||||
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
|
long parentShardPollIntervalMillis,
|
||||||
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
|
ExecutorService executorService,
|
||||||
|
IMetricsFactory metricsFactory,
|
||||||
|
long backoffTimeMillis,
|
||||||
|
boolean skipShardSyncAtWorkerInitializationIfLeasesExist,
|
||||||
|
KinesisDataFetcher kinesisDataFetcher,
|
||||||
|
Optional<Integer> retryGetRecordsInSeconds,
|
||||||
|
Optional<Integer> maxGetRecordsThreadPool,
|
||||||
|
KinesisClientLibConfiguration config) {
|
||||||
|
this.shardInfo = shardInfo;
|
||||||
|
this.streamConfig = streamConfig;
|
||||||
|
this.checkpoint = checkpoint;
|
||||||
|
this.recordProcessor = recordProcessor;
|
||||||
|
this.recordProcessorCheckpointer = recordProcessorCheckpointer;
|
||||||
this.leaseManager = leaseManager;
|
this.leaseManager = leaseManager;
|
||||||
this.metricsFactory = metricsFactory;
|
|
||||||
this.parentShardPollIntervalMillis = parentShardPollIntervalMillis;
|
this.parentShardPollIntervalMillis = parentShardPollIntervalMillis;
|
||||||
this.cleanupLeasesOfCompletedShards = cleanupLeasesOfCompletedShards;
|
this.cleanupLeasesOfCompletedShards = cleanupLeasesOfCompletedShards;
|
||||||
|
this.executorService = executorService;
|
||||||
|
this.metricsFactory = metricsFactory;
|
||||||
this.taskBackoffTimeMillis = backoffTimeMillis;
|
this.taskBackoffTimeMillis = backoffTimeMillis;
|
||||||
this.skipShardSyncAtWorkerInitializationIfLeasesExist = skipShardSyncAtWorkerInitializationIfLeasesExist;
|
this.skipShardSyncAtWorkerInitializationIfLeasesExist = skipShardSyncAtWorkerInitializationIfLeasesExist;
|
||||||
|
this.config = config;
|
||||||
|
this.dataFetcher = kinesisDataFetcher;
|
||||||
|
this.getRecordsCache = config.getRecordsFetcherFactory().createRecordsFetcher(
|
||||||
|
makeStrategy(this.dataFetcher, retryGetRecordsInSeconds, maxGetRecordsThreadPool, this.shardInfo),
|
||||||
|
this.getShardInfo().getShardId(), this.metricsFactory, this.config.getMaxRecords());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -158,11 +284,17 @@ class ShardConsumer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
final long timeElapsed = System.currentTimeMillis() - currentTaskSubmitTime;
|
||||||
|
final String commonMessage = String.format("Previous %s task still pending for shard %s since %d ms ago. ",
|
||||||
|
currentTask.getTaskType(), shardInfo.getShardId(), timeElapsed);
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug("Previous " + currentTask.getTaskType() + " task still pending for shard "
|
LOG.debug(commonMessage + "Not submitting new task.");
|
||||||
+ shardInfo.getShardId() + " since " + (System.currentTimeMillis() - currentTaskSubmitTime)
|
|
||||||
+ " ms ago" + ". Not submitting new task.");
|
|
||||||
}
|
}
|
||||||
|
config.getLogWarningForTaskAfterMillis().ifPresent(value -> {
|
||||||
|
if (timeElapsed > value) {
|
||||||
|
LOG.warn(commonMessage);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return submittedNewTask;
|
return submittedNewTask;
|
||||||
|
|
@ -281,7 +413,7 @@ class ShardConsumer {
|
||||||
if (taskOutcome == TaskOutcome.END_OF_SHARD) {
|
if (taskOutcome == TaskOutcome.END_OF_SHARD) {
|
||||||
markForShutdown(ShutdownReason.TERMINATE);
|
markForShutdown(ShutdownReason.TERMINATE);
|
||||||
}
|
}
|
||||||
if (isShutdownRequested()) {
|
if (isShutdownRequested() && taskOutcome != TaskOutcome.FAILURE) {
|
||||||
currentState = currentState.shutdownTransition(shutdownReason);
|
currentState = currentState.shutdownTransition(shutdownReason);
|
||||||
} else if (taskOutcome == TaskOutcome.SUCCESSFUL) {
|
} else if (taskOutcome == TaskOutcome.SUCCESSFUL) {
|
||||||
if (currentState.getTaskType() == currentTask.getTaskType()) {
|
if (currentState.getTaskType() == currentTask.getTaskType()) {
|
||||||
|
|
@ -353,6 +485,10 @@ class ShardConsumer {
|
||||||
return cleanupLeasesOfCompletedShards;
|
return cleanupLeasesOfCompletedShards;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
boolean isIgnoreUnexpectedChildShards() {
|
||||||
|
return config.shouldIgnoreUnexpectedChildShards();
|
||||||
|
}
|
||||||
|
|
||||||
long getTaskBackoffTimeMillis() {
|
long getTaskBackoffTimeMillis() {
|
||||||
return taskBackoffTimeMillis;
|
return taskBackoffTimeMillis;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
@ -19,8 +19,8 @@ import java.util.Collections;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.commons.lang.builder.EqualsBuilder;
|
import org.apache.commons.lang3.builder.EqualsBuilder;
|
||||||
import org.apache.commons.lang.builder.HashCodeBuilder;
|
import org.apache.commons.lang3.builder.HashCodeBuilder;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,7 @@ class ShardSyncTask implements ITask {
|
||||||
private final ILeaseManager<KinesisClientLease> leaseManager;
|
private final ILeaseManager<KinesisClientLease> leaseManager;
|
||||||
private InitialPositionInStreamExtended initialPosition;
|
private InitialPositionInStreamExtended initialPosition;
|
||||||
private final boolean cleanupLeasesUponShardCompletion;
|
private final boolean cleanupLeasesUponShardCompletion;
|
||||||
|
private final boolean ignoreUnexpectedChildShards;
|
||||||
private final long shardSyncTaskIdleTimeMillis;
|
private final long shardSyncTaskIdleTimeMillis;
|
||||||
private final TaskType taskType = TaskType.SHARDSYNC;
|
private final TaskType taskType = TaskType.SHARDSYNC;
|
||||||
|
|
||||||
|
|
@ -49,11 +50,13 @@ class ShardSyncTask implements ITask {
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
InitialPositionInStreamExtended initialPositionInStream,
|
InitialPositionInStreamExtended initialPositionInStream,
|
||||||
boolean cleanupLeasesUponShardCompletion,
|
boolean cleanupLeasesUponShardCompletion,
|
||||||
|
boolean ignoreUnexpectedChildShards,
|
||||||
long shardSyncTaskIdleTimeMillis) {
|
long shardSyncTaskIdleTimeMillis) {
|
||||||
this.kinesisProxy = kinesisProxy;
|
this.kinesisProxy = kinesisProxy;
|
||||||
this.leaseManager = leaseManager;
|
this.leaseManager = leaseManager;
|
||||||
this.initialPosition = initialPositionInStream;
|
this.initialPosition = initialPositionInStream;
|
||||||
this.cleanupLeasesUponShardCompletion = cleanupLeasesUponShardCompletion;
|
this.cleanupLeasesUponShardCompletion = cleanupLeasesUponShardCompletion;
|
||||||
|
this.ignoreUnexpectedChildShards = ignoreUnexpectedChildShards;
|
||||||
this.shardSyncTaskIdleTimeMillis = shardSyncTaskIdleTimeMillis;
|
this.shardSyncTaskIdleTimeMillis = shardSyncTaskIdleTimeMillis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -68,7 +71,8 @@ class ShardSyncTask implements ITask {
|
||||||
ShardSyncer.checkAndCreateLeasesForNewShards(kinesisProxy,
|
ShardSyncer.checkAndCreateLeasesForNewShards(kinesisProxy,
|
||||||
leaseManager,
|
leaseManager,
|
||||||
initialPosition,
|
initialPosition,
|
||||||
cleanupLeasesUponShardCompletion);
|
cleanupLeasesUponShardCompletion,
|
||||||
|
ignoreUnexpectedChildShards);
|
||||||
if (shardSyncTaskIdleTimeMillis > 0) {
|
if (shardSyncTaskIdleTimeMillis > 0) {
|
||||||
Thread.sleep(shardSyncTaskIdleTimeMillis);
|
Thread.sleep(shardSyncTaskIdleTimeMillis);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -44,6 +44,7 @@ class ShardSyncTaskManager {
|
||||||
private final ExecutorService executorService;
|
private final ExecutorService executorService;
|
||||||
private final InitialPositionInStreamExtended initialPositionInStream;
|
private final InitialPositionInStreamExtended initialPositionInStream;
|
||||||
private boolean cleanupLeasesUponShardCompletion;
|
private boolean cleanupLeasesUponShardCompletion;
|
||||||
|
private boolean ignoreUnexpectedChildShards;
|
||||||
private final long shardSyncIdleTimeMillis;
|
private final long shardSyncIdleTimeMillis;
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -55,6 +56,7 @@ class ShardSyncTaskManager {
|
||||||
* @param initialPositionInStream Initial position in stream
|
* @param initialPositionInStream Initial position in stream
|
||||||
* @param cleanupLeasesUponShardCompletion Clean up leases for shards that we've finished processing (don't wait
|
* @param cleanupLeasesUponShardCompletion Clean up leases for shards that we've finished processing (don't wait
|
||||||
* until they expire)
|
* until they expire)
|
||||||
|
* @param ignoreUnexpectedChildShards Ignore child shards with open parents
|
||||||
* @param shardSyncIdleTimeMillis Time between tasks to sync leases and Kinesis shards
|
* @param shardSyncIdleTimeMillis Time between tasks to sync leases and Kinesis shards
|
||||||
* @param metricsFactory Metrics factory
|
* @param metricsFactory Metrics factory
|
||||||
* @param executorService ExecutorService to execute the shard sync tasks
|
* @param executorService ExecutorService to execute the shard sync tasks
|
||||||
|
|
@ -63,6 +65,7 @@ class ShardSyncTaskManager {
|
||||||
final ILeaseManager<KinesisClientLease> leaseManager,
|
final ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
final InitialPositionInStreamExtended initialPositionInStream,
|
final InitialPositionInStreamExtended initialPositionInStream,
|
||||||
final boolean cleanupLeasesUponShardCompletion,
|
final boolean cleanupLeasesUponShardCompletion,
|
||||||
|
final boolean ignoreUnexpectedChildShards,
|
||||||
final long shardSyncIdleTimeMillis,
|
final long shardSyncIdleTimeMillis,
|
||||||
final IMetricsFactory metricsFactory,
|
final IMetricsFactory metricsFactory,
|
||||||
ExecutorService executorService) {
|
ExecutorService executorService) {
|
||||||
|
|
@ -70,6 +73,7 @@ class ShardSyncTaskManager {
|
||||||
this.leaseManager = leaseManager;
|
this.leaseManager = leaseManager;
|
||||||
this.metricsFactory = metricsFactory;
|
this.metricsFactory = metricsFactory;
|
||||||
this.cleanupLeasesUponShardCompletion = cleanupLeasesUponShardCompletion;
|
this.cleanupLeasesUponShardCompletion = cleanupLeasesUponShardCompletion;
|
||||||
|
this.ignoreUnexpectedChildShards = ignoreUnexpectedChildShards;
|
||||||
this.shardSyncIdleTimeMillis = shardSyncIdleTimeMillis;
|
this.shardSyncIdleTimeMillis = shardSyncIdleTimeMillis;
|
||||||
this.executorService = executorService;
|
this.executorService = executorService;
|
||||||
this.initialPositionInStream = initialPositionInStream;
|
this.initialPositionInStream = initialPositionInStream;
|
||||||
|
|
@ -99,6 +103,7 @@ class ShardSyncTaskManager {
|
||||||
leaseManager,
|
leaseManager,
|
||||||
initialPositionInStream,
|
initialPositionInStream,
|
||||||
cleanupLeasesUponShardCompletion,
|
cleanupLeasesUponShardCompletion,
|
||||||
|
ignoreUnexpectedChildShards,
|
||||||
shardSyncIdleTimeMillis), metricsFactory);
|
shardSyncIdleTimeMillis), metricsFactory);
|
||||||
future = executorService.submit(currentTask);
|
future = executorService.submit(currentTask);
|
||||||
submittedNewTask = true;
|
submittedNewTask = true;
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ import java.util.Set;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.internal.KinesisClientLibIOException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.internal.KinesisClientLibIOException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
||||||
|
|
@ -60,9 +61,11 @@ class ShardSyncer {
|
||||||
static synchronized void bootstrapShardLeases(IKinesisProxy kinesisProxy,
|
static synchronized void bootstrapShardLeases(IKinesisProxy kinesisProxy,
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
InitialPositionInStreamExtended initialPositionInStream,
|
InitialPositionInStreamExtended initialPositionInStream,
|
||||||
boolean cleanupLeasesOfCompletedShards)
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
|
boolean ignoreUnexpectedChildShards)
|
||||||
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
||||||
syncShardLeases(kinesisProxy, leaseManager, initialPositionInStream, cleanupLeasesOfCompletedShards);
|
syncShardLeases(kinesisProxy, leaseManager, initialPositionInStream, cleanupLeasesOfCompletedShards,
|
||||||
|
ignoreUnexpectedChildShards);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -71,21 +74,28 @@ class ShardSyncer {
|
||||||
* @param kinesisProxy
|
* @param kinesisProxy
|
||||||
* @param leaseManager
|
* @param leaseManager
|
||||||
* @param initialPositionInStream
|
* @param initialPositionInStream
|
||||||
* @param expectedClosedShardId If this is not null, we will assert that the shard list we get from Kinesis
|
* @param cleanupLeasesOfCompletedShards
|
||||||
* shows this shard to be closed (e.g. parent shard must be closed after a reshard operation).
|
* @param ignoreUnexpectedChildShards
|
||||||
* If it is open, we assume this is an race condition around a reshard event and throw
|
|
||||||
* a KinesisClientLibIOException so client can backoff and retry later.
|
|
||||||
* @throws DependencyException
|
* @throws DependencyException
|
||||||
* @throws InvalidStateException
|
* @throws InvalidStateException
|
||||||
* @throws ProvisionedThroughputException
|
* @throws ProvisionedThroughputException
|
||||||
* @throws KinesisClientLibIOException
|
* @throws KinesisClientLibIOException
|
||||||
*/
|
*/
|
||||||
|
static synchronized void checkAndCreateLeasesForNewShards(IKinesisProxy kinesisProxy,
|
||||||
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
|
InitialPositionInStreamExtended initialPositionInStream,
|
||||||
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
|
boolean ignoreUnexpectedChildShards)
|
||||||
|
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
||||||
|
syncShardLeases(kinesisProxy, leaseManager, initialPositionInStream, cleanupLeasesOfCompletedShards, ignoreUnexpectedChildShards);
|
||||||
|
}
|
||||||
|
|
||||||
static synchronized void checkAndCreateLeasesForNewShards(IKinesisProxy kinesisProxy,
|
static synchronized void checkAndCreateLeasesForNewShards(IKinesisProxy kinesisProxy,
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
InitialPositionInStreamExtended initialPositionInStream,
|
InitialPositionInStreamExtended initialPositionInStream,
|
||||||
boolean cleanupLeasesOfCompletedShards)
|
boolean cleanupLeasesOfCompletedShards)
|
||||||
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
||||||
syncShardLeases(kinesisProxy, leaseManager, initialPositionInStream, cleanupLeasesOfCompletedShards);
|
checkAndCreateLeasesForNewShards(kinesisProxy, leaseManager, initialPositionInStream, cleanupLeasesOfCompletedShards, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -93,11 +103,9 @@ class ShardSyncer {
|
||||||
*
|
*
|
||||||
* @param kinesisProxy
|
* @param kinesisProxy
|
||||||
* @param leaseManager
|
* @param leaseManager
|
||||||
* @param expectedClosedShardId If this is not null, we will assert that the shard list we get from Kinesis
|
* @param initialPosition
|
||||||
* does not show this shard to be open (e.g. parent shard must be closed after a reshard operation).
|
* @param cleanupLeasesOfCompletedShards
|
||||||
* If it is still open, we assume this is a race condition around a reshard event and
|
* @param ignoreUnexpectedChildShards
|
||||||
* throw a KinesisClientLibIOException so client can backoff and retry later. If the shard doesn't exist in
|
|
||||||
* Kinesis at all, we assume this is an old/expired shard and continue with the sync operation.
|
|
||||||
* @throws DependencyException
|
* @throws DependencyException
|
||||||
* @throws InvalidStateException
|
* @throws InvalidStateException
|
||||||
* @throws ProvisionedThroughputException
|
* @throws ProvisionedThroughputException
|
||||||
|
|
@ -107,18 +115,23 @@ class ShardSyncer {
|
||||||
private static synchronized void syncShardLeases(IKinesisProxy kinesisProxy,
|
private static synchronized void syncShardLeases(IKinesisProxy kinesisProxy,
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
InitialPositionInStreamExtended initialPosition,
|
InitialPositionInStreamExtended initialPosition,
|
||||||
boolean cleanupLeasesOfCompletedShards)
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
|
boolean ignoreUnexpectedChildShards)
|
||||||
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
throws DependencyException, InvalidStateException, ProvisionedThroughputException, KinesisClientLibIOException {
|
||||||
List<Shard> shards = getShardList(kinesisProxy);
|
List<Shard> shards = getShardList(kinesisProxy);
|
||||||
LOG.debug("Num shards: " + shards.size());
|
LOG.debug("Num shards: " + shards.size());
|
||||||
|
|
||||||
Map<String, Shard> shardIdToShardMap = constructShardIdToShardMap(shards);
|
Map<String, Shard> shardIdToShardMap = constructShardIdToShardMap(shards);
|
||||||
Map<String, Set<String>> shardIdToChildShardIdsMap = constructShardIdToChildShardIdsMap(shardIdToShardMap);
|
Map<String, Set<String>> shardIdToChildShardIdsMap = constructShardIdToChildShardIdsMap(shardIdToShardMap);
|
||||||
assertAllParentShardsAreClosed(shardIdToChildShardIdsMap, shardIdToShardMap);
|
Set<String> inconsistentShardIds = findInconsistentShardIds(shardIdToChildShardIdsMap, shardIdToShardMap);
|
||||||
|
if (!ignoreUnexpectedChildShards) {
|
||||||
|
assertAllParentShardsAreClosed(inconsistentShardIds);
|
||||||
|
}
|
||||||
|
|
||||||
List<KinesisClientLease> currentLeases = leaseManager.listLeases();
|
List<KinesisClientLease> currentLeases = leaseManager.listLeases();
|
||||||
|
|
||||||
List<KinesisClientLease> newLeasesToCreate = determineNewLeasesToCreate(shards, currentLeases, initialPosition);
|
List<KinesisClientLease> newLeasesToCreate = determineNewLeasesToCreate(shards, currentLeases, initialPosition,
|
||||||
|
inconsistentShardIds);
|
||||||
LOG.debug("Num new leases to create: " + newLeasesToCreate.size());
|
LOG.debug("Num new leases to create: " + newLeasesToCreate.size());
|
||||||
for (KinesisClientLease lease : newLeasesToCreate) {
|
for (KinesisClientLease lease : newLeasesToCreate) {
|
||||||
long startTimeMillis = System.currentTimeMillis();
|
long startTimeMillis = System.currentTimeMillis();
|
||||||
|
|
@ -149,19 +162,37 @@ class ShardSyncer {
|
||||||
|
|
||||||
/** Helper method to detect a race condition between fetching the shards via paginated DescribeStream calls
|
/** Helper method to detect a race condition between fetching the shards via paginated DescribeStream calls
|
||||||
* and a reshard operation.
|
* and a reshard operation.
|
||||||
* @param shardIdToChildShardIdsMap
|
* @param inconsistentShardIds
|
||||||
* @param shardIdToShardMap
|
|
||||||
* @throws KinesisClientLibIOException
|
* @throws KinesisClientLibIOException
|
||||||
*/
|
*/
|
||||||
private static void assertAllParentShardsAreClosed(Map<String, Set<String>> shardIdToChildShardIdsMap,
|
private static void assertAllParentShardsAreClosed(Set<String> inconsistentShardIds)
|
||||||
Map<String, Shard> shardIdToShardMap) throws KinesisClientLibIOException {
|
throws KinesisClientLibIOException {
|
||||||
|
if (!inconsistentShardIds.isEmpty()) {
|
||||||
|
String ids = StringUtils.join(inconsistentShardIds, ' ');
|
||||||
|
throw new KinesisClientLibIOException(String.format("%d open child shards (%s) are inconsistent. "
|
||||||
|
+ "This can happen due to a race condition between describeStream and a reshard operation.",
|
||||||
|
inconsistentShardIds.size(), ids));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper method to construct the list of inconsistent shards, which are open shards with non-closed ancestor
|
||||||
|
* parent(s).
|
||||||
|
* @param shardIdToChildShardIdsMap
|
||||||
|
* @param shardIdToShardMap
|
||||||
|
* @return Set of inconsistent open shard ids for shards having open parents.
|
||||||
|
*/
|
||||||
|
private static Set<String> findInconsistentShardIds(Map<String, Set<String>> shardIdToChildShardIdsMap,
|
||||||
|
Map<String, Shard> shardIdToShardMap) {
|
||||||
|
Set<String> result = new HashSet<String>();
|
||||||
for (String parentShardId : shardIdToChildShardIdsMap.keySet()) {
|
for (String parentShardId : shardIdToChildShardIdsMap.keySet()) {
|
||||||
Shard parentShard = shardIdToShardMap.get(parentShardId);
|
Shard parentShard = shardIdToShardMap.get(parentShardId);
|
||||||
if ((parentShardId == null) || (parentShard.getSequenceNumberRange().getEndingSequenceNumber() == null)) {
|
if ((parentShardId == null) || (parentShard.getSequenceNumberRange().getEndingSequenceNumber() == null)) {
|
||||||
throw new KinesisClientLibIOException("Parent shardId " + parentShardId + " is not closed. "
|
Set<String> childShardIdsMap = shardIdToChildShardIdsMap.get(parentShardId);
|
||||||
+ "This can happen due to a race condition between describeStream and a reshard operation.");
|
result.addAll(childShardIdsMap);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -296,8 +327,8 @@ class ShardSyncer {
|
||||||
/**
|
/**
|
||||||
* Determine new leases to create and their initial checkpoint.
|
* Determine new leases to create and their initial checkpoint.
|
||||||
* Note: Package level access only for testing purposes.
|
* Note: Package level access only for testing purposes.
|
||||||
*
|
*
|
||||||
* For each open (no ending sequence number) shard that doesn't already have a lease,
|
* For each open (no ending sequence number) shard without open parents that doesn't already have a lease,
|
||||||
* determine if it is a descendent of any shard which is or will be processed (e.g. for which a lease exists):
|
* determine if it is a descendent of any shard which is or will be processed (e.g. for which a lease exists):
|
||||||
* If so, set checkpoint of the shard to TrimHorizon and also create leases for ancestors if needed.
|
* If so, set checkpoint of the shard to TrimHorizon and also create leases for ancestors if needed.
|
||||||
* If not, set checkpoint of the shard to the initial position specified by the client.
|
* If not, set checkpoint of the shard to the initial position specified by the client.
|
||||||
|
|
@ -315,27 +346,35 @@ class ShardSyncer {
|
||||||
*
|
*
|
||||||
* For example:
|
* For example:
|
||||||
* Shard structure (each level depicts a stream segment):
|
* Shard structure (each level depicts a stream segment):
|
||||||
* 0 1 2 3 4 5- shards till epoch 102
|
* 0 1 2 3 4 5 - shards till epoch 102
|
||||||
* \ / \ / | |
|
* \ / \ / | |
|
||||||
* 6 7 4 5- shards from epoch 103 - 205
|
* 6 7 4 5 - shards from epoch 103 - 205
|
||||||
* \ / | /\
|
* \ / | / \
|
||||||
* 8 4 9 10 - shards from epoch 206 (open - no ending sequenceNumber)
|
* 8 4 9 10 - shards from epoch 206 (open - no ending sequenceNumber)
|
||||||
* Current leases: (3, 4, 5)
|
* Current leases: (3, 4, 5)
|
||||||
* New leases to create: (2, 6, 7, 8, 9, 10)
|
* New leases to create: (2, 6, 7, 8, 9, 10)
|
||||||
*
|
*
|
||||||
* The leases returned are sorted by the starting sequence number - following the same order
|
* The leases returned are sorted by the starting sequence number - following the same order
|
||||||
* when persisting the leases in DynamoDB will ensure that we recover gracefully if we fail
|
* when persisting the leases in DynamoDB will ensure that we recover gracefully if we fail
|
||||||
* before creating all the leases.
|
* before creating all the leases.
|
||||||
|
*
|
||||||
|
* If a shard has no existing lease, is open, and is a descendant of a parent which is still open, we ignore it
|
||||||
|
* here; this happens when the list of shards is inconsistent, which could be due to pagination delay for very
|
||||||
|
* high shard count streams (i.e., dynamodb streams for tables with thousands of partitions). This can only
|
||||||
|
* currently happen here if ignoreUnexpectedChildShards was true in syncShardleases.
|
||||||
|
*
|
||||||
*
|
*
|
||||||
* @param shards List of all shards in Kinesis (we'll create new leases based on this set)
|
* @param shards List of all shards in Kinesis (we'll create new leases based on this set)
|
||||||
* @param currentLeases List of current leases
|
* @param currentLeases List of current leases
|
||||||
* @param initialPosition One of LATEST, TRIM_HORIZON, or AT_TIMESTAMP. We'll start fetching records from that
|
* @param initialPosition One of LATEST, TRIM_HORIZON, or AT_TIMESTAMP. We'll start fetching records from that
|
||||||
* location in the shard (when an application starts up for the first time - and there are no checkpoints).
|
* location in the shard (when an application starts up for the first time - and there are no checkpoints).
|
||||||
|
* @param inconsistentShardIds Set of child shard ids having open parents.
|
||||||
* @return List of new leases to create sorted by starting sequenceNumber of the corresponding shard
|
* @return List of new leases to create sorted by starting sequenceNumber of the corresponding shard
|
||||||
*/
|
*/
|
||||||
static List<KinesisClientLease> determineNewLeasesToCreate(List<Shard> shards,
|
static List<KinesisClientLease> determineNewLeasesToCreate(List<Shard> shards,
|
||||||
List<KinesisClientLease> currentLeases,
|
List<KinesisClientLease> currentLeases,
|
||||||
InitialPositionInStreamExtended initialPosition) {
|
InitialPositionInStreamExtended initialPosition,
|
||||||
|
Set<String> inconsistentShardIds) {
|
||||||
Map<String, KinesisClientLease> shardIdToNewLeaseMap = new HashMap<String, KinesisClientLease>();
|
Map<String, KinesisClientLease> shardIdToNewLeaseMap = new HashMap<String, KinesisClientLease>();
|
||||||
Map<String, Shard> shardIdToShardMapOfAllKinesisShards = constructShardIdToShardMap(shards);
|
Map<String, Shard> shardIdToShardMapOfAllKinesisShards = constructShardIdToShardMap(shards);
|
||||||
|
|
||||||
|
|
@ -354,6 +393,8 @@ class ShardSyncer {
|
||||||
LOG.debug("Evaluating leases for open shard " + shardId + " and its ancestors.");
|
LOG.debug("Evaluating leases for open shard " + shardId + " and its ancestors.");
|
||||||
if (shardIdsOfCurrentLeases.contains(shardId)) {
|
if (shardIdsOfCurrentLeases.contains(shardId)) {
|
||||||
LOG.debug("Lease for shardId " + shardId + " already exists. Not creating a lease");
|
LOG.debug("Lease for shardId " + shardId + " already exists. Not creating a lease");
|
||||||
|
} else if (inconsistentShardIds.contains(shardId)) {
|
||||||
|
LOG.info("shardId " + shardId + " is an inconsistent child. Not creating a lease");
|
||||||
} else {
|
} else {
|
||||||
LOG.debug("Need to create a lease for shardId " + shardId);
|
LOG.debug("Need to create a lease for shardId " + shardId);
|
||||||
KinesisClientLease newLease = newKCLLease(shard);
|
KinesisClientLease newLease = newKCLLease(shard);
|
||||||
|
|
@ -407,6 +448,17 @@ class ShardSyncer {
|
||||||
return newLeasesToCreate;
|
return newLeasesToCreate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Determine new leases to create and their initial checkpoint.
|
||||||
|
* Note: Package level access only for testing purposes.
|
||||||
|
*/
|
||||||
|
static List<KinesisClientLease> determineNewLeasesToCreate(List<Shard> shards,
|
||||||
|
List<KinesisClientLease> currentLeases,
|
||||||
|
InitialPositionInStreamExtended initialPosition) {
|
||||||
|
Set<String> inconsistentShardIds = new HashSet<String>();
|
||||||
|
return determineNewLeasesToCreate(shards, currentLeases, initialPosition, inconsistentShardIds);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Note: Package level access for testing purposes only.
|
* Note: Package level access for testing purposes only.
|
||||||
* Check if this shard is a descendant of a shard that is (or will be) processed.
|
* Check if this shard is a descendant of a shard that is (or will be) processed.
|
||||||
|
|
|
||||||
|
|
@ -1,155 +0,0 @@
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
|
||||||
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.concurrent.Future;
|
|
||||||
import java.util.concurrent.TimeUnit;
|
|
||||||
import java.util.concurrent.TimeoutException;
|
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Used as a response from the {@link Worker#requestShutdown()} to allow callers to wait until shutdown is complete.
|
|
||||||
*/
|
|
||||||
class ShutdownFuture implements Future<Void> {
|
|
||||||
|
|
||||||
private static final Log log = LogFactory.getLog(ShutdownFuture.class);
|
|
||||||
|
|
||||||
private final CountDownLatch shutdownCompleteLatch;
|
|
||||||
private final CountDownLatch notificationCompleteLatch;
|
|
||||||
private final Worker worker;
|
|
||||||
|
|
||||||
ShutdownFuture(CountDownLatch shutdownCompleteLatch, CountDownLatch notificationCompleteLatch, Worker worker) {
|
|
||||||
this.shutdownCompleteLatch = shutdownCompleteLatch;
|
|
||||||
this.notificationCompleteLatch = notificationCompleteLatch;
|
|
||||||
this.worker = worker;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean cancel(boolean mayInterruptIfRunning) {
|
|
||||||
throw new UnsupportedOperationException("Cannot cancel a shutdown process");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isCancelled() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isDone() {
|
|
||||||
return isWorkerShutdownComplete();
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isWorkerShutdownComplete() {
|
|
||||||
return worker.isShutdownComplete() || worker.getShardInfoShardConsumerMap().isEmpty();
|
|
||||||
}
|
|
||||||
|
|
||||||
private long outstandingRecordProcessors(long timeout, TimeUnit unit)
|
|
||||||
throws InterruptedException, ExecutionException, TimeoutException {
|
|
||||||
|
|
||||||
final long startNanos = System.nanoTime();
|
|
||||||
|
|
||||||
//
|
|
||||||
// Awaiting for all ShardConsumer/RecordProcessors to be notified that a shutdown has been requested.
|
|
||||||
// There is the possibility of a race condition where a lease is terminated after the shutdown request
|
|
||||||
// notification is started, but before the ShardConsumer is sent the notification. In this case the
|
|
||||||
// ShardConsumer would start the lease loss shutdown, and may never call the notification methods.
|
|
||||||
//
|
|
||||||
if (!notificationCompleteLatch.await(timeout, unit)) {
|
|
||||||
long awaitingNotification = notificationCompleteLatch.getCount();
|
|
||||||
long awaitingFinalShutdown = shutdownCompleteLatch.getCount();
|
|
||||||
log.info("Awaiting " + awaitingNotification + " record processors to complete shutdown notification, and "
|
|
||||||
+ awaitingFinalShutdown + " awaiting final shutdown");
|
|
||||||
if (awaitingFinalShutdown != 0) {
|
|
||||||
//
|
|
||||||
// The number of record processor awaiting final shutdown should be a superset of the those awaiting
|
|
||||||
// notification
|
|
||||||
//
|
|
||||||
return checkWorkerShutdownMiss(awaitingFinalShutdown);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
long remaining = remainingTimeout(timeout, unit, startNanos);
|
|
||||||
throwTimeoutMessageIfExceeded(remaining, "Notification hasn't completed within timeout time.");
|
|
||||||
|
|
||||||
//
|
|
||||||
// Once all record processors have been notified of the shutdown it is safe to allow the worker to
|
|
||||||
// start its shutdown behavior. Once shutdown starts it will stop renewer, and drop any remaining leases.
|
|
||||||
//
|
|
||||||
worker.shutdown();
|
|
||||||
remaining = remainingTimeout(timeout, unit, startNanos);
|
|
||||||
throwTimeoutMessageIfExceeded(remaining, "Shutdown hasn't completed within timeout time.");
|
|
||||||
|
|
||||||
//
|
|
||||||
// Want to wait for all the remaining ShardConsumers/RecordProcessor's to complete their final shutdown
|
|
||||||
// processing. This should really be a no-op since as part of the notification completion the lease for
|
|
||||||
// ShardConsumer is terminated.
|
|
||||||
//
|
|
||||||
if (!shutdownCompleteLatch.await(remaining, TimeUnit.NANOSECONDS)) {
|
|
||||||
long outstanding = shutdownCompleteLatch.getCount();
|
|
||||||
log.info("Awaiting " + outstanding + " record processors to complete final shutdown");
|
|
||||||
|
|
||||||
return checkWorkerShutdownMiss(outstanding);
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
private long remainingTimeout(long timeout, TimeUnit unit, long startNanos) {
|
|
||||||
long checkNanos = System.nanoTime() - startNanos;
|
|
||||||
return unit.toNanos(timeout) - checkNanos;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void throwTimeoutMessageIfExceeded(long remainingNanos, String message) throws TimeoutException {
|
|
||||||
if (remainingNanos <= 0) {
|
|
||||||
throw new TimeoutException(message);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This checks to see if the worker has already hit it's shutdown target, while there is outstanding record
|
|
||||||
* processors. This maybe a little racy due to when the value of outstanding is retrieved. In general though the
|
|
||||||
* latch should be decremented before the shutdown completion.
|
|
||||||
*
|
|
||||||
* @param outstanding
|
|
||||||
* the number of record processor still awaiting shutdown.
|
|
||||||
* @return the number of record processors awaiting shutdown, or 0 if the worker believes it's shutdown already.
|
|
||||||
*/
|
|
||||||
private long checkWorkerShutdownMiss(long outstanding) {
|
|
||||||
if (isWorkerShutdownComplete()) {
|
|
||||||
if (outstanding != 0) {
|
|
||||||
log.info("Shutdown completed, but shutdownCompleteLatch still had outstanding " + outstanding
|
|
||||||
+ " with a current value of " + shutdownCompleteLatch.getCount() + ". shutdownComplete: "
|
|
||||||
+ worker.isShutdownComplete() + " -- Consumer Map: "
|
|
||||||
+ worker.getShardInfoShardConsumerMap().size());
|
|
||||||
}
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
return outstanding;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Void get() throws InterruptedException, ExecutionException {
|
|
||||||
boolean complete = false;
|
|
||||||
do {
|
|
||||||
try {
|
|
||||||
long outstanding = outstandingRecordProcessors(1, TimeUnit.SECONDS);
|
|
||||||
complete = outstanding == 0;
|
|
||||||
log.info("Awaiting " + outstanding + " consumer(s) to finish shutdown.");
|
|
||||||
} catch (TimeoutException te) {
|
|
||||||
log.info("Timeout while waiting for completion: " + te.getMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
} while(!complete);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Void get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
|
|
||||||
long outstanding = outstandingRecordProcessors(timeout, unit);
|
|
||||||
if (outstanding != 0) {
|
|
||||||
throw new TimeoutException("Awaiting " + outstanding + " record processors to shutdown.");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ShutdownInput;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ShutdownInput;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
|
@ -44,22 +44,26 @@ class ShutdownTask implements ITask {
|
||||||
private final ILeaseManager<KinesisClientLease> leaseManager;
|
private final ILeaseManager<KinesisClientLease> leaseManager;
|
||||||
private final InitialPositionInStreamExtended initialPositionInStream;
|
private final InitialPositionInStreamExtended initialPositionInStream;
|
||||||
private final boolean cleanupLeasesOfCompletedShards;
|
private final boolean cleanupLeasesOfCompletedShards;
|
||||||
|
private final boolean ignoreUnexpectedChildShards;
|
||||||
private final TaskType taskType = TaskType.SHUTDOWN;
|
private final TaskType taskType = TaskType.SHUTDOWN;
|
||||||
private final long backoffTimeMillis;
|
private final long backoffTimeMillis;
|
||||||
|
private final GetRecordsCache getRecordsCache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*/
|
*/
|
||||||
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 10 LINES
|
// CHECKSTYLE:IGNORE ParameterNumber FOR NEXT 10 LINES
|
||||||
ShutdownTask(ShardInfo shardInfo,
|
ShutdownTask(ShardInfo shardInfo,
|
||||||
IRecordProcessor recordProcessor,
|
IRecordProcessor recordProcessor,
|
||||||
RecordProcessorCheckpointer recordProcessorCheckpointer,
|
RecordProcessorCheckpointer recordProcessorCheckpointer,
|
||||||
ShutdownReason reason,
|
ShutdownReason reason,
|
||||||
IKinesisProxy kinesisProxy,
|
IKinesisProxy kinesisProxy,
|
||||||
InitialPositionInStreamExtended initialPositionInStream,
|
InitialPositionInStreamExtended initialPositionInStream,
|
||||||
boolean cleanupLeasesOfCompletedShards,
|
boolean cleanupLeasesOfCompletedShards,
|
||||||
ILeaseManager<KinesisClientLease> leaseManager,
|
boolean ignoreUnexpectedChildShards,
|
||||||
long backoffTimeMillis) {
|
ILeaseManager<KinesisClientLease> leaseManager,
|
||||||
|
long backoffTimeMillis,
|
||||||
|
GetRecordsCache getRecordsCache) {
|
||||||
this.shardInfo = shardInfo;
|
this.shardInfo = shardInfo;
|
||||||
this.recordProcessor = recordProcessor;
|
this.recordProcessor = recordProcessor;
|
||||||
this.recordProcessorCheckpointer = recordProcessorCheckpointer;
|
this.recordProcessorCheckpointer = recordProcessorCheckpointer;
|
||||||
|
|
@ -67,8 +71,10 @@ class ShutdownTask implements ITask {
|
||||||
this.kinesisProxy = kinesisProxy;
|
this.kinesisProxy = kinesisProxy;
|
||||||
this.initialPositionInStream = initialPositionInStream;
|
this.initialPositionInStream = initialPositionInStream;
|
||||||
this.cleanupLeasesOfCompletedShards = cleanupLeasesOfCompletedShards;
|
this.cleanupLeasesOfCompletedShards = cleanupLeasesOfCompletedShards;
|
||||||
|
this.ignoreUnexpectedChildShards = ignoreUnexpectedChildShards;
|
||||||
this.leaseManager = leaseManager;
|
this.leaseManager = leaseManager;
|
||||||
this.backoffTimeMillis = backoffTimeMillis;
|
this.backoffTimeMillis = backoffTimeMillis;
|
||||||
|
this.getRecordsCache = getRecordsCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
@ -79,7 +85,7 @@ class ShutdownTask implements ITask {
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public TaskResult call() {
|
public TaskResult call() {
|
||||||
Exception exception = null;
|
Exception exception;
|
||||||
boolean applicationException = false;
|
boolean applicationException = false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -107,6 +113,8 @@ class ShutdownTask implements ITask {
|
||||||
+ shardInfo.getShardId());
|
+ shardInfo.getShardId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
LOG.debug("Shutting down retrieval strategy.");
|
||||||
|
getRecordsCache.shutdown();
|
||||||
LOG.debug("Record processor completed shutdown() for shard " + shardInfo.getShardId());
|
LOG.debug("Record processor completed shutdown() for shard " + shardInfo.getShardId());
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
applicationException = true;
|
applicationException = true;
|
||||||
|
|
@ -122,7 +130,8 @@ class ShutdownTask implements ITask {
|
||||||
ShardSyncer.checkAndCreateLeasesForNewShards(kinesisProxy,
|
ShardSyncer.checkAndCreateLeasesForNewShards(kinesisProxy,
|
||||||
leaseManager,
|
leaseManager,
|
||||||
initialPositionInStream,
|
initialPositionInStream,
|
||||||
cleanupLeasesOfCompletedShards);
|
cleanupLeasesOfCompletedShards,
|
||||||
|
ignoreUnexpectedChildShards);
|
||||||
LOG.debug("Finished checking for child shards of shard " + shardInfo.getShardId());
|
LOG.debug("Finished checking for child shards of shard " + shardInfo.getShardId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,74 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
|
||||||
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
@CommonsLog
|
||||||
|
public class SimpleRecordsFetcherFactory implements RecordsFetcherFactory {
|
||||||
|
private int maxPendingProcessRecordsInput = 3;
|
||||||
|
private int maxByteSize = 8 * 1024 * 1024;
|
||||||
|
private int maxRecordsCount = 30000;
|
||||||
|
private long idleMillisBetweenCalls = 1500L;
|
||||||
|
private DataFetchingStrategy dataFetchingStrategy = DataFetchingStrategy.DEFAULT;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsCache createRecordsFetcher(GetRecordsRetrievalStrategy getRecordsRetrievalStrategy, String shardId,
|
||||||
|
IMetricsFactory metricsFactory, int maxRecords) {
|
||||||
|
if(dataFetchingStrategy.equals(DataFetchingStrategy.DEFAULT)) {
|
||||||
|
return new BlockingGetRecordsCache(maxRecords, getRecordsRetrievalStrategy);
|
||||||
|
} else {
|
||||||
|
return new PrefetchGetRecordsCache(maxPendingProcessRecordsInput, maxByteSize, maxRecordsCount, maxRecords,
|
||||||
|
getRecordsRetrievalStrategy,
|
||||||
|
Executors.newFixedThreadPool(1, new ThreadFactoryBuilder()
|
||||||
|
.setDaemon(true)
|
||||||
|
.setNameFormat("prefetch-cache-" + shardId + "-%04d")
|
||||||
|
.build()),
|
||||||
|
idleMillisBetweenCalls,
|
||||||
|
metricsFactory,
|
||||||
|
"ProcessTask",
|
||||||
|
shardId);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setMaxPendingProcessRecordsInput(int maxPendingProcessRecordsInput){
|
||||||
|
this.maxPendingProcessRecordsInput = maxPendingProcessRecordsInput;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setMaxByteSize(int maxByteSize){
|
||||||
|
this.maxByteSize = maxByteSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setMaxRecordsCount(int maxRecordsCount) {
|
||||||
|
this.maxRecordsCount = maxRecordsCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setDataFetchingStrategy(DataFetchingStrategy dataFetchingStrategy){
|
||||||
|
this.dataFetchingStrategy = dataFetchingStrategy;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIdleMillisBetweenCalls(final long idleMillisBetweenCalls) {
|
||||||
|
this.idleMillisBetweenCalls = idleMillisBetweenCalls;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,50 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NonNull;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class SynchronousGetRecordsRetrievalStrategy implements GetRecordsRetrievalStrategy {
|
||||||
|
@NonNull
|
||||||
|
private final KinesisDataFetcher dataFetcher;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GetRecordsResult getRecords(final int maxRecords) {
|
||||||
|
return dataFetcher.getRecords(maxRecords).accept();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdown() {
|
||||||
|
//
|
||||||
|
// Does nothing as this retriever doesn't manage any resources
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isShutdown() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public KinesisDataFetcher getDataFetcher() {
|
||||||
|
return dataFetcher;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import lombok.Getter;
|
import lombok.Getter;
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,16 @@
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A listener for callbacks on changes worker state
|
||||||
|
*/
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface WorkerStateChangeListener {
|
||||||
|
enum WorkerState {
|
||||||
|
CREATED,
|
||||||
|
INITIALIZING,
|
||||||
|
STARTED,
|
||||||
|
SHUT_DOWN
|
||||||
|
}
|
||||||
|
|
||||||
|
void onWorkerStateChange(WorkerState newState);
|
||||||
|
}
|
||||||
|
|
@ -48,10 +48,17 @@ public interface IKinesisProxy {
|
||||||
/**
|
/**
|
||||||
* Fetch information about stream. Useful for fetching the list of shards in a stream.
|
* Fetch information about stream. Useful for fetching the list of shards in a stream.
|
||||||
*
|
*
|
||||||
|
* @deprecated Going forward this method is
|
||||||
|
* being deprecated. This method uses DescribeStream call, which is throttled at 10 calls per account by default.
|
||||||
|
* If possible try to use ListShards call available in the client, or use the getShardList or getAllShards to get
|
||||||
|
* shard info. To make DescribeStream calls, use the AmazonKinesis client directly instead of using KinesisProxy.
|
||||||
|
* This method will be removed in the next major/minor release.
|
||||||
|
*
|
||||||
* @param startShardId exclusive start shardId - used when paginating the list of shards.
|
* @param startShardId exclusive start shardId - used when paginating the list of shards.
|
||||||
* @return DescribeStreamOutput object containing a description of the stream.
|
* @return DescribeStreamOutput object containing a description of the stream.
|
||||||
* @throws ResourceNotFoundException The Kinesis stream was not found
|
* @throws ResourceNotFoundException The Kinesis stream was not found
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
DescribeStreamResult getStreamInfo(String startShardId) throws ResourceNotFoundException;
|
DescribeStreamResult getStreamInfo(String startShardId) throws ResourceNotFoundException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,11 @@ package com.amazonaws.services.kinesis.clientlibrary.proxies;
|
||||||
/**
|
/**
|
||||||
* Interface for a KinesisProxyFactory.
|
* Interface for a KinesisProxyFactory.
|
||||||
*
|
*
|
||||||
|
* @deprecated Deprecating since KinesisProxy is just created once, there is no use of a factory. There is no
|
||||||
|
* replacement for this class. This class will be removed in the next major/minor release.
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface IKinesisProxyFactory {
|
public interface IKinesisProxyFactory {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,34 +1,42 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.proxies;
|
package com.amazonaws.services.kinesis.clientlibrary.proxies;
|
||||||
|
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.Instant;
|
||||||
|
import java.time.temporal.ChronoUnit;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.EnumSet;
|
import java.util.EnumSet;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.concurrent.atomic.AtomicReference;
|
import java.util.concurrent.atomic.AtomicInteger;
|
||||||
|
import java.util.function.Function;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import com.amazonaws.auth.AWSCredentialsProvider;
|
import com.amazonaws.auth.AWSCredentialsProvider;
|
||||||
import com.amazonaws.services.kinesis.AmazonKinesis;
|
import com.amazonaws.services.kinesis.AmazonKinesis;
|
||||||
import com.amazonaws.services.kinesis.AmazonKinesisClient;
|
import com.amazonaws.services.kinesis.AmazonKinesisClient;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
import com.amazonaws.services.kinesis.model.DescribeStreamRequest;
|
import com.amazonaws.services.kinesis.model.DescribeStreamRequest;
|
||||||
import com.amazonaws.services.kinesis.model.DescribeStreamResult;
|
import com.amazonaws.services.kinesis.model.DescribeStreamResult;
|
||||||
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
|
@ -38,13 +46,21 @@ import com.amazonaws.services.kinesis.model.GetShardIteratorRequest;
|
||||||
import com.amazonaws.services.kinesis.model.GetShardIteratorResult;
|
import com.amazonaws.services.kinesis.model.GetShardIteratorResult;
|
||||||
import com.amazonaws.services.kinesis.model.InvalidArgumentException;
|
import com.amazonaws.services.kinesis.model.InvalidArgumentException;
|
||||||
import com.amazonaws.services.kinesis.model.LimitExceededException;
|
import com.amazonaws.services.kinesis.model.LimitExceededException;
|
||||||
|
import com.amazonaws.services.kinesis.model.ListShardsRequest;
|
||||||
|
import com.amazonaws.services.kinesis.model.ListShardsResult;
|
||||||
import com.amazonaws.services.kinesis.model.PutRecordRequest;
|
import com.amazonaws.services.kinesis.model.PutRecordRequest;
|
||||||
import com.amazonaws.services.kinesis.model.PutRecordResult;
|
import com.amazonaws.services.kinesis.model.PutRecordResult;
|
||||||
|
import com.amazonaws.services.kinesis.model.ResourceInUseException;
|
||||||
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
||||||
import com.amazonaws.services.kinesis.model.Shard;
|
import com.amazonaws.services.kinesis.model.Shard;
|
||||||
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
||||||
import com.amazonaws.services.kinesis.model.StreamStatus;
|
import com.amazonaws.services.kinesis.model.StreamStatus;
|
||||||
|
|
||||||
|
import lombok.AccessLevel;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.Setter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Kinesis proxy - used to make calls to Amazon Kinesis (e.g. fetch data records and list of shards).
|
* Kinesis proxy - used to make calls to Amazon Kinesis (e.g. fetch data records and list of shards).
|
||||||
*/
|
*/
|
||||||
|
|
@ -54,13 +70,26 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
|
|
||||||
private static final EnumSet<ShardIteratorType> EXPECTED_ITERATOR_TYPES = EnumSet
|
private static final EnumSet<ShardIteratorType> EXPECTED_ITERATOR_TYPES = EnumSet
|
||||||
.of(ShardIteratorType.AT_SEQUENCE_NUMBER, ShardIteratorType.AFTER_SEQUENCE_NUMBER);
|
.of(ShardIteratorType.AT_SEQUENCE_NUMBER, ShardIteratorType.AFTER_SEQUENCE_NUMBER);
|
||||||
|
public static final int MAX_CACHE_MISSES_BEFORE_RELOAD = 1000;
|
||||||
|
public static final Duration CACHE_MAX_ALLOWED_AGE = Duration.of(30, ChronoUnit.SECONDS);
|
||||||
|
public static final int CACHE_MISS_WARNING_MODULUS = 250;
|
||||||
|
|
||||||
private static String defaultServiceName = "kinesis";
|
private static String defaultServiceName = "kinesis";
|
||||||
private static String defaultRegionId = "us-east-1";;
|
private static String defaultRegionId = "us-east-1";;
|
||||||
|
|
||||||
private AmazonKinesis client;
|
private AmazonKinesis client;
|
||||||
private AWSCredentialsProvider credentialsProvider;
|
private AWSCredentialsProvider credentialsProvider;
|
||||||
private AtomicReference<List<Shard>> listOfShardsSinceLastGet = new AtomicReference<>();
|
|
||||||
|
private ShardIterationState shardIterationState = null;
|
||||||
|
|
||||||
|
@Setter(AccessLevel.PACKAGE)
|
||||||
|
private volatile Map<String, Shard> cachedShardMap = null;
|
||||||
|
@Setter(AccessLevel.PACKAGE)
|
||||||
|
@Getter(AccessLevel.PACKAGE)
|
||||||
|
private volatile Instant lastCacheUpdateTime = null;
|
||||||
|
@Setter(AccessLevel.PACKAGE)
|
||||||
|
@Getter(AccessLevel.PACKAGE)
|
||||||
|
private AtomicInteger cacheMisses = new AtomicInteger(0);
|
||||||
|
|
||||||
private final String streamName;
|
private final String streamName;
|
||||||
|
|
||||||
|
|
@ -68,51 +97,24 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
private static final int DEFAULT_DESCRIBE_STREAM_RETRY_TIMES = 50;
|
private static final int DEFAULT_DESCRIBE_STREAM_RETRY_TIMES = 50;
|
||||||
private final long describeStreamBackoffTimeInMillis;
|
private final long describeStreamBackoffTimeInMillis;
|
||||||
private final int maxDescribeStreamRetryAttempts;
|
private final int maxDescribeStreamRetryAttempts;
|
||||||
|
private final long listShardsBackoffTimeInMillis;
|
||||||
|
private final int maxListShardsRetryAttempts;
|
||||||
|
private boolean isKinesisClient = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Public constructor.
|
* @deprecated We expect the client to be passed to the proxy, and the proxy will not require to create it.
|
||||||
*
|
*
|
||||||
* @param streamName Data records will be fetched from this stream
|
* @param credentialProvider
|
||||||
* @param credentialProvider Provides credentials for signing Kinesis requests
|
* @param endpoint
|
||||||
* @param endpoint Kinesis endpoint
|
* @param serviceName
|
||||||
|
* @param regionId
|
||||||
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public KinesisProxy(final String streamName, AWSCredentialsProvider credentialProvider, String endpoint) {
|
|
||||||
this(streamName, credentialProvider, endpoint, defaultServiceName, defaultRegionId,
|
|
||||||
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Public constructor.
|
|
||||||
*
|
|
||||||
* @param streamName Data records will be fetched from this stream
|
|
||||||
* @param credentialProvider Provides credentials for signing Kinesis requests
|
|
||||||
* @param endpoint Kinesis endpoint
|
|
||||||
* @param serviceName service name
|
|
||||||
* @param regionId region id
|
|
||||||
* @param describeStreamBackoffTimeInMillis Backoff time for DescribeStream calls in milliseconds
|
|
||||||
* @param maxDescribeStreamRetryAttempts Number of retry attempts for DescribeStream calls
|
|
||||||
*/
|
|
||||||
public KinesisProxy(final String streamName,
|
|
||||||
AWSCredentialsProvider credentialProvider,
|
|
||||||
String endpoint,
|
|
||||||
String serviceName,
|
|
||||||
String regionId,
|
|
||||||
long describeStreamBackoffTimeInMillis,
|
|
||||||
int maxDescribeStreamRetryAttempts) {
|
|
||||||
this(streamName, credentialProvider, buildClientSettingEndpoint(credentialProvider,
|
|
||||||
endpoint,
|
|
||||||
serviceName,
|
|
||||||
regionId), describeStreamBackoffTimeInMillis, maxDescribeStreamRetryAttempts);
|
|
||||||
|
|
||||||
|
|
||||||
LOG.debug("KinesisProxy has created a kinesisClient");
|
|
||||||
}
|
|
||||||
|
|
||||||
private static AmazonKinesisClient buildClientSettingEndpoint(AWSCredentialsProvider credentialProvider,
|
private static AmazonKinesisClient buildClientSettingEndpoint(AWSCredentialsProvider credentialProvider,
|
||||||
String endpoint,
|
String endpoint,
|
||||||
String serviceName,
|
String serviceName,
|
||||||
String regionId) {
|
String regionId) {
|
||||||
AmazonKinesisClient client = new AmazonKinesisClient(credentialProvider);
|
AmazonKinesisClient client = new AmazonKinesisClient(credentialProvider);
|
||||||
client.setEndpoint(endpoint);
|
client.setEndpoint(endpoint);
|
||||||
client.setSignerRegionOverride(regionId);
|
client.setSignerRegionOverride(regionId);
|
||||||
|
|
@ -122,24 +124,123 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
/**
|
/**
|
||||||
* Public constructor.
|
* Public constructor.
|
||||||
*
|
*
|
||||||
|
* @deprecated Deprecating constructor, this constructor doesn't use AWS best practices, moving forward please use
|
||||||
|
* {@link #KinesisProxy(KinesisClientLibConfiguration, AmazonKinesis)} or
|
||||||
|
* {@link #KinesisProxy(String, AmazonKinesis, long, int, long, int)} to create the object. Will be removed in the
|
||||||
|
* next major/minor release.
|
||||||
|
*
|
||||||
|
* @param streamName Data records will be fetched from this stream
|
||||||
|
* @param credentialProvider Provides credentials for signing Kinesis requests
|
||||||
|
* @param endpoint Kinesis endpoint
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public KinesisProxy(final String streamName, AWSCredentialsProvider credentialProvider, String endpoint) {
|
||||||
|
this(streamName, credentialProvider, endpoint, defaultServiceName, defaultRegionId,
|
||||||
|
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Public constructor.
|
||||||
|
*
|
||||||
|
* @deprecated Deprecating constructor, this constructor doesn't use AWS best practices, moving forward please use
|
||||||
|
* {@link #KinesisProxy(KinesisClientLibConfiguration, AmazonKinesis)} or
|
||||||
|
* {@link #KinesisProxy(String, AmazonKinesis, long, int, long, int)} to create the object. Will be removed in the
|
||||||
|
* next major/minor release.
|
||||||
|
*
|
||||||
|
* @param streamName Data records will be fetched from this stream
|
||||||
|
* @param credentialProvider Provides credentials for signing Kinesis requests
|
||||||
|
* @param endpoint Kinesis endpoint
|
||||||
|
* @param serviceName service name
|
||||||
|
* @param regionId region id
|
||||||
|
* @param describeStreamBackoffTimeInMillis Backoff time for DescribeStream calls in milliseconds
|
||||||
|
* @param maxDescribeStreamRetryAttempts Number of retry attempts for DescribeStream calls
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
public KinesisProxy(final String streamName,
|
||||||
|
AWSCredentialsProvider credentialProvider,
|
||||||
|
String endpoint,
|
||||||
|
String serviceName,
|
||||||
|
String regionId,
|
||||||
|
long describeStreamBackoffTimeInMillis,
|
||||||
|
int maxDescribeStreamRetryAttempts,
|
||||||
|
long listShardsBackoffTimeInMillis,
|
||||||
|
int maxListShardsRetryAttempts) {
|
||||||
|
this(streamName,
|
||||||
|
credentialProvider,
|
||||||
|
buildClientSettingEndpoint(credentialProvider, endpoint, serviceName, regionId),
|
||||||
|
describeStreamBackoffTimeInMillis,
|
||||||
|
maxDescribeStreamRetryAttempts,
|
||||||
|
listShardsBackoffTimeInMillis,
|
||||||
|
maxListShardsRetryAttempts);
|
||||||
|
LOG.debug("KinesisProxy has created a kinesisClient");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Public constructor.
|
||||||
|
*
|
||||||
|
* @deprecated Deprecating constructor, this constructor doesn't use AWS best practices, moving forward please use
|
||||||
|
* {@link #KinesisProxy(KinesisClientLibConfiguration, AmazonKinesis)} or
|
||||||
|
* {@link #KinesisProxy(String, AmazonKinesis, long, int, long, int)} to create the object. Will be removed in the
|
||||||
|
* next major/minor release.
|
||||||
|
*
|
||||||
* @param streamName Data records will be fetched from this stream
|
* @param streamName Data records will be fetched from this stream
|
||||||
* @param credentialProvider Provides credentials for signing Kinesis requests
|
* @param credentialProvider Provides credentials for signing Kinesis requests
|
||||||
* @param kinesisClient Kinesis client (used to fetch data from Kinesis)
|
* @param kinesisClient Kinesis client (used to fetch data from Kinesis)
|
||||||
* @param describeStreamBackoffTimeInMillis Backoff time for DescribeStream calls in milliseconds
|
* @param describeStreamBackoffTimeInMillis Backoff time for DescribeStream calls in milliseconds
|
||||||
* @param maxDescribeStreamRetryAttempts Number of retry attempts for DescribeStream calls
|
* @param maxDescribeStreamRetryAttempts Number of retry attempts for DescribeStream calls
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public KinesisProxy(final String streamName,
|
public KinesisProxy(final String streamName,
|
||||||
AWSCredentialsProvider credentialProvider,
|
AWSCredentialsProvider credentialProvider,
|
||||||
AmazonKinesis kinesisClient,
|
AmazonKinesis kinesisClient,
|
||||||
long describeStreamBackoffTimeInMillis,
|
long describeStreamBackoffTimeInMillis,
|
||||||
int maxDescribeStreamRetryAttempts) {
|
int maxDescribeStreamRetryAttempts,
|
||||||
this.streamName = streamName;
|
long listShardsBackoffTimeInMillis,
|
||||||
|
int maxListShardsRetryAttempts) {
|
||||||
|
this(streamName, kinesisClient, describeStreamBackoffTimeInMillis, maxDescribeStreamRetryAttempts,
|
||||||
|
listShardsBackoffTimeInMillis, maxListShardsRetryAttempts);
|
||||||
this.credentialsProvider = credentialProvider;
|
this.credentialsProvider = credentialProvider;
|
||||||
|
LOG.debug("KinesisProxy( " + streamName + ")");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Public constructor.
|
||||||
|
* @param config
|
||||||
|
*/
|
||||||
|
public KinesisProxy(final KinesisClientLibConfiguration config, final AmazonKinesis client) {
|
||||||
|
this(config.getStreamName(),
|
||||||
|
client,
|
||||||
|
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS,
|
||||||
|
DEFAULT_DESCRIBE_STREAM_RETRY_TIMES,
|
||||||
|
config.getListShardsBackoffTimeInMillis(),
|
||||||
|
config.getMaxListShardsRetryAttempts());
|
||||||
|
this.credentialsProvider = config.getKinesisCredentialsProvider();
|
||||||
|
}
|
||||||
|
|
||||||
|
public KinesisProxy(final String streamName,
|
||||||
|
final AmazonKinesis client,
|
||||||
|
final long describeStreamBackoffTimeInMillis,
|
||||||
|
final int maxDescribeStreamRetryAttempts,
|
||||||
|
final long listShardsBackoffTimeInMillis,
|
||||||
|
final int maxListShardsRetryAttempts) {
|
||||||
|
this.streamName = streamName;
|
||||||
|
this.client = client;
|
||||||
this.describeStreamBackoffTimeInMillis = describeStreamBackoffTimeInMillis;
|
this.describeStreamBackoffTimeInMillis = describeStreamBackoffTimeInMillis;
|
||||||
this.maxDescribeStreamRetryAttempts = maxDescribeStreamRetryAttempts;
|
this.maxDescribeStreamRetryAttempts = maxDescribeStreamRetryAttempts;
|
||||||
this.client = kinesisClient;
|
this.listShardsBackoffTimeInMillis = listShardsBackoffTimeInMillis;
|
||||||
|
this.maxListShardsRetryAttempts = maxListShardsRetryAttempts;
|
||||||
|
|
||||||
LOG.debug("KinesisProxy( " + streamName + ")");
|
try {
|
||||||
|
if (Class.forName("com.amazonaws.services.dynamodbv2.streamsadapter.AmazonDynamoDBStreamsAdapterClient")
|
||||||
|
.isAssignableFrom(client.getClass())) {
|
||||||
|
isKinesisClient = false;
|
||||||
|
LOG.debug("Client is DynamoDb client, will use DescribeStream.");
|
||||||
|
}
|
||||||
|
} catch (ClassNotFoundException e) {
|
||||||
|
LOG.debug("Client is Kinesis Client, using ListShards instead of DescribeStream.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -162,16 +263,20 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
@Deprecated
|
||||||
public DescribeStreamResult getStreamInfo(String startShardId)
|
public DescribeStreamResult getStreamInfo(String startShardId)
|
||||||
throws ResourceNotFoundException, LimitExceededException {
|
throws ResourceNotFoundException, LimitExceededException {
|
||||||
final DescribeStreamRequest describeStreamRequest = new DescribeStreamRequest();
|
final DescribeStreamRequest describeStreamRequest = new DescribeStreamRequest();
|
||||||
describeStreamRequest.setRequestCredentials(credentialsProvider.getCredentials());
|
describeStreamRequest.setRequestCredentials(credentialsProvider.getCredentials());
|
||||||
describeStreamRequest.setStreamName(streamName);
|
describeStreamRequest.setStreamName(streamName);
|
||||||
describeStreamRequest.setExclusiveStartShardId(startShardId);
|
describeStreamRequest.setExclusiveStartShardId(startShardId);
|
||||||
DescribeStreamResult response = null;
|
DescribeStreamResult response = null;
|
||||||
|
|
||||||
|
LimitExceededException lastException = null;
|
||||||
|
|
||||||
int remainingRetryTimes = this.maxDescribeStreamRetryAttempts;
|
int remainingRetryTimes = this.maxDescribeStreamRetryAttempts;
|
||||||
// Call DescribeStream, with backoff and retries (if we get LimitExceededException).
|
// Call DescribeStream, with backoff and retries (if we get LimitExceededException).
|
||||||
while ((remainingRetryTimes >= 0) && (response == null)) {
|
while (response == null) {
|
||||||
try {
|
try {
|
||||||
response = client.describeStream(describeStreamRequest);
|
response = client.describeStream(describeStreamRequest);
|
||||||
} catch (LimitExceededException le) {
|
} catch (LimitExceededException le) {
|
||||||
|
|
@ -182,8 +287,15 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
} catch (InterruptedException ie) {
|
} catch (InterruptedException ie) {
|
||||||
LOG.debug("Stream " + streamName + " : Sleep was interrupted ", ie);
|
LOG.debug("Stream " + streamName + " : Sleep was interrupted ", ie);
|
||||||
}
|
}
|
||||||
|
lastException = le;
|
||||||
}
|
}
|
||||||
remainingRetryTimes--;
|
remainingRetryTimes--;
|
||||||
|
if (remainingRetryTimes <= 0 && response == null) {
|
||||||
|
if (lastException != null) {
|
||||||
|
throw lastException;
|
||||||
|
}
|
||||||
|
throw new IllegalStateException("Received null from DescribeStream call.");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (StreamStatus.ACTIVE.toString().equals(response.getStreamDescription().getStreamStatus())
|
if (StreamStatus.ACTIVE.toString().equals(response.getStreamDescription().getStreamStatus())
|
||||||
|
|
@ -195,54 +307,173 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
private ListShardsResult listShards(final String nextToken) {
|
||||||
* {@inheritDoc}
|
final ListShardsRequest request = new ListShardsRequest();
|
||||||
*/
|
request.setRequestCredentials(credentialsProvider.getCredentials());
|
||||||
@Override
|
if (StringUtils.isEmpty(nextToken)) {
|
||||||
public Shard getShard(String shardId) {
|
request.setStreamName(streamName);
|
||||||
if (this.listOfShardsSinceLastGet.get() == null) {
|
} else {
|
||||||
//Update this.listOfShardsSinceLastGet as needed.
|
request.setNextToken(nextToken);
|
||||||
this.getShardList();
|
|
||||||
}
|
}
|
||||||
|
ListShardsResult result = null;
|
||||||
for (Shard shard : listOfShardsSinceLastGet.get()) {
|
LimitExceededException lastException = null;
|
||||||
if (shard.getShardId().equals(shardId)) {
|
int remainingRetries = this.maxListShardsRetryAttempts;
|
||||||
return shard;
|
|
||||||
|
while (result == null) {
|
||||||
|
try {
|
||||||
|
result = client.listShards(request);
|
||||||
|
} catch (LimitExceededException e) {
|
||||||
|
LOG.info("Got LimitExceededException when listing shards " + streamName + ". Backing off for "
|
||||||
|
+ this.listShardsBackoffTimeInMillis + " millis.");
|
||||||
|
try {
|
||||||
|
Thread.sleep(this.listShardsBackoffTimeInMillis);
|
||||||
|
} catch (InterruptedException ie) {
|
||||||
|
LOG.debug("Stream " + streamName + " : Sleep was interrupted ", ie);
|
||||||
|
}
|
||||||
|
lastException = e;
|
||||||
|
} catch (ResourceInUseException e) {
|
||||||
|
LOG.info("Stream is not in Active/Updating status, returning null (wait until stream is in Active or"
|
||||||
|
+ " Updating)");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
remainingRetries--;
|
||||||
|
if (remainingRetries <= 0 && result == null) {
|
||||||
|
if (lastException != null) {
|
||||||
|
throw lastException;
|
||||||
|
}
|
||||||
|
throw new IllegalStateException("Received null from ListShards call.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LOG.warn("Cannot find the shard given the shardId " + shardId);
|
return result;
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public List<Shard> getShardList() {
|
public Shard getShard(String shardId) {
|
||||||
List<Shard> result = new ArrayList<Shard>();
|
if (this.cachedShardMap == null) {
|
||||||
|
synchronized (this) {
|
||||||
|
if (this.cachedShardMap == null) {
|
||||||
|
this.getShardList();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
DescribeStreamResult response = null;
|
Shard shard = cachedShardMap.get(shardId);
|
||||||
String lastShardId = null;
|
if (shard == null) {
|
||||||
|
if (cacheMisses.incrementAndGet() > MAX_CACHE_MISSES_BEFORE_RELOAD || cacheNeedsTimeUpdate()) {
|
||||||
|
synchronized (this) {
|
||||||
|
shard = cachedShardMap.get(shardId);
|
||||||
|
|
||||||
do {
|
//
|
||||||
response = getStreamInfo(lastShardId);
|
// If after synchronizing we resolve the shard, it means someone else already got it for us.
|
||||||
|
//
|
||||||
|
if (shard == null) {
|
||||||
|
LOG.info("To many shard map cache misses or cache is out of date -- forcing a refresh");
|
||||||
|
this.getShardList();
|
||||||
|
shard = verifyAndLogShardAfterCacheUpdate(shardId);
|
||||||
|
cacheMisses.set(0);
|
||||||
|
} else {
|
||||||
|
//
|
||||||
|
// If someone else got us the shard go ahead and zero cache misses
|
||||||
|
//
|
||||||
|
cacheMisses.set(0);
|
||||||
|
}
|
||||||
|
|
||||||
if (response == null) {
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (shard == null) {
|
||||||
|
String message = "Cannot find the shard given the shardId " + shardId + ". Cache misses: " + cacheMisses;
|
||||||
|
if (cacheMisses.get() % CACHE_MISS_WARNING_MODULUS == 0) {
|
||||||
|
LOG.warn(message);
|
||||||
|
} else {
|
||||||
|
LOG.debug(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return shard;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Shard verifyAndLogShardAfterCacheUpdate(String shardId) {
|
||||||
|
Shard shard = cachedShardMap.get(shardId);
|
||||||
|
if (shard == null) {
|
||||||
|
LOG.warn("Even after cache refresh shard '" + shardId + "' wasn't found. "
|
||||||
|
+ "This could indicate a bigger problem");
|
||||||
|
}
|
||||||
|
return shard;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean cacheNeedsTimeUpdate() {
|
||||||
|
if (lastCacheUpdateTime == null) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
Instant now = Instant.now();
|
||||||
|
Duration cacheAge = Duration.between(lastCacheUpdateTime, now);
|
||||||
|
|
||||||
|
String baseMessage = "Shard map cache is " + cacheAge + " > " + CACHE_MAX_ALLOWED_AGE + ". ";
|
||||||
|
if (cacheAge.compareTo(CACHE_MAX_ALLOWED_AGE) > 0) {
|
||||||
|
LOG.info(baseMessage + "Age exceeds limit -- Refreshing.");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
LOG.debug(baseMessage + "Age doesn't exceed limit.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized List<Shard> getShardList() {
|
||||||
|
if (shardIterationState == null) {
|
||||||
|
shardIterationState = new ShardIterationState();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isKinesisClient) {
|
||||||
|
ListShardsResult result;
|
||||||
|
String nextToken = null;
|
||||||
|
|
||||||
|
do {
|
||||||
|
result = listShards(nextToken);
|
||||||
|
|
||||||
|
if (result == null) {
|
||||||
|
/*
|
||||||
|
* If listShards ever returns null, we should bail and return null. This indicates the stream is not
|
||||||
|
* in ACTIVE or UPDATING state and we may not have accurate/consistent information about the stream.
|
||||||
|
*/
|
||||||
|
return null;
|
||||||
|
} else {
|
||||||
|
shardIterationState.update(result.getShards());
|
||||||
|
nextToken = result.getNextToken();
|
||||||
|
}
|
||||||
|
} while (StringUtils.isNotEmpty(result.getNextToken()));
|
||||||
|
|
||||||
|
} else {
|
||||||
|
DescribeStreamResult response;
|
||||||
|
|
||||||
|
do {
|
||||||
|
response = getStreamInfo(shardIterationState.getLastShardId());
|
||||||
|
|
||||||
|
if (response == null) {
|
||||||
/*
|
/*
|
||||||
* If getStreamInfo ever returns null, we should bail and return null. This indicates the stream is not
|
* If getStreamInfo ever returns null, we should bail and return null. This indicates the stream is not
|
||||||
* in ACTIVE or UPDATING state and we may not have accurate/consistent information about the stream.
|
* in ACTIVE or UPDATING state and we may not have accurate/consistent information about the stream.
|
||||||
*/
|
*/
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
List<Shard> shards = response.getStreamDescription().getShards();
|
shardIterationState.update(response.getStreamDescription().getShards());
|
||||||
result.addAll(shards);
|
}
|
||||||
lastShardId = shards.get(shards.size() - 1).getShardId();
|
} while (response.getStreamDescription().isHasMoreShards());
|
||||||
}
|
}
|
||||||
} while (response.getStreamDescription().isHasMoreShards());
|
List<Shard> shards = shardIterationState.getShards();
|
||||||
this.listOfShardsSinceLastGet.set(result);
|
this.cachedShardMap = shards.stream().collect(Collectors.toMap(Shard::getShardId, Function.identity()));
|
||||||
return result;
|
this.lastCacheUpdateTime = Instant.now();
|
||||||
|
|
||||||
|
shardIterationState = new ShardIterationState();
|
||||||
|
return shards;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -344,4 +575,26 @@ public class KinesisProxy implements IKinesisProxyExtended {
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Data
|
||||||
|
static class ShardIterationState {
|
||||||
|
|
||||||
|
private List<Shard> shards;
|
||||||
|
private String lastShardId;
|
||||||
|
|
||||||
|
public ShardIterationState() {
|
||||||
|
shards = new ArrayList<>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void update(List<Shard> shards) {
|
||||||
|
if (shards == null || shards.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.shards.addAll(shards);
|
||||||
|
Shard lastShard = shards.get(shards.size() - 1);
|
||||||
|
if (lastShardId == null || lastShardId.compareTo(lastShard.getShardId()) < 0) {
|
||||||
|
lastShardId = lastShard.getShardId();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,15 @@ import com.amazonaws.ClientConfiguration;
|
||||||
import com.amazonaws.auth.AWSCredentialsProvider;
|
import com.amazonaws.auth.AWSCredentialsProvider;
|
||||||
import com.amazonaws.services.kinesis.AmazonKinesis;
|
import com.amazonaws.services.kinesis.AmazonKinesis;
|
||||||
import com.amazonaws.services.kinesis.AmazonKinesisClient;
|
import com.amazonaws.services.kinesis.AmazonKinesisClient;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Factory used for instantiating KinesisProxy objects (to fetch data from Kinesis).
|
* Factory used for instantiating KinesisProxy objects (to fetch data from Kinesis).
|
||||||
|
*
|
||||||
|
* @deprecated Will be removed since proxy is created only once, we don't need a factory. There is no replacement for
|
||||||
|
* this class. Will be removed in the next major/minor release.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public class KinesisProxyFactory implements IKinesisProxyFactory {
|
public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
|
|
||||||
private final AWSCredentialsProvider credentialProvider;
|
private final AWSCredentialsProvider credentialProvider;
|
||||||
|
|
@ -32,6 +37,8 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
private final AmazonKinesis kinesisClient;
|
private final AmazonKinesis kinesisClient;
|
||||||
private final long describeStreamBackoffTimeInMillis;
|
private final long describeStreamBackoffTimeInMillis;
|
||||||
private final int maxDescribeStreamRetryAttempts;
|
private final int maxDescribeStreamRetryAttempts;
|
||||||
|
private final long listShardsBackoffTimeInMillis;
|
||||||
|
private final int maxListShardsRetryAttempts;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for creating a KinesisProxy factory, using the specified credentials provider and endpoint.
|
* Constructor for creating a KinesisProxy factory, using the specified credentials provider and endpoint.
|
||||||
|
|
@ -41,12 +48,14 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
*/
|
*/
|
||||||
public KinesisProxyFactory(AWSCredentialsProvider credentialProvider, String endpoint) {
|
public KinesisProxyFactory(AWSCredentialsProvider credentialProvider, String endpoint) {
|
||||||
this(credentialProvider, new ClientConfiguration(), endpoint, defaultServiceName, defaultRegionId,
|
this(credentialProvider, new ClientConfiguration(), endpoint, defaultServiceName, defaultRegionId,
|
||||||
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES);
|
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for KinesisProxy factory using the client configuration to use when interacting with Kinesis.
|
* Constructor for KinesisProxy factory using the client configuration to use when interacting with Kinesis.
|
||||||
*
|
*
|
||||||
* @param credentialProvider credentials provider used to sign requests
|
* @param credentialProvider credentials provider used to sign requests
|
||||||
* @param clientConfig Client Configuration used when instantiating an AmazonKinesisClient
|
* @param clientConfig Client Configuration used when instantiating an AmazonKinesisClient
|
||||||
* @param endpoint Amazon Kinesis endpoint to use
|
* @param endpoint Amazon Kinesis endpoint to use
|
||||||
|
|
@ -55,7 +64,9 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
ClientConfiguration clientConfig,
|
ClientConfiguration clientConfig,
|
||||||
String endpoint) {
|
String endpoint) {
|
||||||
this(credentialProvider, clientConfig, endpoint, defaultServiceName, defaultRegionId,
|
this(credentialProvider, clientConfig, endpoint, defaultServiceName, defaultRegionId,
|
||||||
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES);
|
DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -65,7 +76,9 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
* @param client AmazonKinesisClient used to fetch data from Kinesis
|
* @param client AmazonKinesisClient used to fetch data from Kinesis
|
||||||
*/
|
*/
|
||||||
public KinesisProxyFactory(AWSCredentialsProvider credentialProvider, AmazonKinesis client) {
|
public KinesisProxyFactory(AWSCredentialsProvider credentialProvider, AmazonKinesis client) {
|
||||||
this(credentialProvider, client, DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES);
|
this(credentialProvider, client, DEFAULT_DESCRIBE_STREAM_BACKOFF_MILLIS, DEFAULT_DESCRIBE_STREAM_RETRY_TIMES,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_LIST_SHARDS_BACKOFF_TIME_IN_MILLIS,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_MAX_LIST_SHARDS_RETRY_ATTEMPTS);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -85,13 +98,18 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
String serviceName,
|
String serviceName,
|
||||||
String regionId,
|
String regionId,
|
||||||
long describeStreamBackoffTimeInMillis,
|
long describeStreamBackoffTimeInMillis,
|
||||||
int maxDescribeStreamRetryAttempts) {
|
int maxDescribeStreamRetryAttempts,
|
||||||
|
long listShardsBackoffTimeInMillis,
|
||||||
|
int maxListShardsRetryAttempts) {
|
||||||
this(credentialProvider, buildClientSettingEndpoint(credentialProvider,
|
this(credentialProvider, buildClientSettingEndpoint(credentialProvider,
|
||||||
clientConfig,
|
clientConfig,
|
||||||
endpoint,
|
endpoint,
|
||||||
serviceName,
|
serviceName,
|
||||||
regionId),
|
regionId),
|
||||||
describeStreamBackoffTimeInMillis, maxDescribeStreamRetryAttempts);
|
describeStreamBackoffTimeInMillis,
|
||||||
|
maxDescribeStreamRetryAttempts,
|
||||||
|
listShardsBackoffTimeInMillis,
|
||||||
|
maxListShardsRetryAttempts);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -106,14 +124,18 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
KinesisProxyFactory(AWSCredentialsProvider credentialProvider,
|
KinesisProxyFactory(AWSCredentialsProvider credentialProvider,
|
||||||
AmazonKinesis client,
|
AmazonKinesis client,
|
||||||
long describeStreamBackoffTimeInMillis,
|
long describeStreamBackoffTimeInMillis,
|
||||||
int maxDescribeStreamRetryAttempts) {
|
int maxDescribeStreamRetryAttempts,
|
||||||
|
long listShardsBackoffTimeInMillis,
|
||||||
|
int maxListShardsRetryAttempts) {
|
||||||
super();
|
super();
|
||||||
this.kinesisClient = client;
|
this.kinesisClient = client;
|
||||||
this.credentialProvider = credentialProvider;
|
this.credentialProvider = credentialProvider;
|
||||||
this.describeStreamBackoffTimeInMillis = describeStreamBackoffTimeInMillis;
|
this.describeStreamBackoffTimeInMillis = describeStreamBackoffTimeInMillis;
|
||||||
this.maxDescribeStreamRetryAttempts = maxDescribeStreamRetryAttempts;
|
this.maxDescribeStreamRetryAttempts = maxDescribeStreamRetryAttempts;
|
||||||
|
this.listShardsBackoffTimeInMillis = listShardsBackoffTimeInMillis;
|
||||||
|
this.maxListShardsRetryAttempts = maxListShardsRetryAttempts;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
*/
|
*/
|
||||||
|
|
@ -123,15 +145,16 @@ public class KinesisProxyFactory implements IKinesisProxyFactory {
|
||||||
credentialProvider,
|
credentialProvider,
|
||||||
kinesisClient,
|
kinesisClient,
|
||||||
describeStreamBackoffTimeInMillis,
|
describeStreamBackoffTimeInMillis,
|
||||||
maxDescribeStreamRetryAttempts);
|
maxDescribeStreamRetryAttempts,
|
||||||
|
listShardsBackoffTimeInMillis,
|
||||||
|
maxListShardsRetryAttempts);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static AmazonKinesisClient buildClientSettingEndpoint(AWSCredentialsProvider credentialProvider,
|
private static AmazonKinesisClient buildClientSettingEndpoint(AWSCredentialsProvider credentialProvider,
|
||||||
ClientConfiguration clientConfig,
|
ClientConfiguration clientConfig,
|
||||||
String endpoint,
|
String endpoint,
|
||||||
String serviceName,
|
String serviceName,
|
||||||
String regionId) {
|
String regionId) {
|
||||||
AmazonKinesisClient client = new AmazonKinesisClient(credentialProvider, clientConfig);
|
AmazonKinesisClient client = new AmazonKinesisClient(credentialProvider, clientConfig);
|
||||||
client.setEndpoint(endpoint);
|
client.setEndpoint(endpoint);
|
||||||
client.setSignerRegionOverride(regionId);
|
client.setSignerRegionOverride(regionId);
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.types;
|
package com.amazonaws.services.kinesis.clientlibrary.types;
|
||||||
|
|
||||||
|
|
@ -23,6 +23,7 @@ public class InitializationInput {
|
||||||
|
|
||||||
private String shardId;
|
private String shardId;
|
||||||
private ExtendedSequenceNumber extendedSequenceNumber;
|
private ExtendedSequenceNumber extendedSequenceNumber;
|
||||||
|
private ExtendedSequenceNumber pendingCheckpointSequenceNumber;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default constructor.
|
* Default constructor.
|
||||||
|
|
@ -71,4 +72,26 @@ public class InitializationInput {
|
||||||
this.extendedSequenceNumber = extendedSequenceNumber;
|
this.extendedSequenceNumber = extendedSequenceNumber;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get pending checkpoint {@link ExtendedSequenceNumber}.
|
||||||
|
*
|
||||||
|
* @return The {@link ExtendedSequenceNumber} in the shard for which a checkpoint is pending
|
||||||
|
*/
|
||||||
|
public ExtendedSequenceNumber getPendingCheckpointSequenceNumber() {
|
||||||
|
return pendingCheckpointSequenceNumber;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set pending checkpoint {@link ExtendedSequenceNumber}.
|
||||||
|
*
|
||||||
|
* @param pendingCheckpointSequenceNumber The {@link ExtendedSequenceNumber} in the shard for which a checkpoint
|
||||||
|
* is pending
|
||||||
|
* @return A reference to this updated object so that method calls can be chained together.
|
||||||
|
*/
|
||||||
|
public InitializationInput withPendingCheckpointSequenceNumber(
|
||||||
|
ExtendedSequenceNumber pendingCheckpointSequenceNumber) {
|
||||||
|
this.pendingCheckpointSequenceNumber = pendingCheckpointSequenceNumber;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,18 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
// Generated by the protocol buffer compiler. DO NOT EDIT!
|
||||||
// source: messages.proto
|
// source: messages.proto
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,30 +1,38 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.types;
|
package com.amazonaws.services.kinesis.clientlibrary.types;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.time.Instant;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
import com.amazonaws.services.kinesis.model.Record;
|
import com.amazonaws.services.kinesis.model.Record;
|
||||||
|
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Container for the parameters to the IRecordProcessor's
|
* Container for the parameters to the IRecordProcessor's
|
||||||
* {@link com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IRecordProcessor#processRecords(
|
* {@link com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IRecordProcessor#processRecords(
|
||||||
* ProcessRecordsInput processRecordsInput) processRecords} method.
|
* ProcessRecordsInput processRecordsInput) processRecords} method.
|
||||||
*/
|
*/
|
||||||
public class ProcessRecordsInput {
|
public class ProcessRecordsInput {
|
||||||
|
@Getter
|
||||||
|
private Instant cacheEntryTime;
|
||||||
|
@Getter
|
||||||
|
private Instant cacheExitTime;
|
||||||
private List<Record> records;
|
private List<Record> records;
|
||||||
private IRecordProcessorCheckpointer checkpointer;
|
private IRecordProcessorCheckpointer checkpointer;
|
||||||
private Long millisBehindLatest;
|
private Long millisBehindLatest;
|
||||||
|
|
@ -96,4 +104,21 @@ public class ProcessRecordsInput {
|
||||||
this.millisBehindLatest = millisBehindLatest;
|
this.millisBehindLatest = millisBehindLatest;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ProcessRecordsInput withCacheEntryTime(Instant cacheEntryTime) {
|
||||||
|
this.cacheEntryTime = cacheEntryTime;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ProcessRecordsInput withCacheExitTime(Instant cacheExitTime) {
|
||||||
|
this.cacheExitTime = cacheExitTime;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Duration getTimeSpentInCache() {
|
||||||
|
if (cacheEntryTime == null || cacheExitTime == null) {
|
||||||
|
return Duration.ZERO;
|
||||||
|
}
|
||||||
|
return Duration.between(cacheEntryTime, cacheExitTime);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.types;
|
package com.amazonaws.services.kinesis.clientlibrary.types;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import java.util.Arrays;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.utils;
|
package com.amazonaws.services.kinesis.clientlibrary.utils;
|
||||||
|
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.leases.impl;
|
package com.amazonaws.services.kinesis.leases.impl;
|
||||||
|
|
||||||
|
|
@ -27,6 +27,7 @@ import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber
|
||||||
public class KinesisClientLease extends Lease {
|
public class KinesisClientLease extends Lease {
|
||||||
|
|
||||||
private ExtendedSequenceNumber checkpoint;
|
private ExtendedSequenceNumber checkpoint;
|
||||||
|
private ExtendedSequenceNumber pendingCheckpoint;
|
||||||
private Long ownerSwitchesSinceCheckpoint = 0L;
|
private Long ownerSwitchesSinceCheckpoint = 0L;
|
||||||
private Set<String> parentShardIds = new HashSet<String>();
|
private Set<String> parentShardIds = new HashSet<String>();
|
||||||
|
|
||||||
|
|
@ -37,16 +38,18 @@ public class KinesisClientLease extends Lease {
|
||||||
public KinesisClientLease(KinesisClientLease other) {
|
public KinesisClientLease(KinesisClientLease other) {
|
||||||
super(other);
|
super(other);
|
||||||
this.checkpoint = other.getCheckpoint();
|
this.checkpoint = other.getCheckpoint();
|
||||||
|
this.pendingCheckpoint = other.getPendingCheckpoint();
|
||||||
this.ownerSwitchesSinceCheckpoint = other.getOwnerSwitchesSinceCheckpoint();
|
this.ownerSwitchesSinceCheckpoint = other.getOwnerSwitchesSinceCheckpoint();
|
||||||
this.parentShardIds.addAll(other.getParentShardIds());
|
this.parentShardIds.addAll(other.getParentShardIds());
|
||||||
}
|
}
|
||||||
|
|
||||||
KinesisClientLease(String leaseKey, String leaseOwner, Long leaseCounter, UUID concurrencyToken,
|
KinesisClientLease(String leaseKey, String leaseOwner, Long leaseCounter, UUID concurrencyToken,
|
||||||
Long lastCounterIncrementNanos, ExtendedSequenceNumber checkpoint, Long ownerSwitchesSinceCheckpoint,
|
Long lastCounterIncrementNanos, ExtendedSequenceNumber checkpoint, ExtendedSequenceNumber pendingCheckpoint,
|
||||||
Set<String> parentShardIds) {
|
Long ownerSwitchesSinceCheckpoint, Set<String> parentShardIds) {
|
||||||
super(leaseKey, leaseOwner, leaseCounter, concurrencyToken, lastCounterIncrementNanos);
|
super(leaseKey, leaseOwner, leaseCounter, concurrencyToken, lastCounterIncrementNanos);
|
||||||
|
|
||||||
this.checkpoint = checkpoint;
|
this.checkpoint = checkpoint;
|
||||||
|
this.pendingCheckpoint = pendingCheckpoint;
|
||||||
this.ownerSwitchesSinceCheckpoint = ownerSwitchesSinceCheckpoint;
|
this.ownerSwitchesSinceCheckpoint = ownerSwitchesSinceCheckpoint;
|
||||||
this.parentShardIds.addAll(parentShardIds);
|
this.parentShardIds.addAll(parentShardIds);
|
||||||
}
|
}
|
||||||
|
|
@ -64,6 +67,7 @@ public class KinesisClientLease extends Lease {
|
||||||
|
|
||||||
setOwnerSwitchesSinceCheckpoint(casted.ownerSwitchesSinceCheckpoint);
|
setOwnerSwitchesSinceCheckpoint(casted.ownerSwitchesSinceCheckpoint);
|
||||||
setCheckpoint(casted.checkpoint);
|
setCheckpoint(casted.checkpoint);
|
||||||
|
setPendingCheckpoint(casted.pendingCheckpoint);
|
||||||
setParentShardIds(casted.parentShardIds);
|
setParentShardIds(casted.parentShardIds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -75,6 +79,13 @@ public class KinesisClientLease extends Lease {
|
||||||
return checkpoint;
|
return checkpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return pending checkpoint, possibly null.
|
||||||
|
*/
|
||||||
|
public ExtendedSequenceNumber getPendingCheckpoint() {
|
||||||
|
return pendingCheckpoint;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return count of distinct lease holders between checkpoints.
|
* @return count of distinct lease holders between checkpoints.
|
||||||
*/
|
*/
|
||||||
|
|
@ -100,6 +111,15 @@ public class KinesisClientLease extends Lease {
|
||||||
this.checkpoint = checkpoint;
|
this.checkpoint = checkpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets pending checkpoint.
|
||||||
|
*
|
||||||
|
* @param pendingCheckpoint can be null
|
||||||
|
*/
|
||||||
|
public void setPendingCheckpoint(ExtendedSequenceNumber pendingCheckpoint) {
|
||||||
|
this.pendingCheckpoint = pendingCheckpoint;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets ownerSwitchesSinceCheckpoint.
|
* Sets ownerSwitchesSinceCheckpoint.
|
||||||
*
|
*
|
||||||
|
|
@ -134,6 +154,7 @@ public class KinesisClientLease extends Lease {
|
||||||
final int prime = 31;
|
final int prime = 31;
|
||||||
int result = super.hashCode();
|
int result = super.hashCode();
|
||||||
result = prime * result + ((checkpoint == null) ? 0 : checkpoint.hashCode());
|
result = prime * result + ((checkpoint == null) ? 0 : checkpoint.hashCode());
|
||||||
|
result = pendingCheckpoint == null ? result : prime * result + pendingCheckpoint.hashCode();
|
||||||
result =
|
result =
|
||||||
prime * result + ((ownerSwitchesSinceCheckpoint == null) ? 0 : ownerSwitchesSinceCheckpoint.hashCode());
|
prime * result + ((ownerSwitchesSinceCheckpoint == null) ? 0 : ownerSwitchesSinceCheckpoint.hashCode());
|
||||||
result = prime * result + ((parentShardIds == null) ? 0 : parentShardIds.hashCode());
|
result = prime * result + ((parentShardIds == null) ? 0 : parentShardIds.hashCode());
|
||||||
|
|
@ -154,6 +175,11 @@ public class KinesisClientLease extends Lease {
|
||||||
return false;
|
return false;
|
||||||
} else if (!checkpoint.equals(other.checkpoint))
|
} else if (!checkpoint.equals(other.checkpoint))
|
||||||
return false;
|
return false;
|
||||||
|
if (pendingCheckpoint == null) {
|
||||||
|
if (other.pendingCheckpoint != null)
|
||||||
|
return false;
|
||||||
|
} else if (!pendingCheckpoint.equals(other.pendingCheckpoint))
|
||||||
|
return false;
|
||||||
if (ownerSwitchesSinceCheckpoint == null) {
|
if (ownerSwitchesSinceCheckpoint == null) {
|
||||||
if (other.ownerSwitchesSinceCheckpoint != null)
|
if (other.ownerSwitchesSinceCheckpoint != null)
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.leases.impl;
|
package com.amazonaws.services.kinesis.leases.impl;
|
||||||
|
|
||||||
|
|
@ -26,6 +26,7 @@ import com.amazonaws.services.dynamodbv2.model.KeySchemaElement;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
import com.amazonaws.services.kinesis.leases.interfaces.ILeaseSerializer;
|
import com.amazonaws.services.kinesis.leases.interfaces.ILeaseSerializer;
|
||||||
import com.amazonaws.services.kinesis.leases.util.DynamoUtils;
|
import com.amazonaws.services.kinesis.leases.util.DynamoUtils;
|
||||||
|
import com.google.common.base.Strings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An implementation of ILeaseSerializer for KinesisClientLease objects.
|
* An implementation of ILeaseSerializer for KinesisClientLease objects.
|
||||||
|
|
@ -35,6 +36,8 @@ public class KinesisClientLeaseSerializer implements ILeaseSerializer<KinesisCli
|
||||||
private static final String OWNER_SWITCHES_KEY = "ownerSwitchesSinceCheckpoint";
|
private static final String OWNER_SWITCHES_KEY = "ownerSwitchesSinceCheckpoint";
|
||||||
private static final String CHECKPOINT_SEQUENCE_NUMBER_KEY = "checkpoint";
|
private static final String CHECKPOINT_SEQUENCE_NUMBER_KEY = "checkpoint";
|
||||||
private static final String CHECKPOINT_SUBSEQUENCE_NUMBER_KEY = "checkpointSubSequenceNumber";
|
private static final String CHECKPOINT_SUBSEQUENCE_NUMBER_KEY = "checkpointSubSequenceNumber";
|
||||||
|
private static final String PENDING_CHECKPOINT_SEQUENCE_KEY = "pendingCheckpoint";
|
||||||
|
private static final String PENDING_CHECKPOINT_SUBSEQUENCE_KEY = "pendingCheckpointSubSequenceNumber";
|
||||||
public final String PARENT_SHARD_ID_KEY = "parentShardId";
|
public final String PARENT_SHARD_ID_KEY = "parentShardId";
|
||||||
|
|
||||||
private final LeaseSerializer baseSerializer = new LeaseSerializer(KinesisClientLease.class);
|
private final LeaseSerializer baseSerializer = new LeaseSerializer(KinesisClientLease.class);
|
||||||
|
|
@ -50,6 +53,11 @@ public class KinesisClientLeaseSerializer implements ILeaseSerializer<KinesisCli
|
||||||
result.put(PARENT_SHARD_ID_KEY, DynamoUtils.createAttributeValue(lease.getParentShardIds()));
|
result.put(PARENT_SHARD_ID_KEY, DynamoUtils.createAttributeValue(lease.getParentShardIds()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (lease.getPendingCheckpoint() != null && !lease.getPendingCheckpoint().getSequenceNumber().isEmpty()) {
|
||||||
|
result.put(PENDING_CHECKPOINT_SEQUENCE_KEY, DynamoUtils.createAttributeValue(lease.getPendingCheckpoint().getSequenceNumber()));
|
||||||
|
result.put(PENDING_CHECKPOINT_SUBSEQUENCE_KEY, DynamoUtils.createAttributeValue(lease.getPendingCheckpoint().getSubSequenceNumber()));
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -65,6 +73,14 @@ public class KinesisClientLeaseSerializer implements ILeaseSerializer<KinesisCli
|
||||||
);
|
);
|
||||||
result.setParentShardIds(DynamoUtils.safeGetSS(dynamoRecord, PARENT_SHARD_ID_KEY));
|
result.setParentShardIds(DynamoUtils.safeGetSS(dynamoRecord, PARENT_SHARD_ID_KEY));
|
||||||
|
|
||||||
|
if (!Strings.isNullOrEmpty(DynamoUtils.safeGetString(dynamoRecord, PENDING_CHECKPOINT_SEQUENCE_KEY))) {
|
||||||
|
result.setPendingCheckpoint(
|
||||||
|
new ExtendedSequenceNumber(
|
||||||
|
DynamoUtils.safeGetString(dynamoRecord, PENDING_CHECKPOINT_SEQUENCE_KEY),
|
||||||
|
DynamoUtils.safeGetLong(dynamoRecord, PENDING_CHECKPOINT_SUBSEQUENCE_KEY))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -128,6 +144,14 @@ public class KinesisClientLeaseSerializer implements ILeaseSerializer<KinesisCli
|
||||||
new AttributeValueUpdate(DynamoUtils.createAttributeValue(lease.getOwnerSwitchesSinceCheckpoint()),
|
new AttributeValueUpdate(DynamoUtils.createAttributeValue(lease.getOwnerSwitchesSinceCheckpoint()),
|
||||||
AttributeAction.PUT));
|
AttributeAction.PUT));
|
||||||
|
|
||||||
|
if (lease.getPendingCheckpoint() != null && !lease.getPendingCheckpoint().getSequenceNumber().isEmpty()) {
|
||||||
|
result.put(PENDING_CHECKPOINT_SEQUENCE_KEY, new AttributeValueUpdate(DynamoUtils.createAttributeValue(lease.getPendingCheckpoint().getSequenceNumber()), AttributeAction.PUT));
|
||||||
|
result.put(PENDING_CHECKPOINT_SUBSEQUENCE_KEY, new AttributeValueUpdate(DynamoUtils.createAttributeValue(lease.getPendingCheckpoint().getSubSequenceNumber()), AttributeAction.PUT));
|
||||||
|
} else {
|
||||||
|
result.put(PENDING_CHECKPOINT_SEQUENCE_KEY, new AttributeValueUpdate().withAction(AttributeAction.DELETE));
|
||||||
|
result.put(PENDING_CHECKPOINT_SUBSEQUENCE_KEY, new AttributeValueUpdate().withAction(AttributeAction.DELETE));
|
||||||
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,15 +19,17 @@ import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.LinkedTransferQueue;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
import java.util.concurrent.ScheduledFuture;
|
import java.util.concurrent.ScheduledFuture;
|
||||||
import java.util.concurrent.ThreadFactory;
|
import java.util.concurrent.ThreadFactory;
|
||||||
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.utils.NamedThreadFactory;
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
import com.amazonaws.services.kinesis.leases.exceptions.DependencyException;
|
import com.amazonaws.services.kinesis.leases.exceptions.DependencyException;
|
||||||
import com.amazonaws.services.kinesis.leases.exceptions.InvalidStateException;
|
import com.amazonaws.services.kinesis.leases.exceptions.InvalidStateException;
|
||||||
import com.amazonaws.services.kinesis.leases.exceptions.LeasingException;
|
import com.amazonaws.services.kinesis.leases.exceptions.LeasingException;
|
||||||
|
|
@ -40,6 +42,7 @@ import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsFactory;
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsScope;
|
import com.amazonaws.services.kinesis.metrics.interfaces.IMetricsScope;
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
||||||
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LeaseCoordinator abstracts away LeaseTaker and LeaseRenewer from the application code that's using leasing. It owns
|
* LeaseCoordinator abstracts away LeaseTaker and LeaseRenewer from the application code that's using leasing. It owns
|
||||||
|
|
@ -63,12 +66,10 @@ public class LeaseCoordinator<T extends Lease> {
|
||||||
private static final int DEFAULT_MAX_LEASES_FOR_WORKER = Integer.MAX_VALUE;
|
private static final int DEFAULT_MAX_LEASES_FOR_WORKER = Integer.MAX_VALUE;
|
||||||
private static final int DEFAULT_MAX_LEASES_TO_STEAL_AT_ONE_TIME = 1;
|
private static final int DEFAULT_MAX_LEASES_TO_STEAL_AT_ONE_TIME = 1;
|
||||||
|
|
||||||
private static final ThreadFactory LEASE_COORDINATOR_THREAD_FACTORY = new NamedThreadFactory("LeaseCoordinator-");
|
private static final ThreadFactory LEASE_COORDINATOR_THREAD_FACTORY = new ThreadFactoryBuilder()
|
||||||
private static final ThreadFactory LEASE_RENEWAL_THREAD_FACTORY = new NamedThreadFactory("LeaseRenewer-");
|
.setNameFormat("LeaseCoordinator-%04d").setDaemon(true).build();
|
||||||
|
private static final ThreadFactory LEASE_RENEWAL_THREAD_FACTORY = new ThreadFactoryBuilder()
|
||||||
// Package level access for testing.
|
.setNameFormat("LeaseRenewer-%04d").setDaemon(true).build();
|
||||||
static final int MAX_LEASE_RENEWAL_THREAD_COUNT = 20;
|
|
||||||
|
|
||||||
|
|
||||||
private final ILeaseRenewer<T> leaseRenewer;
|
private final ILeaseRenewer<T> leaseRenewer;
|
||||||
private final ILeaseTaker<T> leaseTaker;
|
private final ILeaseTaker<T> leaseTaker;
|
||||||
|
|
@ -114,7 +115,8 @@ public class LeaseCoordinator<T extends Lease> {
|
||||||
long epsilonMillis,
|
long epsilonMillis,
|
||||||
IMetricsFactory metricsFactory) {
|
IMetricsFactory metricsFactory) {
|
||||||
this(leaseManager, workerIdentifier, leaseDurationMillis, epsilonMillis,
|
this(leaseManager, workerIdentifier, leaseDurationMillis, epsilonMillis,
|
||||||
DEFAULT_MAX_LEASES_FOR_WORKER, DEFAULT_MAX_LEASES_TO_STEAL_AT_ONE_TIME, metricsFactory);
|
DEFAULT_MAX_LEASES_FOR_WORKER, DEFAULT_MAX_LEASES_TO_STEAL_AT_ONE_TIME,
|
||||||
|
KinesisClientLibConfiguration.DEFAULT_MAX_LEASE_RENEWAL_THREADS, metricsFactory);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -134,8 +136,9 @@ public class LeaseCoordinator<T extends Lease> {
|
||||||
long epsilonMillis,
|
long epsilonMillis,
|
||||||
int maxLeasesForWorker,
|
int maxLeasesForWorker,
|
||||||
int maxLeasesToStealAtOneTime,
|
int maxLeasesToStealAtOneTime,
|
||||||
|
int maxLeaseRenewerThreadCount,
|
||||||
IMetricsFactory metricsFactory) {
|
IMetricsFactory metricsFactory) {
|
||||||
this.leaseRenewalThreadpool = getLeaseRenewalExecutorService(MAX_LEASE_RENEWAL_THREAD_COUNT);
|
this.leaseRenewalThreadpool = getLeaseRenewalExecutorService(maxLeaseRenewerThreadCount);
|
||||||
this.leaseTaker = new LeaseTaker<T>(leaseManager, workerIdentifier, leaseDurationMillis)
|
this.leaseTaker = new LeaseTaker<T>(leaseManager, workerIdentifier, leaseDurationMillis)
|
||||||
.withMaxLeasesForWorker(maxLeasesForWorker)
|
.withMaxLeasesForWorker(maxLeasesForWorker)
|
||||||
.withMaxLeasesToStealAtOneTime(maxLeasesToStealAtOneTime);
|
.withMaxLeasesToStealAtOneTime(maxLeasesToStealAtOneTime);
|
||||||
|
|
@ -366,6 +369,9 @@ public class LeaseCoordinator<T extends Lease> {
|
||||||
* @return Executor service that should be used for lease renewal.
|
* @return Executor service that should be used for lease renewal.
|
||||||
*/
|
*/
|
||||||
private static ExecutorService getLeaseRenewalExecutorService(int maximumPoolSize) {
|
private static ExecutorService getLeaseRenewalExecutorService(int maximumPoolSize) {
|
||||||
return Executors.newFixedThreadPool(maximumPoolSize, LEASE_RENEWAL_THREAD_FACTORY);
|
int coreLeaseCount = Math.max(maximumPoolSize / 4, 2);
|
||||||
|
|
||||||
|
return new ThreadPoolExecutor(coreLeaseCount, maximumPoolSize, 60, TimeUnit.SECONDS,
|
||||||
|
new LinkedTransferQueue<Runnable>(), LEASE_RENEWAL_THREAD_FACTORY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.leases.impl;
|
package com.amazonaws.services.kinesis.leases.impl;
|
||||||
|
|
||||||
|
|
@ -19,6 +19,7 @@ import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.leases.util.DynamoUtils;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
|
@ -386,7 +387,19 @@ public class LeaseManager<T extends Lease> implements ILeaseManager<T> {
|
||||||
+ " because the lease counter was not " + lease.getLeaseCounter());
|
+ " because the lease counter was not " + lease.getLeaseCounter());
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
// If we had a spurious retry during the Dynamo update, then this conditional PUT failure
|
||||||
|
// might be incorrect. So, we get the item straight away and check if the lease owner + lease counter
|
||||||
|
// are what we expected.
|
||||||
|
String expectedOwner = lease.getLeaseOwner();
|
||||||
|
Long expectedCounter = lease.getLeaseCounter() + 1;
|
||||||
|
T updatedLease = getLease(lease.getLeaseKey());
|
||||||
|
if (updatedLease == null || !expectedOwner.equals(updatedLease.getLeaseOwner()) ||
|
||||||
|
!expectedCounter.equals(updatedLease.getLeaseCounter())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
LOG.info("Detected spurious renewal failure for lease with key " + lease.getLeaseKey()
|
||||||
|
+ ", but recovered");
|
||||||
} catch (AmazonClientException e) {
|
} catch (AmazonClientException e) {
|
||||||
throw convertAndRethrowExceptions("renew", lease.getLeaseKey(), e);
|
throw convertAndRethrowExceptions("renew", lease.getLeaseKey(), e);
|
||||||
}
|
}
|
||||||
|
|
@ -564,6 +577,7 @@ public class LeaseManager<T extends Lease> implements ILeaseManager<T> {
|
||||||
protected DependencyException convertAndRethrowExceptions(String operation, String leaseKey, AmazonClientException e)
|
protected DependencyException convertAndRethrowExceptions(String operation, String leaseKey, AmazonClientException e)
|
||||||
throws ProvisionedThroughputException, InvalidStateException {
|
throws ProvisionedThroughputException, InvalidStateException {
|
||||||
if (e instanceof ProvisionedThroughputExceededException) {
|
if (e instanceof ProvisionedThroughputExceededException) {
|
||||||
|
LOG.warn("Provisioned Throughput on the lease table has been exceeded. It's recommended that you increase the IOPs on the table. Failure to increase the IOPs may cause the application to not make progress.");
|
||||||
throw new ProvisionedThroughputException(e);
|
throw new ProvisionedThroughputException(e);
|
||||||
} else if (e instanceof ResourceNotFoundException) {
|
} else if (e instanceof ResourceNotFoundException) {
|
||||||
// @formatter:on
|
// @formatter:on
|
||||||
|
|
|
||||||
|
|
@ -72,13 +72,22 @@ public class MetricsHelper {
|
||||||
* @param scope
|
* @param scope
|
||||||
*/
|
*/
|
||||||
public static void setMetricsScope(IMetricsScope scope) {
|
public static void setMetricsScope(IMetricsScope scope) {
|
||||||
if (currentScope.get() != null) {
|
if (isMetricsScopePresent()) {
|
||||||
throw new RuntimeException(String.format(
|
throw new RuntimeException(String.format(
|
||||||
"Metrics scope is already set for the current thread %s", Thread.currentThread().getName()));
|
"Metrics scope is already set for the current thread %s", Thread.currentThread().getName()));
|
||||||
}
|
}
|
||||||
currentScope.set(scope);
|
currentScope.set(scope);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if current metricsscope is present or not.
|
||||||
|
*
|
||||||
|
* @return true if metrics scope is present, else returns false
|
||||||
|
*/
|
||||||
|
public static boolean isMetricsScopePresent() {
|
||||||
|
return currentScope.get() != null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unsets the metrics scope for the current thread.
|
* Unsets the metrics scope for the current thread.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -26,13 +26,16 @@ import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.ShutdownReason;
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.ShutdownReason;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.CheckpointMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.CheckpointMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.InitializeMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.InitializeMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.Message;
|
import com.amazonaws.services.kinesis.multilang.messages.Message;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.ProcessRecordsMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.ProcessRecordsMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.ShutdownMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.ShutdownMessage;
|
||||||
|
import com.amazonaws.services.kinesis.multilang.messages.ShutdownRequestedMessage;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -145,6 +148,13 @@ class MessageWriter {
|
||||||
return writeMessage(new ShutdownMessage(reason));
|
return writeMessage(new ShutdownMessage(reason));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a {@link ShutdownRequestedMessage} to the subprocess.
|
||||||
|
*/
|
||||||
|
Future<Boolean> writeShutdownRequestedMessage() {
|
||||||
|
return writeMessage(new ShutdownRequestedMessage());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes a {@link CheckpointMessage} to the subprocess.
|
* Writes a {@link CheckpointMessage} to the subprocess.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,28 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang;
|
package com.amazonaws.services.kinesis.multilang;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.PrintStream;
|
import java.io.PrintStream;
|
||||||
|
|
||||||
import java.util.concurrent.Callable;
|
import java.util.concurrent.Callable;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
@ -140,11 +143,26 @@ public class MultiLangDaemon implements Callable<Integer> {
|
||||||
ExecutorService executorService = config.getExecutorService();
|
ExecutorService executorService = config.getExecutorService();
|
||||||
|
|
||||||
// Daemon
|
// Daemon
|
||||||
MultiLangDaemon daemon = new MultiLangDaemon(
|
final MultiLangDaemon daemon = new MultiLangDaemon(
|
||||||
config.getKinesisClientLibConfiguration(),
|
config.getKinesisClientLibConfiguration(),
|
||||||
config.getRecordProcessorFactory(),
|
config.getRecordProcessorFactory(),
|
||||||
executorService);
|
executorService);
|
||||||
|
|
||||||
|
final long shutdownGraceMillis = config.getKinesisClientLibConfiguration().getShutdownGraceMillis();
|
||||||
|
Runtime.getRuntime().addShutdownHook(new Thread() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
LOG.info("Process terminanted, will initiate shutdown.");
|
||||||
|
try {
|
||||||
|
Future<Void> fut = daemon.worker.requestShutdown();
|
||||||
|
fut.get(shutdownGraceMillis, TimeUnit.MILLISECONDS);
|
||||||
|
LOG.info("Process shutdown is complete.");
|
||||||
|
} catch (InterruptedException | ExecutionException | TimeoutException e) {
|
||||||
|
LOG.error("Encountered an error during shutdown.", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
Future<Integer> future = executorService.submit(daemon);
|
Future<Integer> future = executorService.submit(daemon);
|
||||||
try {
|
try {
|
||||||
System.exit(future.get());
|
System.exit(future.get());
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,34 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang;
|
package com.amazonaws.services.kinesis.multilang;
|
||||||
|
|
||||||
|
import com.amazonaws.ClientConfiguration;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.config.KinesisClientLibConfigurator;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.FileNotFoundException;
|
import java.io.FileNotFoundException;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.net.URI;
|
||||||
|
import java.net.URISyntaxException;
|
||||||
import java.util.Properties;
|
import java.util.Properties;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
|
|
@ -26,13 +36,6 @@ import java.util.concurrent.SynchronousQueue;
|
||||||
import java.util.concurrent.ThreadPoolExecutor;
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.config.KinesisClientLibConfigurator;
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
|
||||||
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class captures the configuration needed to run the MultiLangDaemon.
|
* This class captures the configuration needed to run the MultiLangDaemon.
|
||||||
*/
|
*/
|
||||||
|
|
@ -47,6 +50,10 @@ public class MultiLangDaemonConfig {
|
||||||
private static final String PROP_PROCESSING_LANGUAGE = "processingLanguage";
|
private static final String PROP_PROCESSING_LANGUAGE = "processingLanguage";
|
||||||
private static final String PROP_MAX_ACTIVE_THREADS = "maxActiveThreads";
|
private static final String PROP_MAX_ACTIVE_THREADS = "maxActiveThreads";
|
||||||
|
|
||||||
|
public static final String PROXY_HOST_PROP = "http.proxyHost";
|
||||||
|
public static final String PROXY_PORT_PROP = "http.proxyPort";
|
||||||
|
public static final String HTTP_PROXY_ENV_VAR = "HTTP_PROXY";
|
||||||
|
|
||||||
private KinesisClientLibConfiguration kinesisClientLibConfig;
|
private KinesisClientLibConfiguration kinesisClientLibConfig;
|
||||||
|
|
||||||
private ExecutorService executorService;
|
private ExecutorService executorService;
|
||||||
|
|
@ -55,9 +62,9 @@ public class MultiLangDaemonConfig {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
* @param propertiesFile The location of the properties file.
|
* @param propertiesFile The location of the properties file.
|
||||||
* @throws IOException Thrown when the properties file can't be accessed.
|
* @throws IOException Thrown when the properties file can't be accessed.
|
||||||
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
||||||
*/
|
*/
|
||||||
public MultiLangDaemonConfig(String propertiesFile) throws IOException, IllegalArgumentException {
|
public MultiLangDaemonConfig(String propertiesFile) throws IOException, IllegalArgumentException {
|
||||||
|
|
@ -65,55 +72,93 @@ public class MultiLangDaemonConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @param propertiesFile The location of the properties file.
|
* @param propertiesFile The location of the properties file.
|
||||||
* @param classLoader A classloader, useful if trying to programmatically configure with the daemon, such as in a
|
* @param classLoader A classloader, useful if trying to programmatically configure with the daemon, such as in a
|
||||||
* unit test.
|
* unit test.
|
||||||
* @throws IOException Thrown when the properties file can't be accessed.
|
* @throws IOException Thrown when the properties file can't be accessed.
|
||||||
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
||||||
*/
|
*/
|
||||||
public MultiLangDaemonConfig(String propertiesFile, ClassLoader classLoader) throws IOException,
|
public MultiLangDaemonConfig(String propertiesFile, ClassLoader classLoader)
|
||||||
IllegalArgumentException {
|
throws IOException, IllegalArgumentException {
|
||||||
this(propertiesFile, classLoader, new KinesisClientLibConfigurator());
|
this(propertiesFile, classLoader, new KinesisClientLibConfigurator());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @param propertiesFile The location of the properties file.
|
* @param propertiesFile The location of the properties file.
|
||||||
* @param classLoader A classloader, useful if trying to programmatically configure with the daemon, such as in a
|
* @param classLoader A classloader, useful if trying to programmatically configure with the daemon, such as in a
|
||||||
* unit test.
|
* unit test.
|
||||||
* @param configurator A configurator to use.
|
* @param configurator A configurator to use.
|
||||||
* @throws IOException Thrown when the properties file can't be accessed.
|
* @throws IOException Thrown when the properties file can't be accessed.
|
||||||
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
* @throws IllegalArgumentException Thrown when the contents of the properties file are not as expected.
|
||||||
*/
|
*/
|
||||||
public MultiLangDaemonConfig(String propertiesFile,
|
public MultiLangDaemonConfig(String propertiesFile, ClassLoader classLoader,
|
||||||
ClassLoader classLoader,
|
|
||||||
KinesisClientLibConfigurator configurator) throws IOException, IllegalArgumentException {
|
KinesisClientLibConfigurator configurator) throws IOException, IllegalArgumentException {
|
||||||
Properties properties = loadProperties(classLoader, propertiesFile);
|
Properties properties = loadProperties(classLoader, propertiesFile);
|
||||||
if (!validateProperties(properties)) {
|
if (!validateProperties(properties)) {
|
||||||
throw new IllegalArgumentException("Must provide an executable name in the properties file, "
|
throw new IllegalArgumentException(
|
||||||
+ "e.g. executableName = sampleapp.py");
|
"Must provide an executable name in the properties file, " + "e.g. executableName = sampleapp.py");
|
||||||
}
|
}
|
||||||
|
|
||||||
String executableName = properties.getProperty(PROP_EXECUTABLE_NAME);
|
String executableName = properties.getProperty(PROP_EXECUTABLE_NAME);
|
||||||
String processingLanguage = properties.getProperty(PROP_PROCESSING_LANGUAGE);
|
String processingLanguage = properties.getProperty(PROP_PROCESSING_LANGUAGE);
|
||||||
|
ClientConfiguration clientConfig = buildClientConfig(properties);
|
||||||
|
|
||||||
|
kinesisClientLibConfig = configurator.getConfiguration(properties).withKinesisClientConfig(clientConfig)
|
||||||
|
.withCloudWatchClientConfig(clientConfig).withDynamoDBClientConfig(clientConfig);
|
||||||
|
|
||||||
kinesisClientLibConfig = configurator.getConfiguration(properties);
|
|
||||||
executorService = buildExecutorService(properties);
|
executorService = buildExecutorService(properties);
|
||||||
recordProcessorFactory = new MultiLangRecordProcessorFactory(executableName, executorService);
|
recordProcessorFactory = new MultiLangRecordProcessorFactory(executableName, executorService,
|
||||||
|
kinesisClientLibConfig);
|
||||||
|
|
||||||
LOG.info("Running " + kinesisClientLibConfig.getApplicationName() + " to process stream "
|
LOG.info("Running " + kinesisClientLibConfig.getApplicationName() + " to process stream "
|
||||||
+ kinesisClientLibConfig.getStreamName() + " with executable " + executableName);
|
+ kinesisClientLibConfig.getStreamName() + " with executable " + executableName);
|
||||||
prepare(processingLanguage);
|
prepare(processingLanguage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ClientConfiguration buildClientConfig(Properties properties) {
|
||||||
|
ClientConfiguration clientConfig = new ClientConfiguration();
|
||||||
|
String proxyHost = null;
|
||||||
|
int proxyPort = 0;
|
||||||
|
|
||||||
|
if (properties.getProperty(PROXY_HOST_PROP) != null) {
|
||||||
|
LOG.debug("Getting proxy info from properties file.");
|
||||||
|
|
||||||
|
proxyHost = properties.getProperty(PROXY_HOST_PROP);
|
||||||
|
proxyPort = Integer.parseInt(properties.getProperty(PROXY_PORT_PROP));
|
||||||
|
} else if (System.getProperty(PROXY_HOST_PROP) != null) {
|
||||||
|
LOG.debug("Getting proxy info from java system properties");
|
||||||
|
|
||||||
|
proxyHost = System.getProperty(PROXY_HOST_PROP);
|
||||||
|
proxyPort = Integer.parseInt(System.getProperty(PROXY_PORT_PROP));
|
||||||
|
} else if (System.getenv(HTTP_PROXY_ENV_VAR) != null) {
|
||||||
|
LOG.debug("Getting proxy info environment settings");
|
||||||
|
|
||||||
|
try {
|
||||||
|
URI proxyAddr = new URI(System.getenv(HTTP_PROXY_ENV_VAR));
|
||||||
|
|
||||||
|
proxyHost = proxyAddr.getHost();
|
||||||
|
proxyPort = proxyAddr.getPort();
|
||||||
|
} catch (URISyntaxException e) {
|
||||||
|
LOG.error("System proxy not set correctly", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (StringUtils.isNotEmpty(proxyHost) && proxyPort > 0) {
|
||||||
|
clientConfig = clientConfig.withProxyHost(proxyHost).withProxyPort(proxyPort);
|
||||||
|
} else {
|
||||||
|
LOG.debug("Not configuring proxy as none specified");
|
||||||
|
}
|
||||||
|
|
||||||
|
return clientConfig;
|
||||||
|
}
|
||||||
|
|
||||||
private void prepare(String processingLanguage) {
|
private void prepare(String processingLanguage) {
|
||||||
// Ensure the JVM will refresh the cached IP values of AWS resources (e.g. service endpoints).
|
// Ensure the JVM will refresh the cached IP values of AWS resources (e.g. service endpoints).
|
||||||
java.security.Security.setProperty("networkaddress.cache.ttl", "60");
|
java.security.Security.setProperty("networkaddress.cache.ttl", "60");
|
||||||
|
|
||||||
LOG.info("Using workerId: " + kinesisClientLibConfig.getWorkerIdentifier());
|
LOG.info("Using workerId: " + kinesisClientLibConfig.getWorkerIdentifier());
|
||||||
LOG.info("Using credentials with access key id: "
|
LOG.info("Using credentials with access key id: " + kinesisClientLibConfig.getKinesisCredentialsProvider()
|
||||||
+ kinesisClientLibConfig.getKinesisCredentialsProvider().getCredentials().getAWSAccessKeyId());
|
.getCredentials().getAWSAccessKeyId());
|
||||||
|
|
||||||
StringBuilder userAgent = new StringBuilder(KinesisClientLibConfiguration.KINESIS_CLIENT_LIB_USER_AGENT);
|
StringBuilder userAgent = new StringBuilder(KinesisClientLibConfiguration.KINESIS_CLIENT_LIB_USER_AGENT);
|
||||||
userAgent.append(" ");
|
userAgent.append(" ");
|
||||||
|
|
@ -187,7 +232,6 @@ public class MultiLangDaemonConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @return A KinesisClientLibConfiguration object based on the properties file provided.
|
* @return A KinesisClientLibConfiguration object based on the properties file provided.
|
||||||
*/
|
*/
|
||||||
public KinesisClientLibConfiguration getKinesisClientLibConfiguration() {
|
public KinesisClientLibConfiguration getKinesisClientLibConfiguration() {
|
||||||
|
|
@ -195,7 +239,6 @@ public class MultiLangDaemonConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @return An executor service based on the properties file provided.
|
* @return An executor service based on the properties file provided.
|
||||||
*/
|
*/
|
||||||
public ExecutorService getExecutorService() {
|
public ExecutorService getExecutorService() {
|
||||||
|
|
@ -203,7 +246,6 @@ public class MultiLangDaemonConfig {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
|
||||||
* @return A MultiLangRecordProcessorFactory based on the properties file provided.
|
* @return A MultiLangRecordProcessorFactory based on the properties file provided.
|
||||||
*/
|
*/
|
||||||
public MultiLangRecordProcessorFactory getRecordProcessorFactory() {
|
public MultiLangRecordProcessorFactory getRecordProcessorFactory() {
|
||||||
|
|
|
||||||
|
|
@ -1,24 +1,22 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang;
|
package com.amazonaws.services.kinesis.multilang;
|
||||||
|
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.concurrent.Future;
|
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.ShutdownReason;
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.ShutdownReason;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
import com.amazonaws.services.kinesis.clientlibrary.types.InitializationInput;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
|
@ -27,10 +25,16 @@ import com.amazonaws.services.kinesis.multilang.messages.InitializeMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.Message;
|
import com.amazonaws.services.kinesis.multilang.messages.Message;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.ProcessRecordsMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.ProcessRecordsMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.ShutdownMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.ShutdownMessage;
|
||||||
|
import com.amazonaws.services.kinesis.multilang.messages.ShutdownRequestedMessage;
|
||||||
import com.amazonaws.services.kinesis.multilang.messages.StatusMessage;
|
import com.amazonaws.services.kinesis.multilang.messages.StatusMessage;
|
||||||
|
|
||||||
import lombok.extern.apachecommons.CommonsLog;
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An implementation of the multi language protocol.
|
* An implementation of the multi language protocol.
|
||||||
*/
|
*/
|
||||||
|
|
@ -40,10 +44,11 @@ class MultiLangProtocol {
|
||||||
private MessageReader messageReader;
|
private MessageReader messageReader;
|
||||||
private MessageWriter messageWriter;
|
private MessageWriter messageWriter;
|
||||||
private final InitializationInput initializationInput;
|
private final InitializationInput initializationInput;
|
||||||
|
private KinesisClientLibConfiguration configuration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
* @param messageReader
|
* @param messageReader
|
||||||
* A message reader.
|
* A message reader.
|
||||||
* @param messageWriter
|
* @param messageWriter
|
||||||
|
|
@ -52,16 +57,17 @@ class MultiLangProtocol {
|
||||||
* information about the shard this processor is starting to process
|
* information about the shard this processor is starting to process
|
||||||
*/
|
*/
|
||||||
MultiLangProtocol(MessageReader messageReader, MessageWriter messageWriter,
|
MultiLangProtocol(MessageReader messageReader, MessageWriter messageWriter,
|
||||||
InitializationInput initializationInput) {
|
InitializationInput initializationInput, KinesisClientLibConfiguration configuration) {
|
||||||
this.messageReader = messageReader;
|
this.messageReader = messageReader;
|
||||||
this.messageWriter = messageWriter;
|
this.messageWriter = messageWriter;
|
||||||
this.initializationInput = initializationInput;
|
this.initializationInput = initializationInput;
|
||||||
|
this.configuration = configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Writes an {@link InitializeMessage} to the child process's STDIN and waits for the child process to respond with
|
* Writes an {@link InitializeMessage} to the child process's STDIN and waits for the child process to respond with
|
||||||
* a {@link StatusMessage} on its STDOUT.
|
* a {@link StatusMessage} on its STDOUT.
|
||||||
*
|
*
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
*/
|
*/
|
||||||
boolean initialize() {
|
boolean initialize() {
|
||||||
|
|
@ -76,7 +82,7 @@ class MultiLangProtocol {
|
||||||
/**
|
/**
|
||||||
* Writes a {@link ProcessRecordsMessage} to the child process's STDIN and waits for the child process to respond
|
* Writes a {@link ProcessRecordsMessage} to the child process's STDIN and waits for the child process to respond
|
||||||
* with a {@link StatusMessage} on its STDOUT.
|
* with a {@link StatusMessage} on its STDOUT.
|
||||||
*
|
*
|
||||||
* @param processRecordsInput
|
* @param processRecordsInput
|
||||||
* The records, and associated metadata, to process.
|
* The records, and associated metadata, to process.
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
|
|
@ -89,7 +95,7 @@ class MultiLangProtocol {
|
||||||
/**
|
/**
|
||||||
* Writes a {@link ShutdownMessage} to the child process's STDIN and waits for the child process to respond with a
|
* Writes a {@link ShutdownMessage} to the child process's STDIN and waits for the child process to respond with a
|
||||||
* {@link StatusMessage} on its STDOUT.
|
* {@link StatusMessage} on its STDOUT.
|
||||||
*
|
*
|
||||||
* @param checkpointer A checkpointer.
|
* @param checkpointer A checkpointer.
|
||||||
* @param reason Why this processor is being shutdown.
|
* @param reason Why this processor is being shutdown.
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
|
|
@ -99,6 +105,18 @@ class MultiLangProtocol {
|
||||||
return waitForStatusMessage(ShutdownMessage.ACTION, checkpointer, writeFuture);
|
return waitForStatusMessage(ShutdownMessage.ACTION, checkpointer, writeFuture);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Writes a {@link ShutdownRequestedMessage} to the child process's STDIN and waits for the child process to respond with a
|
||||||
|
* {@link StatusMessage} on its STDOUT.
|
||||||
|
*
|
||||||
|
* @param checkpointer A checkpointer.
|
||||||
|
* @return Whether or not this operation succeeded.
|
||||||
|
*/
|
||||||
|
boolean shutdownRequested(IRecordProcessorCheckpointer checkpointer) {
|
||||||
|
Future<Boolean> writeFuture = messageWriter.writeShutdownRequestedMessage();
|
||||||
|
return waitForStatusMessage(ShutdownRequestedMessage.ACTION, checkpointer, writeFuture);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waits for a {@link StatusMessage} for a particular action. If a {@link CheckpointMessage} is received, then this
|
* Waits for a {@link StatusMessage} for a particular action. If a {@link CheckpointMessage} is received, then this
|
||||||
* method will attempt to checkpoint with the provided {@link IRecordProcessorCheckpointer}. This method returns
|
* method will attempt to checkpoint with the provided {@link IRecordProcessorCheckpointer}. This method returns
|
||||||
|
|
@ -106,7 +124,7 @@ class MultiLangProtocol {
|
||||||
* all communications with the child process regarding checkpointing were successful. Note that whether or not the
|
* all communications with the child process regarding checkpointing were successful. Note that whether or not the
|
||||||
* checkpointing itself was successful is not the concern of this method. This method simply cares whether it was
|
* checkpointing itself was successful is not the concern of this method. This method simply cares whether it was
|
||||||
* able to successfully communicate the results of its attempts to checkpoint.
|
* able to successfully communicate the results of its attempts to checkpoint.
|
||||||
*
|
*
|
||||||
* @param action
|
* @param action
|
||||||
* What action is being waited on.
|
* What action is being waited on.
|
||||||
* @param checkpointer
|
* @param checkpointer
|
||||||
|
|
@ -137,44 +155,75 @@ class MultiLangProtocol {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Waits for status message and verifies it against the expectation
|
* Waits for status message and verifies it against the expectation
|
||||||
*
|
*
|
||||||
* @param action
|
* @param action
|
||||||
* What action is being waited on.
|
* What action is being waited on.
|
||||||
* @param checkpointer
|
* @param checkpointer
|
||||||
* the original process records request
|
* the original process records request
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
*/
|
*/
|
||||||
private boolean waitForStatusMessage(String action, IRecordProcessorCheckpointer checkpointer) {
|
boolean waitForStatusMessage(String action, IRecordProcessorCheckpointer checkpointer) {
|
||||||
StatusMessage statusMessage = null;
|
Optional<StatusMessage> statusMessage = Optional.empty();
|
||||||
while (statusMessage == null) {
|
while (!statusMessage.isPresent()) {
|
||||||
Future<Message> future = this.messageReader.getNextMessageFromSTDOUT();
|
Future<Message> future = this.messageReader.getNextMessageFromSTDOUT();
|
||||||
try {
|
Optional<Message> message = configuration.getTimeoutInSeconds()
|
||||||
Message message = future.get();
|
.map(second -> futureMethod(() -> future.get(second, TimeUnit.SECONDS), action))
|
||||||
// Note that instanceof doubles as a check against a value being null
|
.orElse(futureMethod(future::get, action));
|
||||||
if (message instanceof CheckpointMessage) {
|
|
||||||
boolean checkpointWriteSucceeded = checkpoint((CheckpointMessage) message, checkpointer).get();
|
if (!message.isPresent()) {
|
||||||
if (!checkpointWriteSucceeded) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} else if (message instanceof StatusMessage) {
|
|
||||||
statusMessage = (StatusMessage) message;
|
|
||||||
}
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
log.error(String.format("Interrupted while waiting for %s message for shard %s", action,
|
|
||||||
initializationInput.getShardId()));
|
|
||||||
return false;
|
|
||||||
} catch (ExecutionException e) {
|
|
||||||
log.error(String.format("Failed to get status message for %s action for shard %s", action,
|
|
||||||
initializationInput.getShardId()), e);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Optional<Boolean> checkpointFailed = message.filter(m -> m instanceof CheckpointMessage )
|
||||||
|
.map(m -> (CheckpointMessage) m)
|
||||||
|
.flatMap(m -> futureMethod(() -> checkpoint(m, checkpointer).get(), "Checkpoint"))
|
||||||
|
.map(checkpointSuccess -> !checkpointSuccess);
|
||||||
|
|
||||||
|
if (checkpointFailed.orElse(false)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
statusMessage = message.filter(m -> m instanceof StatusMessage).map(m -> (StatusMessage) m );
|
||||||
}
|
}
|
||||||
return this.validateStatusMessage(statusMessage, action);
|
return this.validateStatusMessage(statusMessage.get(), action);
|
||||||
|
}
|
||||||
|
|
||||||
|
private interface FutureMethod<T> {
|
||||||
|
T get() throws InterruptedException, TimeoutException, ExecutionException;
|
||||||
|
}
|
||||||
|
|
||||||
|
private <T> Optional<T> futureMethod(FutureMethod<T> fm, String action) {
|
||||||
|
try {
|
||||||
|
return Optional.of(fm.get());
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
log.error(String.format("Interrupted while waiting for %s message for shard %s", action,
|
||||||
|
initializationInput.getShardId()), e);
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
log.error(String.format("Failed to get status message for %s action for shard %s", action,
|
||||||
|
initializationInput.getShardId()), e);
|
||||||
|
} catch (TimeoutException e) {
|
||||||
|
log.error(String.format("Timedout to get status message for %s action for shard %s. Terminating...",
|
||||||
|
action,
|
||||||
|
initializationInput.getShardId()),
|
||||||
|
e);
|
||||||
|
haltJvm(1);
|
||||||
|
}
|
||||||
|
return Optional.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This method is used to halt the JVM. Use this method with utmost caution, since this method will kill the JVM
|
||||||
|
* without calling the Shutdown hooks.
|
||||||
|
*
|
||||||
|
* @param exitStatus The exit status with which the JVM is to be halted.
|
||||||
|
*/
|
||||||
|
protected void haltJvm(int exitStatus) {
|
||||||
|
Runtime.getRuntime().halt(exitStatus);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Utility for confirming that the status message is for the provided action.
|
* Utility for confirming that the status message is for the provided action.
|
||||||
*
|
*
|
||||||
* @param statusMessage The status of the child process.
|
* @param statusMessage The status of the child process.
|
||||||
* @param action The action that was being waited on.
|
* @param action The action that was being waited on.
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
|
|
@ -192,7 +241,7 @@ class MultiLangProtocol {
|
||||||
* provided {@link CheckpointMessage}. If no sequence number is provided, i.e. the sequence number is null, then
|
* provided {@link CheckpointMessage}. If no sequence number is provided, i.e. the sequence number is null, then
|
||||||
* this method will call {@link IRecordProcessorCheckpointer#checkpoint()}. The method returns a future representing
|
* this method will call {@link IRecordProcessorCheckpointer#checkpoint()}. The method returns a future representing
|
||||||
* the attempt to write the result of this checkpoint attempt to the child process.
|
* the attempt to write the result of this checkpoint attempt to the child process.
|
||||||
*
|
*
|
||||||
* @param checkpointMessage A checkpoint message.
|
* @param checkpointMessage A checkpoint message.
|
||||||
* @param checkpointer A checkpointer.
|
* @param checkpointer A checkpointer.
|
||||||
* @return Whether or not this operation succeeded.
|
* @return Whether or not this operation succeeded.
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang;
|
package com.amazonaws.services.kinesis.multilang;
|
||||||
|
|
||||||
|
|
@ -20,6 +20,11 @@ import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.Future;
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.InvalidStateException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.ShutdownException;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorCheckpointer;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.v2.IShutdownNotificationAware;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
|
@ -29,13 +34,14 @@ import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ShutdownInput;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ShutdownInput;
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A record processor that manages creating a child process that implements the multi language protocol and connecting
|
* A record processor that manages creating a child process that implements the multi language protocol and connecting
|
||||||
* that child process's input and outputs to a {@link MultiLangProtocol} object and calling the appropriate methods on
|
* that child process's input and outputs to a {@link MultiLangProtocol} object and calling the appropriate methods on
|
||||||
* that object when its corresponding {@link #initialize}, {@link #processRecords}, and {@link #shutdown} methods are
|
* that object when its corresponding {@link #initialize}, {@link #processRecords}, and {@link #shutdown} methods are
|
||||||
* called.
|
* called.
|
||||||
*/
|
*/
|
||||||
public class MultiLangRecordProcessor implements IRecordProcessor {
|
public class MultiLangRecordProcessor implements IRecordProcessor, IShutdownNotificationAware {
|
||||||
|
|
||||||
private static final Log LOG = LogFactory.getLog(MultiLangRecordProcessor.class);
|
private static final Log LOG = LogFactory.getLog(MultiLangRecordProcessor.class);
|
||||||
private static final int EXIT_VALUE = 1;
|
private static final int EXIT_VALUE = 1;
|
||||||
|
|
@ -60,6 +66,8 @@ public class MultiLangRecordProcessor implements IRecordProcessor {
|
||||||
|
|
||||||
private MultiLangProtocol protocol;
|
private MultiLangProtocol protocol;
|
||||||
|
|
||||||
|
private KinesisClientLibConfiguration configuration;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(InitializationInput initializationInput) {
|
public void initialize(InitializationInput initializationInput) {
|
||||||
try {
|
try {
|
||||||
|
|
@ -82,7 +90,7 @@ public class MultiLangRecordProcessor implements IRecordProcessor {
|
||||||
// Submit the error reader for execution
|
// Submit the error reader for execution
|
||||||
stderrReadTask = executorService.submit(readSTDERRTask);
|
stderrReadTask = executorService.submit(readSTDERRTask);
|
||||||
|
|
||||||
protocol = new MultiLangProtocol(messageReader, messageWriter, initializationInput);
|
protocol = new MultiLangProtocol(messageReader, messageWriter, initializationInput, configuration);
|
||||||
if (!protocol.initialize()) {
|
if (!protocol.initialize()) {
|
||||||
throw new RuntimeException("Failed to initialize child process");
|
throw new RuntimeException("Failed to initialize child process");
|
||||||
}
|
}
|
||||||
|
|
@ -136,6 +144,20 @@ public class MultiLangRecordProcessor implements IRecordProcessor {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void shutdownRequested(IRecordProcessorCheckpointer checkpointer) {
|
||||||
|
LOG.info("Shutdown is requested.");
|
||||||
|
if (!initialized) {
|
||||||
|
LOG.info("Record processor was not initialized so no need to initiate a final checkpoint.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LOG.info("Requesting a checkpoint on shutdown notification.");
|
||||||
|
if (!protocol.shutdownRequested(checkpointer)) {
|
||||||
|
LOG.error("Child process failed to complete shutdown notification.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to tell whether the processor has been shutdown already.
|
* Used to tell whether the processor has been shutdown already.
|
||||||
*/
|
*/
|
||||||
|
|
@ -154,9 +176,9 @@ public class MultiLangRecordProcessor implements IRecordProcessor {
|
||||||
* An obejct mapper.
|
* An obejct mapper.
|
||||||
*/
|
*/
|
||||||
MultiLangRecordProcessor(ProcessBuilder processBuilder, ExecutorService executorService,
|
MultiLangRecordProcessor(ProcessBuilder processBuilder, ExecutorService executorService,
|
||||||
ObjectMapper objectMapper) {
|
ObjectMapper objectMapper, KinesisClientLibConfiguration configuration) {
|
||||||
this(processBuilder, executorService, objectMapper, new MessageWriter(), new MessageReader(),
|
this(processBuilder, executorService, objectMapper, new MessageWriter(), new MessageReader(),
|
||||||
new DrainChildSTDERRTask());
|
new DrainChildSTDERRTask(), configuration);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -176,13 +198,16 @@ public class MultiLangRecordProcessor implements IRecordProcessor {
|
||||||
* Error reader to read from child process's stderr
|
* Error reader to read from child process's stderr
|
||||||
*/
|
*/
|
||||||
MultiLangRecordProcessor(ProcessBuilder processBuilder, ExecutorService executorService, ObjectMapper objectMapper,
|
MultiLangRecordProcessor(ProcessBuilder processBuilder, ExecutorService executorService, ObjectMapper objectMapper,
|
||||||
MessageWriter messageWriter, MessageReader messageReader, DrainChildSTDERRTask readSTDERRTask) {
|
MessageWriter messageWriter, MessageReader messageReader, DrainChildSTDERRTask readSTDERRTask,
|
||||||
|
KinesisClientLibConfiguration configuration) {
|
||||||
this.executorService = executorService;
|
this.executorService = executorService;
|
||||||
this.processBuilder = processBuilder;
|
this.processBuilder = processBuilder;
|
||||||
this.objectMapper = objectMapper;
|
this.objectMapper = objectMapper;
|
||||||
this.messageWriter = messageWriter;
|
this.messageWriter = messageWriter;
|
||||||
this.messageReader = messageReader;
|
this.messageReader = messageReader;
|
||||||
this.readSTDERRTask = readSTDERRTask;
|
this.readSTDERRTask = readSTDERRTask;
|
||||||
|
this.configuration = configuration;
|
||||||
|
|
||||||
|
|
||||||
this.state = ProcessState.ACTIVE;
|
this.state = ProcessState.ACTIVE;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,22 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang;
|
package com.amazonaws.services.kinesis.multilang;
|
||||||
|
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.lib.worker.KinesisClientLibConfiguration;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
|
|
@ -39,12 +40,15 @@ public class MultiLangRecordProcessorFactory implements IRecordProcessorFactory
|
||||||
|
|
||||||
private final ExecutorService executorService;
|
private final ExecutorService executorService;
|
||||||
|
|
||||||
|
private final KinesisClientLibConfiguration configuration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param command The command that will do processing for this factory's record processors.
|
* @param command The command that will do processing for this factory's record processors.
|
||||||
* @param executorService An executor service to use while processing inputs and outputs of the child process.
|
* @param executorService An executor service to use while processing inputs and outputs of the child process.
|
||||||
*/
|
*/
|
||||||
public MultiLangRecordProcessorFactory(String command, ExecutorService executorService) {
|
public MultiLangRecordProcessorFactory(String command, ExecutorService executorService,
|
||||||
this(command, executorService, new ObjectMapper());
|
KinesisClientLibConfiguration configuration) {
|
||||||
|
this(command, executorService, new ObjectMapper(), configuration);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -52,11 +56,13 @@ public class MultiLangRecordProcessorFactory implements IRecordProcessorFactory
|
||||||
* @param executorService An executor service to use while processing inputs and outputs of the child process.
|
* @param executorService An executor service to use while processing inputs and outputs of the child process.
|
||||||
* @param objectMapper An object mapper used to convert messages to json to be written to the child process
|
* @param objectMapper An object mapper used to convert messages to json to be written to the child process
|
||||||
*/
|
*/
|
||||||
public MultiLangRecordProcessorFactory(String command, ExecutorService executorService, ObjectMapper objectMapper) {
|
public MultiLangRecordProcessorFactory(String command, ExecutorService executorService, ObjectMapper objectMapper,
|
||||||
|
KinesisClientLibConfiguration configuration) {
|
||||||
this.command = command;
|
this.command = command;
|
||||||
this.commandArray = command.split(COMMAND_DELIMETER_REGEX);
|
this.commandArray = command.split(COMMAND_DELIMETER_REGEX);
|
||||||
this.executorService = executorService;
|
this.executorService = executorService;
|
||||||
this.objectMapper = objectMapper;
|
this.objectMapper = objectMapper;
|
||||||
|
this.configuration = configuration;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
@ -65,7 +71,8 @@ public class MultiLangRecordProcessorFactory implements IRecordProcessorFactory
|
||||||
/*
|
/*
|
||||||
* Giving ProcessBuilder the command as an array of Strings allows users to specify command line arguments.
|
* Giving ProcessBuilder the command as an array of Strings allows users to specify command line arguments.
|
||||||
*/
|
*/
|
||||||
return new MultiLangRecordProcessor(new ProcessBuilder(commandArray), executorService, this.objectMapper);
|
return new MultiLangRecordProcessor(new ProcessBuilder(commandArray), executorService, this.objectMapper,
|
||||||
|
this.configuration);
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] getCommandArray() {
|
String[] getCommandArray() {
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang.messages;
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang.messages;
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang.messages;
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang.messages;
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
|
@ -23,11 +23,14 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
* Abstract class for all messages that are sent to the client's process.
|
* Abstract class for all messages that are sent to the client's process.
|
||||||
*/
|
*/
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "action")
|
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "action")
|
||||||
@JsonSubTypes({ @Type(value = CheckpointMessage.class, name = CheckpointMessage.ACTION),
|
@JsonSubTypes({
|
||||||
|
@Type(value = CheckpointMessage.class, name = CheckpointMessage.ACTION),
|
||||||
@Type(value = InitializeMessage.class, name = InitializeMessage.ACTION),
|
@Type(value = InitializeMessage.class, name = InitializeMessage.ACTION),
|
||||||
@Type(value = ProcessRecordsMessage.class, name = ProcessRecordsMessage.ACTION),
|
@Type(value = ProcessRecordsMessage.class, name = ProcessRecordsMessage.ACTION),
|
||||||
@Type(value = ShutdownMessage.class, name = ShutdownMessage.ACTION),
|
@Type(value = ShutdownMessage.class, name = ShutdownMessage.ACTION),
|
||||||
@Type(value = StatusMessage.class, name = StatusMessage.ACTION), })
|
@Type(value = StatusMessage.class, name = StatusMessage.ACTION),
|
||||||
|
@Type(value = ShutdownRequestedMessage.class, name = ShutdownRequestedMessage.ACTION),
|
||||||
|
})
|
||||||
public abstract class Message {
|
public abstract class Message {
|
||||||
|
|
||||||
private ObjectMapper mapper = new ObjectMapper();;
|
private ObjectMapper mapper = new ObjectMapper();;
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.multilang.messages;
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,31 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.multilang.messages;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A message to indicate to the client's process that shutdown is requested.
|
||||||
|
*/
|
||||||
|
public class ShutdownRequestedMessage extends Message {
|
||||||
|
/**
|
||||||
|
* The name used for the action field in {@link Message}.
|
||||||
|
*/
|
||||||
|
public static final String ACTION = "shutdownRequested";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convenience constructor.
|
||||||
|
*/
|
||||||
|
public ShutdownRequestedMessage() {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.dynamodbv2.streamsadapter;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.AmazonKinesis;
|
||||||
|
import com.amazonaws.services.kinesis.AmazonKinesisClient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is only used for testing purposes, to make sure that the correct calls are made while using DynamoDB
|
||||||
|
* streams.
|
||||||
|
*/
|
||||||
|
public class AmazonDynamoDBStreamsAdapterClient extends AmazonKinesisClient {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.dynamodbv2.streamsadapter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is only used for testing purposes, to make sure that the correct calls are made while using DynamoDB
|
||||||
|
* streams.
|
||||||
|
*/
|
||||||
|
public class AmazonDynamoDBStreamsAdapterClientChild extends AmazonDynamoDBStreamsAdapterClient {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,53 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.config;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.config.DatePropertyValueDecoder;
|
||||||
|
|
||||||
|
public class DatePropertyValueDecoderTest {
|
||||||
|
|
||||||
|
private DatePropertyValueDecoder decoder = new DatePropertyValueDecoder();
|
||||||
|
|
||||||
|
private static final String TEST_VALUE = "1527267472";
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNumericValue() {
|
||||||
|
Date timestamp = decoder.decodeValue(TEST_VALUE);
|
||||||
|
assertEquals(timestamp.getClass(), Date.class);
|
||||||
|
assertEquals(timestamp, new Date(Long.parseLong(TEST_VALUE) * 1000L));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class)
|
||||||
|
public void testEmptyValue() {
|
||||||
|
Date timestamp = decoder.decodeValue("");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class)
|
||||||
|
public void testNullValue() {
|
||||||
|
Date timestamp = decoder.decodeValue(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class)
|
||||||
|
public void testNonNumericValue() {
|
||||||
|
Date timestamp = decoder.decodeValue("123abc");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.config;
|
package com.amazonaws.services.kinesis.clientlibrary.config;
|
||||||
|
|
||||||
|
|
@ -22,9 +22,11 @@ import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.ByteArrayInputStream;
|
import java.io.ByteArrayInputStream;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import com.amazonaws.auth.AWSCredentials;
|
import com.amazonaws.auth.AWSCredentials;
|
||||||
|
|
@ -60,6 +62,8 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
assertEquals(config.getApplicationName(), "b");
|
assertEquals(config.getApplicationName(), "b");
|
||||||
assertEquals(config.getStreamName(), "a");
|
assertEquals(config.getStreamName(), "a");
|
||||||
assertEquals(config.getWorkerIdentifier(), "123");
|
assertEquals(config.getWorkerIdentifier(), "123");
|
||||||
|
assertEquals(config.getMaxGetRecordsThreadPool(), Optional.empty());
|
||||||
|
assertEquals(config.getRetryGetRecordsInSeconds(), Optional.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -107,7 +111,9 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
"workerId = w123",
|
"workerId = w123",
|
||||||
"maxRecords = 10",
|
"maxRecords = 10",
|
||||||
"metricsMaxQueueSize = 20",
|
"metricsMaxQueueSize = 20",
|
||||||
"applicationName = kinesis"
|
"applicationName = kinesis",
|
||||||
|
"retryGetRecordsInSeconds = 2",
|
||||||
|
"maxGetRecordsThreadPool = 1"
|
||||||
}, '\n'));
|
}, '\n'));
|
||||||
|
|
||||||
assertEquals(config.getApplicationName(), "kinesis");
|
assertEquals(config.getApplicationName(), "kinesis");
|
||||||
|
|
@ -115,6 +121,8 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
assertEquals(config.getWorkerIdentifier(), "w123");
|
assertEquals(config.getWorkerIdentifier(), "w123");
|
||||||
assertEquals(config.getMaxRecords(), 10);
|
assertEquals(config.getMaxRecords(), 10);
|
||||||
assertEquals(config.getMetricsMaxQueueSize(), 20);
|
assertEquals(config.getMetricsMaxQueueSize(), 20);
|
||||||
|
assertEquals(config.getRetryGetRecordsInSeconds(), Optional.of(2));
|
||||||
|
assertEquals(config.getMaxGetRecordsThreadPool(), Optional.of(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -136,6 +144,20 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
assertTrue(config.shouldValidateSequenceNumberBeforeCheckpointing());
|
assertTrue(config.shouldValidateSequenceNumberBeforeCheckpointing());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithDateVariables() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
getConfiguration(StringUtils.join(new String[] {
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD, " + credentialName1,
|
||||||
|
"timestampAtInitialPositionInStream = 1527267472"
|
||||||
|
}, '\n'));
|
||||||
|
|
||||||
|
assertEquals(config.getTimestampAtInitialPositionInStream(),
|
||||||
|
new Date(1527267472 * 1000L));
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testWithStringVariables() {
|
public void testWithStringVariables() {
|
||||||
KinesisClientLibConfiguration config =
|
KinesisClientLibConfiguration config =
|
||||||
|
|
@ -182,6 +204,49 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
}, '\n'));
|
}, '\n'));
|
||||||
|
|
||||||
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.TRIM_HORIZON);
|
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.TRIM_HORIZON);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithTimestampAtInitialPositionInStreamVariables() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
getConfiguration(StringUtils.join(new String[] {
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD," + credentialName1,
|
||||||
|
"timestampAtInitialPositionInStream = 1527267472"
|
||||||
|
}, '\n'));
|
||||||
|
|
||||||
|
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.AT_TIMESTAMP);
|
||||||
|
assertEquals(config.getTimestampAtInitialPositionInStream(),
|
||||||
|
new Date(1527267472 * 1000L));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithEmptyTimestampAtInitialPositionInStreamVariables() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
getConfiguration(StringUtils.join(new String[] {
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD," + credentialName1,
|
||||||
|
"timestampAtInitialPositionInStream = "
|
||||||
|
}, '\n'));
|
||||||
|
|
||||||
|
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.LATEST);
|
||||||
|
assertEquals(config.getTimestampAtInitialPositionInStream(), null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithNonNumericTimestampAtInitialPositionInStreamVariables() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
getConfiguration(StringUtils.join(new String[] {
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD," + credentialName1,
|
||||||
|
"timestampAtInitialPositionInStream = 123abc"
|
||||||
|
}, '\n'));
|
||||||
|
|
||||||
|
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.LATEST);
|
||||||
|
assertEquals(config.getTimestampAtInitialPositionInStream(), null);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -202,6 +267,42 @@ public class KinesisClientLibConfiguratorTest {
|
||||||
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.TRIM_HORIZON);
|
assertEquals(config.getInitialPositionInStream(), InitialPositionInStream.TRIM_HORIZON);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testEmptyOptionalVariables() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
getConfiguration(StringUtils.join(new String[] {
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD," + credentialName1,
|
||||||
|
"workerId = 123",
|
||||||
|
"initialPositionInStream = TriM_Horizon",
|
||||||
|
"maxGetRecordsThreadPool = 1"
|
||||||
|
}, '\n'));
|
||||||
|
assertEquals(config.getMaxGetRecordsThreadPool(), Optional.of(1));
|
||||||
|
assertEquals(config.getRetryGetRecordsInSeconds(), Optional.empty());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWithZeroValue() {
|
||||||
|
String test = StringUtils.join(new String[]{
|
||||||
|
"streamName = a",
|
||||||
|
"applicationName = b",
|
||||||
|
"AWSCredentialsProvider = ABCD," + credentialName1,
|
||||||
|
"workerId = 123",
|
||||||
|
"initialPositionInStream = TriM_Horizon",
|
||||||
|
"maxGetRecordsThreadPool = 0",
|
||||||
|
"retryGetRecordsInSeconds = 0"
|
||||||
|
}, '\n');
|
||||||
|
InputStream input = new ByteArrayInputStream(test.getBytes());
|
||||||
|
|
||||||
|
try {
|
||||||
|
configurator.getConfiguration(input);
|
||||||
|
} catch (Exception e) {
|
||||||
|
fail("Don't expect to fail on invalid variable value");
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testWithInvalidIntValue() {
|
public void testWithInvalidIntValue() {
|
||||||
String test = StringUtils.join(new String[] {
|
String test = StringUtils.join(new String[] {
|
||||||
|
|
|
||||||
|
|
@ -107,6 +107,68 @@ public abstract class CheckpointImplTestBase {
|
||||||
ExtendedSequenceNumber extendedSequenceNumber = new ExtendedSequenceNumber(checkpointValue);
|
ExtendedSequenceNumber extendedSequenceNumber = new ExtendedSequenceNumber(checkpointValue);
|
||||||
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(checkpointValue), concurrencyToken);
|
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(checkpointValue), concurrencyToken);
|
||||||
Assert.assertEquals(extendedSequenceNumber, checkpoint.getCheckpoint(shardId));
|
Assert.assertEquals(extendedSequenceNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedSequenceNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(null, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public final void testInitialPrepareCheckpoint() throws Exception {
|
||||||
|
String sequenceNumber = "1";
|
||||||
|
String pendingCheckpointValue = "99999";
|
||||||
|
String shardId = "myShardId";
|
||||||
|
ExtendedSequenceNumber extendedCheckpointNumber = new ExtendedSequenceNumber(sequenceNumber);
|
||||||
|
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(sequenceNumber), testConcurrencyToken);
|
||||||
|
|
||||||
|
ExtendedSequenceNumber extendedPendingCheckpointNumber = new ExtendedSequenceNumber(pendingCheckpointValue);
|
||||||
|
checkpoint.prepareCheckpoint(shardId, new ExtendedSequenceNumber(pendingCheckpointValue), testConcurrencyToken);
|
||||||
|
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(extendedPendingCheckpointNumber, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public final void testAdvancingPrepareCheckpoint() throws Exception {
|
||||||
|
String shardId = "myShardId";
|
||||||
|
String checkpointValue = "12345";
|
||||||
|
ExtendedSequenceNumber extendedCheckpointNumber = new ExtendedSequenceNumber(checkpointValue);
|
||||||
|
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(checkpointValue), testConcurrencyToken);
|
||||||
|
|
||||||
|
for (Integer i = 0; i < 10; i++) {
|
||||||
|
String sequenceNumber = i.toString();
|
||||||
|
ExtendedSequenceNumber extendedSequenceNumber = new ExtendedSequenceNumber(sequenceNumber);
|
||||||
|
checkpoint.prepareCheckpoint(shardId, new ExtendedSequenceNumber(sequenceNumber), testConcurrencyToken);
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(extendedSequenceNumber, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public final void testPrepareAndSetCheckpoint() throws Exception {
|
||||||
|
String checkpointValue = "12345";
|
||||||
|
String shardId = "testShardId-1";
|
||||||
|
String concurrencyToken = "token-1";
|
||||||
|
String pendingCheckpointValue = "99999";
|
||||||
|
|
||||||
|
// set initial checkpoint
|
||||||
|
ExtendedSequenceNumber extendedCheckpointNumber = new ExtendedSequenceNumber(checkpointValue);
|
||||||
|
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(checkpointValue), concurrencyToken);
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(null, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
|
|
||||||
|
// prepare checkpoint
|
||||||
|
ExtendedSequenceNumber extendedPendingCheckpointNumber = new ExtendedSequenceNumber(pendingCheckpointValue);
|
||||||
|
checkpoint.prepareCheckpoint(shardId, new ExtendedSequenceNumber(pendingCheckpointValue), concurrencyToken);
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedCheckpointNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(extendedPendingCheckpointNumber, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
|
|
||||||
|
// do checkpoint
|
||||||
|
checkpoint.setCheckpoint(shardId, new ExtendedSequenceNumber(pendingCheckpointValue), concurrencyToken);
|
||||||
|
Assert.assertEquals(extendedPendingCheckpointNumber, checkpoint.getCheckpoint(shardId));
|
||||||
|
Assert.assertEquals(extendedPendingCheckpointNumber, checkpoint.getCheckpointObject(shardId).getCheckpoint());
|
||||||
|
Assert.assertEquals(null, checkpoint.getCheckpointObject(shardId).getPendingCheckpoint());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,7 @@ public class InMemoryCheckpointImpl implements ICheckpoint {
|
||||||
|
|
||||||
private Map<String, ExtendedSequenceNumber> checkpoints = new HashMap<>();
|
private Map<String, ExtendedSequenceNumber> checkpoints = new HashMap<>();
|
||||||
private Map<String, ExtendedSequenceNumber> flushpoints = new HashMap<>();
|
private Map<String, ExtendedSequenceNumber> flushpoints = new HashMap<>();
|
||||||
|
private Map<String, ExtendedSequenceNumber> pendingCheckpoints = new HashMap<>();
|
||||||
private final String startingSequenceNumber;
|
private final String startingSequenceNumber;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -95,6 +96,7 @@ public class InMemoryCheckpointImpl implements ICheckpoint {
|
||||||
throws KinesisClientLibException {
|
throws KinesisClientLibException {
|
||||||
checkpoints.put(shardId, checkpointValue);
|
checkpoints.put(shardId, checkpointValue);
|
||||||
flushpoints.put(shardId, checkpointValue);
|
flushpoints.put(shardId, checkpointValue);
|
||||||
|
pendingCheckpoints.remove(shardId);
|
||||||
|
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug("shardId: " + shardId + " checkpoint: " + checkpointValue);
|
LOG.debug("shardId: " + shardId + " checkpoint: " + checkpointValue);
|
||||||
|
|
@ -112,6 +114,22 @@ public class InMemoryCheckpointImpl implements ICheckpoint {
|
||||||
return checkpoint;
|
return checkpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void prepareCheckpoint(String shardId, ExtendedSequenceNumber pendingCheckpoint, String concurrencyToken)
|
||||||
|
throws KinesisClientLibException {
|
||||||
|
pendingCheckpoints.put(shardId, pendingCheckpoint);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Checkpoint getCheckpointObject(String shardId) throws KinesisClientLibException {
|
||||||
|
ExtendedSequenceNumber checkpoint = flushpoints.get(shardId);
|
||||||
|
ExtendedSequenceNumber pendingCheckpoint = pendingCheckpoints.get(shardId);
|
||||||
|
|
||||||
|
Checkpoint checkpointObj = new Checkpoint(checkpoint, pendingCheckpoint);
|
||||||
|
LOG.debug("getCheckpointObject shardId: " + shardId + ", " + checkpointObj);
|
||||||
|
return checkpointObj;
|
||||||
|
}
|
||||||
|
|
||||||
/** Check that string is neither null nor empty.
|
/** Check that string is neither null nor empty.
|
||||||
*/
|
*/
|
||||||
static void verifyNotEmpty(String string, String message) {
|
static void verifyNotEmpty(String string, String message) {
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,193 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.nullValue;
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.hamcrest.core.IsEqual.equalTo;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
import static org.mockito.Matchers.any;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
|
import static org.mockito.Mockito.atLeast;
|
||||||
|
import static org.mockito.Mockito.doThrow;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.spy;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletionService;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.ExecutorCompletionService;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
|
import java.util.concurrent.RejectedExecutionHandler;
|
||||||
|
import java.util.concurrent.ThreadPoolExecutor;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.invocation.InvocationOnMock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.google.common.util.concurrent.ThreadFactoryBuilder;
|
||||||
|
import org.mockito.stubbing.Answer;
|
||||||
|
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
|
public class AsynchronousGetRecordsRetrievalStrategyIntegrationTest {
|
||||||
|
|
||||||
|
private static final int CORE_POOL_SIZE = 1;
|
||||||
|
private static final int MAX_POOL_SIZE = 2;
|
||||||
|
private static final int TIME_TO_LIVE = 5;
|
||||||
|
private static final int RETRY_GET_RECORDS_IN_SECONDS = 2;
|
||||||
|
private static final int SLEEP_GET_RECORDS_IN_SECONDS = 10;
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
private IKinesisProxy mockKinesisProxy;
|
||||||
|
@Mock
|
||||||
|
private ShardInfo mockShardInfo;
|
||||||
|
@Mock
|
||||||
|
private Supplier<CompletionService<DataFetcherResult>> completionServiceSupplier;
|
||||||
|
@Mock
|
||||||
|
private DataFetcherResult result;
|
||||||
|
@Mock
|
||||||
|
private GetRecordsResult recordsResult;
|
||||||
|
|
||||||
|
private CompletionService<DataFetcherResult> completionService;
|
||||||
|
|
||||||
|
private AsynchronousGetRecordsRetrievalStrategy getRecordsRetrivalStrategy;
|
||||||
|
private KinesisDataFetcher dataFetcher;
|
||||||
|
private ExecutorService executorService;
|
||||||
|
private RejectedExecutionHandler rejectedExecutionHandler;
|
||||||
|
private int numberOfRecords = 10;
|
||||||
|
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() {
|
||||||
|
dataFetcher = spy(new KinesisDataFetcherForTests(mockKinesisProxy, mockShardInfo));
|
||||||
|
rejectedExecutionHandler = spy(new ThreadPoolExecutor.AbortPolicy());
|
||||||
|
executorService = spy(new ThreadPoolExecutor(
|
||||||
|
CORE_POOL_SIZE,
|
||||||
|
MAX_POOL_SIZE,
|
||||||
|
TIME_TO_LIVE,
|
||||||
|
TimeUnit.SECONDS,
|
||||||
|
new LinkedBlockingQueue<>(1),
|
||||||
|
new ThreadFactoryBuilder().setDaemon(true).setNameFormat("getrecords-worker-%d").build(),
|
||||||
|
rejectedExecutionHandler));
|
||||||
|
completionService = spy(new ExecutorCompletionService<DataFetcherResult>(executorService));
|
||||||
|
when(completionServiceSupplier.get()).thenReturn(completionService);
|
||||||
|
getRecordsRetrivalStrategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher, executorService, RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, "shardId-0001");
|
||||||
|
when(result.accept()).thenReturn(recordsResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void oneRequestMultithreadTest() {
|
||||||
|
when(result.accept()).thenReturn(null);
|
||||||
|
GetRecordsResult getRecordsResult = getRecordsRetrivalStrategy.getRecords(numberOfRecords);
|
||||||
|
verify(dataFetcher, atLeast(getLeastNumberOfCalls())).getRecords(eq(numberOfRecords));
|
||||||
|
verify(executorService, atLeast(getLeastNumberOfCalls())).execute(any());
|
||||||
|
assertNull(getRecordsResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void multiRequestTest() {
|
||||||
|
ExecutorCompletionService<DataFetcherResult> completionService1 = spy(new ExecutorCompletionService<DataFetcherResult>(executorService));
|
||||||
|
when(completionServiceSupplier.get()).thenReturn(completionService1);
|
||||||
|
GetRecordsResult getRecordsResult = getRecordsRetrivalStrategy.getRecords(numberOfRecords);
|
||||||
|
verify(dataFetcher, atLeast(getLeastNumberOfCalls())).getRecords(numberOfRecords);
|
||||||
|
verify(executorService, atLeast(getLeastNumberOfCalls())).execute(any());
|
||||||
|
assertThat(getRecordsResult, equalTo(recordsResult));
|
||||||
|
|
||||||
|
when(result.accept()).thenReturn(null);
|
||||||
|
ExecutorCompletionService<DataFetcherResult> completionService2 = spy(new ExecutorCompletionService<DataFetcherResult>(executorService));
|
||||||
|
when(completionServiceSupplier.get()).thenReturn(completionService2);
|
||||||
|
getRecordsResult = getRecordsRetrivalStrategy.getRecords(numberOfRecords);
|
||||||
|
assertThat(getRecordsResult, nullValue(GetRecordsResult.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Ignore
|
||||||
|
public void testInterrupted() throws InterruptedException, ExecutionException {
|
||||||
|
Future<DataFetcherResult> mockFuture = mock(Future.class);
|
||||||
|
when(completionService.submit(any())).thenReturn(mockFuture);
|
||||||
|
when(completionService.poll()).thenReturn(mockFuture);
|
||||||
|
doThrow(InterruptedException.class).when(mockFuture).get();
|
||||||
|
GetRecordsResult getRecordsResult = getRecordsRetrivalStrategy.getRecords(numberOfRecords);
|
||||||
|
verify(mockFuture).get();
|
||||||
|
assertNull(getRecordsResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test (expected = ExpiredIteratorException.class)
|
||||||
|
public void testExpiredIteratorExcpetion() throws InterruptedException {
|
||||||
|
when(dataFetcher.getRecords(eq(numberOfRecords))).thenAnswer(new Answer<DataFetcherResult>() {
|
||||||
|
@Override
|
||||||
|
public DataFetcherResult answer(final InvocationOnMock invocationOnMock) throws Throwable {
|
||||||
|
Thread.sleep(SLEEP_GET_RECORDS_IN_SECONDS * 1000);
|
||||||
|
throw new ExpiredIteratorException("ExpiredIterator");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
try {
|
||||||
|
getRecordsRetrivalStrategy.getRecords(numberOfRecords);
|
||||||
|
} finally {
|
||||||
|
verify(dataFetcher, atLeast(getLeastNumberOfCalls())).getRecords(eq(numberOfRecords));
|
||||||
|
verify(executorService, atLeast(getLeastNumberOfCalls())).execute(any());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getLeastNumberOfCalls() {
|
||||||
|
int leastNumberOfCalls = 0;
|
||||||
|
for (int i = MAX_POOL_SIZE; i > 0; i--) {
|
||||||
|
if (i * RETRY_GET_RECORDS_IN_SECONDS <= SLEEP_GET_RECORDS_IN_SECONDS) {
|
||||||
|
leastNumberOfCalls = i;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return leastNumberOfCalls;
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void shutdown() {
|
||||||
|
getRecordsRetrivalStrategy.shutdown();
|
||||||
|
verify(executorService).shutdownNow();
|
||||||
|
}
|
||||||
|
|
||||||
|
private class KinesisDataFetcherForTests extends KinesisDataFetcher {
|
||||||
|
public KinesisDataFetcherForTests(final IKinesisProxy kinesisProxy, final ShardInfo shardInfo) {
|
||||||
|
super(kinesisProxy, shardInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DataFetcherResult getRecords(final int maxRecords) {
|
||||||
|
try {
|
||||||
|
Thread.sleep(SLEEP_GET_RECORDS_IN_SECONDS * 1000);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
// Do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,184 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.equalTo;
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.mockito.Matchers.any;
|
||||||
|
import static org.mockito.Matchers.anyBoolean;
|
||||||
|
import static org.mockito.Matchers.anyLong;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.never;
|
||||||
|
import static org.mockito.Mockito.times;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.util.concurrent.CompletionService;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
import java.util.concurrent.RejectedExecutionException;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
import org.junit.Assert;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.rules.ExpectedException;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
|
public class AsynchronousGetRecordsRetrievalStrategyTest {
|
||||||
|
|
||||||
|
private static final long RETRY_GET_RECORDS_IN_SECONDS = 5;
|
||||||
|
private static final String SHARD_ID = "ShardId-0001";
|
||||||
|
@Mock
|
||||||
|
private KinesisDataFetcher dataFetcher;
|
||||||
|
@Mock
|
||||||
|
private ExecutorService executorService;
|
||||||
|
@Mock
|
||||||
|
private Supplier<CompletionService<DataFetcherResult>> completionServiceSupplier;
|
||||||
|
@Mock
|
||||||
|
private CompletionService<DataFetcherResult> completionService;
|
||||||
|
@Mock
|
||||||
|
private Future<DataFetcherResult> successfulFuture;
|
||||||
|
@Mock
|
||||||
|
private Future<DataFetcherResult> blockedFuture;
|
||||||
|
@Mock
|
||||||
|
private DataFetcherResult dataFetcherResult;
|
||||||
|
@Mock
|
||||||
|
private GetRecordsResult expectedResults;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void before() {
|
||||||
|
when(completionServiceSupplier.get()).thenReturn(completionService);
|
||||||
|
when(dataFetcherResult.getResult()).thenReturn(expectedResults);
|
||||||
|
when(dataFetcherResult.accept()).thenReturn(expectedResults);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSingleSuccessfulRequestFuture() throws Exception {
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy strategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher,
|
||||||
|
executorService, (int) RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, SHARD_ID);
|
||||||
|
|
||||||
|
when(executorService.isShutdown()).thenReturn(false);
|
||||||
|
when(completionService.submit(any())).thenReturn(successfulFuture);
|
||||||
|
when(completionService.poll(anyLong(), any())).thenReturn(successfulFuture);
|
||||||
|
when(successfulFuture.get()).thenReturn(dataFetcherResult);
|
||||||
|
|
||||||
|
GetRecordsResult result = strategy.getRecords(10);
|
||||||
|
|
||||||
|
verify(executorService).isShutdown();
|
||||||
|
verify(completionService).submit(any());
|
||||||
|
verify(completionService).poll(eq(RETRY_GET_RECORDS_IN_SECONDS), eq(TimeUnit.SECONDS));
|
||||||
|
verify(successfulFuture).get();
|
||||||
|
verify(successfulFuture).cancel(eq(true));
|
||||||
|
|
||||||
|
assertThat(result, equalTo(expectedResults));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testBlockedAndSuccessfulFuture() throws Exception {
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy strategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher,
|
||||||
|
executorService, (int) RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, SHARD_ID);
|
||||||
|
|
||||||
|
when(executorService.isShutdown()).thenReturn(false);
|
||||||
|
when(completionService.submit(any())).thenReturn(blockedFuture).thenReturn(successfulFuture);
|
||||||
|
when(completionService.poll(anyLong(), any())).thenReturn(null).thenReturn(successfulFuture);
|
||||||
|
when(successfulFuture.get()).thenReturn(dataFetcherResult);
|
||||||
|
when(successfulFuture.cancel(anyBoolean())).thenReturn(false);
|
||||||
|
when(blockedFuture.cancel(anyBoolean())).thenReturn(true);
|
||||||
|
when(successfulFuture.isCancelled()).thenReturn(false);
|
||||||
|
when(blockedFuture.isCancelled()).thenReturn(true);
|
||||||
|
|
||||||
|
GetRecordsResult actualResults = strategy.getRecords(10);
|
||||||
|
|
||||||
|
verify(completionService, times(2)).submit(any());
|
||||||
|
verify(completionService, times(2)).poll(eq(RETRY_GET_RECORDS_IN_SECONDS), eq(TimeUnit.SECONDS));
|
||||||
|
verify(successfulFuture).get();
|
||||||
|
verify(blockedFuture, never()).get();
|
||||||
|
verify(successfulFuture).cancel(eq(true));
|
||||||
|
verify(blockedFuture).cancel(eq(true));
|
||||||
|
|
||||||
|
assertThat(actualResults, equalTo(expectedResults));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testStrategyIsShutdown() throws Exception {
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy strategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher,
|
||||||
|
executorService, (int) RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, SHARD_ID);
|
||||||
|
|
||||||
|
when(executorService.isShutdown()).thenReturn(true);
|
||||||
|
|
||||||
|
strategy.getRecords(10);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPoolOutOfResources() throws Exception {
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy strategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher,
|
||||||
|
executorService, (int) RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, SHARD_ID);
|
||||||
|
|
||||||
|
when(executorService.isShutdown()).thenReturn(false);
|
||||||
|
when(completionService.submit(any())).thenReturn(blockedFuture).thenThrow(new RejectedExecutionException("Rejected!")).thenReturn(successfulFuture);
|
||||||
|
when(completionService.poll(anyLong(), any())).thenReturn(null).thenReturn(null).thenReturn(successfulFuture);
|
||||||
|
when(successfulFuture.get()).thenReturn(dataFetcherResult);
|
||||||
|
when(successfulFuture.cancel(anyBoolean())).thenReturn(false);
|
||||||
|
when(blockedFuture.cancel(anyBoolean())).thenReturn(true);
|
||||||
|
when(successfulFuture.isCancelled()).thenReturn(false);
|
||||||
|
when(blockedFuture.isCancelled()).thenReturn(true);
|
||||||
|
|
||||||
|
GetRecordsResult actualResult = strategy.getRecords(10);
|
||||||
|
|
||||||
|
verify(completionService, times(3)).submit(any());
|
||||||
|
verify(completionService, times(3)).poll(eq(RETRY_GET_RECORDS_IN_SECONDS), eq(TimeUnit.SECONDS));
|
||||||
|
verify(successfulFuture).cancel(eq(true));
|
||||||
|
verify(blockedFuture).cancel(eq(true));
|
||||||
|
|
||||||
|
|
||||||
|
assertThat(actualResult, equalTo(expectedResults));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test (expected = ExpiredIteratorException.class)
|
||||||
|
public void testExpiredIteratorExceptionCase() throws Exception {
|
||||||
|
AsynchronousGetRecordsRetrievalStrategy strategy = new AsynchronousGetRecordsRetrievalStrategy(dataFetcher,
|
||||||
|
executorService, (int) RETRY_GET_RECORDS_IN_SECONDS, completionServiceSupplier, SHARD_ID);
|
||||||
|
Future<DataFetcherResult> successfulFuture2 = mock(Future.class);
|
||||||
|
|
||||||
|
when(executorService.isShutdown()).thenReturn(false);
|
||||||
|
when(completionService.submit(any())).thenReturn(successfulFuture, successfulFuture2);
|
||||||
|
when(completionService.poll(anyLong(), any())).thenReturn(null).thenReturn(successfulFuture);
|
||||||
|
when(successfulFuture.get()).thenThrow(new ExecutionException(new ExpiredIteratorException("ExpiredException")));
|
||||||
|
|
||||||
|
try {
|
||||||
|
strategy.getRecords(10);
|
||||||
|
} finally {
|
||||||
|
verify(executorService).isShutdown();
|
||||||
|
verify(completionService, times(2)).submit(any());
|
||||||
|
verify(completionService, times(2)).poll(eq(RETRY_GET_RECORDS_IN_SECONDS), eq(TimeUnit.SECONDS));
|
||||||
|
verify(successfulFuture).cancel(eq(true));
|
||||||
|
verify(successfulFuture2).cancel(eq(true));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,83 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.amazonaws.services.kinesis.model.Record;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test class for the BlockingGetRecordsCache class.
|
||||||
|
*/
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
|
public class BlockingGetRecordsCacheTest {
|
||||||
|
private static final int MAX_RECORDS_PER_COUNT = 10_000;
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
private GetRecordsRetrievalStrategy getRecordsRetrievalStrategy;
|
||||||
|
@Mock
|
||||||
|
private GetRecordsResult getRecordsResult;
|
||||||
|
|
||||||
|
private List<Record> records;
|
||||||
|
private BlockingGetRecordsCache blockingGetRecordsCache;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() {
|
||||||
|
records = new ArrayList<>();
|
||||||
|
blockingGetRecordsCache = new BlockingGetRecordsCache(MAX_RECORDS_PER_COUNT, getRecordsRetrievalStrategy);
|
||||||
|
|
||||||
|
when(getRecordsRetrievalStrategy.getRecords(eq(MAX_RECORDS_PER_COUNT))).thenReturn(getRecordsResult);
|
||||||
|
when(getRecordsResult.getRecords()).thenReturn(records);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetNextRecordsWithNoRecords() {
|
||||||
|
ProcessRecordsInput result = blockingGetRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertEquals(result.getRecords(), records);
|
||||||
|
assertNull(result.getCacheEntryTime());
|
||||||
|
assertNull(result.getCacheExitTime());
|
||||||
|
assertEquals(result.getTimeSpentInCache(), Duration.ZERO);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetNextRecordsWithRecords() {
|
||||||
|
Record record = new Record();
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
|
||||||
|
ProcessRecordsInput result = blockingGetRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertEquals(result.getRecords(), records);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import static com.amazonaws.services.kinesis.clientlibrary.lib.worker.ConsumerStates.ConsumerState;
|
import static com.amazonaws.services.kinesis.clientlibrary.lib.worker.ConsumerStates.ConsumerState;
|
||||||
|
|
@ -41,6 +55,8 @@ public class ConsumerStatesTest {
|
||||||
@Mock
|
@Mock
|
||||||
private IRecordProcessor recordProcessor;
|
private IRecordProcessor recordProcessor;
|
||||||
@Mock
|
@Mock
|
||||||
|
private KinesisClientLibConfiguration config;
|
||||||
|
@Mock
|
||||||
private RecordProcessorCheckpointer recordProcessorCheckpointer;
|
private RecordProcessorCheckpointer recordProcessorCheckpointer;
|
||||||
@Mock
|
@Mock
|
||||||
private ExecutorService executorService;
|
private ExecutorService executorService;
|
||||||
|
|
@ -60,6 +76,8 @@ public class ConsumerStatesTest {
|
||||||
private IKinesisProxy kinesisProxy;
|
private IKinesisProxy kinesisProxy;
|
||||||
@Mock
|
@Mock
|
||||||
private InitialPositionInStreamExtended initialPositionInStream;
|
private InitialPositionInStreamExtended initialPositionInStream;
|
||||||
|
@Mock
|
||||||
|
private GetRecordsCache getRecordsCache;
|
||||||
|
|
||||||
private long parentShardPollIntervalMillis = 0xCAFE;
|
private long parentShardPollIntervalMillis = 0xCAFE;
|
||||||
private boolean cleanupLeasesOfCompletedShards = true;
|
private boolean cleanupLeasesOfCompletedShards = true;
|
||||||
|
|
@ -82,7 +100,7 @@ public class ConsumerStatesTest {
|
||||||
when(consumer.isCleanupLeasesOfCompletedShards()).thenReturn(cleanupLeasesOfCompletedShards);
|
when(consumer.isCleanupLeasesOfCompletedShards()).thenReturn(cleanupLeasesOfCompletedShards);
|
||||||
when(consumer.getTaskBackoffTimeMillis()).thenReturn(taskBackoffTimeMillis);
|
when(consumer.getTaskBackoffTimeMillis()).thenReturn(taskBackoffTimeMillis);
|
||||||
when(consumer.getShutdownReason()).thenReturn(reason);
|
when(consumer.getShutdownReason()).thenReturn(reason);
|
||||||
|
when(consumer.getGetRecordsCache()).thenReturn(getRecordsCache);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final Class<ILeaseManager<KinesisClientLease>> LEASE_MANAGER_CLASS = (Class<ILeaseManager<KinesisClientLease>>) (Class<?>) ILeaseManager.class;
|
private static final Class<ILeaseManager<KinesisClientLease>> LEASE_MANAGER_CLASS = (Class<ILeaseManager<KinesisClientLease>>) (Class<?>) ILeaseManager.class;
|
||||||
|
|
@ -138,7 +156,7 @@ public class ConsumerStatesTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void processingStateTest() {
|
public void processingStateTestSynchronous() {
|
||||||
ConsumerState state = ShardConsumerState.PROCESSING.getConsumerState();
|
ConsumerState state = ShardConsumerState.PROCESSING.getConsumerState();
|
||||||
ITask task = state.createTask(consumer);
|
ITask task = state.createTask(consumer);
|
||||||
|
|
||||||
|
|
@ -164,6 +182,60 @@ public class ConsumerStatesTest {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void processingStateTestAsynchronous() {
|
||||||
|
ConsumerState state = ShardConsumerState.PROCESSING.getConsumerState();
|
||||||
|
ITask task = state.createTask(consumer);
|
||||||
|
|
||||||
|
assertThat(task, procTask(ShardInfo.class, "shardInfo", equalTo(shardInfo)));
|
||||||
|
assertThat(task, procTask(IRecordProcessor.class, "recordProcessor", equalTo(recordProcessor)));
|
||||||
|
assertThat(task, procTask(RecordProcessorCheckpointer.class, "recordProcessorCheckpointer",
|
||||||
|
equalTo(recordProcessorCheckpointer)));
|
||||||
|
assertThat(task, procTask(KinesisDataFetcher.class, "dataFetcher", equalTo(dataFetcher)));
|
||||||
|
assertThat(task, procTask(StreamConfig.class, "streamConfig", equalTo(streamConfig)));
|
||||||
|
assertThat(task, procTask(Long.class, "backoffTimeMillis", equalTo(taskBackoffTimeMillis)));
|
||||||
|
|
||||||
|
assertThat(state.successTransition(), equalTo(ShardConsumerState.PROCESSING.getConsumerState()));
|
||||||
|
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.ZOMBIE),
|
||||||
|
equalTo(ShardConsumerState.SHUTTING_DOWN.getConsumerState()));
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.TERMINATE),
|
||||||
|
equalTo(ShardConsumerState.SHUTTING_DOWN.getConsumerState()));
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.REQUESTED),
|
||||||
|
equalTo(ShardConsumerState.SHUTDOWN_REQUESTED.getConsumerState()));
|
||||||
|
|
||||||
|
assertThat(state.getState(), equalTo(ShardConsumerState.PROCESSING));
|
||||||
|
assertThat(state.getTaskType(), equalTo(TaskType.PROCESS));
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void processingStateRecordsFetcher() {
|
||||||
|
|
||||||
|
ConsumerState state = ShardConsumerState.PROCESSING.getConsumerState();
|
||||||
|
ITask task = state.createTask(consumer);
|
||||||
|
|
||||||
|
assertThat(task, procTask(ShardInfo.class, "shardInfo", equalTo(shardInfo)));
|
||||||
|
assertThat(task, procTask(IRecordProcessor.class, "recordProcessor", equalTo(recordProcessor)));
|
||||||
|
assertThat(task, procTask(RecordProcessorCheckpointer.class, "recordProcessorCheckpointer",
|
||||||
|
equalTo(recordProcessorCheckpointer)));
|
||||||
|
assertThat(task, procTask(KinesisDataFetcher.class, "dataFetcher", equalTo(dataFetcher)));
|
||||||
|
assertThat(task, procTask(StreamConfig.class, "streamConfig", equalTo(streamConfig)));
|
||||||
|
assertThat(task, procTask(Long.class, "backoffTimeMillis", equalTo(taskBackoffTimeMillis)));
|
||||||
|
|
||||||
|
assertThat(state.successTransition(), equalTo(ShardConsumerState.PROCESSING.getConsumerState()));
|
||||||
|
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.ZOMBIE),
|
||||||
|
equalTo(ShardConsumerState.SHUTTING_DOWN.getConsumerState()));
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.TERMINATE),
|
||||||
|
equalTo(ShardConsumerState.SHUTTING_DOWN.getConsumerState()));
|
||||||
|
assertThat(state.shutdownTransition(ShutdownReason.REQUESTED),
|
||||||
|
equalTo(ShardConsumerState.SHUTDOWN_REQUESTED.getConsumerState()));
|
||||||
|
|
||||||
|
assertThat(state.getState(), equalTo(ShardConsumerState.PROCESSING));
|
||||||
|
assertThat(state.getTaskType(), equalTo(TaskType.PROCESS));
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void shutdownRequestState() {
|
public void shutdownRequestState() {
|
||||||
ConsumerState state = ShardConsumerState.SHUTDOWN_REQUESTED.getConsumerState();
|
ConsumerState state = ShardConsumerState.SHUTDOWN_REQUESTED.getConsumerState();
|
||||||
|
|
@ -270,7 +342,7 @@ public class ConsumerStatesTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
static <ValueType> ReflectionPropertyMatcher<ShutdownTask, ValueType> shutdownTask(Class<ValueType> valueTypeClass,
|
static <ValueType> ReflectionPropertyMatcher<ShutdownTask, ValueType> shutdownTask(Class<ValueType> valueTypeClass,
|
||||||
String propertyName, Matcher<ValueType> matcher) {
|
String propertyName, Matcher<ValueType> matcher) {
|
||||||
return taskWith(ShutdownTask.class, valueTypeClass, propertyName, matcher);
|
return taskWith(ShutdownTask.class, valueTypeClass, propertyName, matcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -280,17 +352,17 @@ public class ConsumerStatesTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
static <ValueType> ReflectionPropertyMatcher<ProcessTask, ValueType> procTask(Class<ValueType> valueTypeClass,
|
static <ValueType> ReflectionPropertyMatcher<ProcessTask, ValueType> procTask(Class<ValueType> valueTypeClass,
|
||||||
String propertyName, Matcher<ValueType> matcher) {
|
String propertyName, Matcher<ValueType> matcher) {
|
||||||
return taskWith(ProcessTask.class, valueTypeClass, propertyName, matcher);
|
return taskWith(ProcessTask.class, valueTypeClass, propertyName, matcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
static <ValueType> ReflectionPropertyMatcher<InitializeTask, ValueType> initTask(Class<ValueType> valueTypeClass,
|
static <ValueType> ReflectionPropertyMatcher<InitializeTask, ValueType> initTask(Class<ValueType> valueTypeClass,
|
||||||
String propertyName, Matcher<ValueType> matcher) {
|
String propertyName, Matcher<ValueType> matcher) {
|
||||||
return taskWith(InitializeTask.class, valueTypeClass, propertyName, matcher);
|
return taskWith(InitializeTask.class, valueTypeClass, propertyName, matcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
static <TaskType, ValueType> ReflectionPropertyMatcher<TaskType, ValueType> taskWith(Class<TaskType> taskTypeClass,
|
static <TaskType, ValueType> ReflectionPropertyMatcher<TaskType, ValueType> taskWith(Class<TaskType> taskTypeClass,
|
||||||
Class<ValueType> valueTypeClass, String propertyName, Matcher<ValueType> matcher) {
|
Class<ValueType> valueTypeClass, String propertyName, Matcher<ValueType> matcher) {
|
||||||
return new ReflectionPropertyMatcher<>(taskTypeClass, valueTypeClass, matcher, propertyName);
|
return new ReflectionPropertyMatcher<>(taskTypeClass, valueTypeClass, matcher, propertyName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -303,7 +375,7 @@ public class ConsumerStatesTest {
|
||||||
private final Field matchingField;
|
private final Field matchingField;
|
||||||
|
|
||||||
private ReflectionPropertyMatcher(Class<TaskType> taskTypeClass, Class<ValueType> valueTypeClass,
|
private ReflectionPropertyMatcher(Class<TaskType> taskTypeClass, Class<ValueType> valueTypeClass,
|
||||||
Matcher<ValueType> matcher, String propertyName) {
|
Matcher<ValueType> matcher, String propertyName) {
|
||||||
this.taskTypeClass = taskTypeClass;
|
this.taskTypeClass = taskTypeClass;
|
||||||
this.valueTypeClazz = valueTypeClass;
|
this.valueTypeClazz = valueTypeClass;
|
||||||
this.matcher = matcher;
|
this.matcher = matcher;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,322 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.equalTo;
|
||||||
|
import static org.hamcrest.CoreMatchers.not;
|
||||||
|
import static org.junit.Assert.assertThat;
|
||||||
|
import static org.mockito.Matchers.any;
|
||||||
|
import static org.mockito.Matchers.anyLong;
|
||||||
|
import static org.mockito.Mockito.doAnswer;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.never;
|
||||||
|
import static org.mockito.Mockito.times;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.ConcurrentMap;
|
||||||
|
import java.util.concurrent.CountDownLatch;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
import org.mockito.verification.VerificationMode;
|
||||||
|
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
|
public class GracefulShutdownCoordinatorTest {
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
private CountDownLatch shutdownCompleteLatch;
|
||||||
|
@Mock
|
||||||
|
private CountDownLatch notificationCompleteLatch;
|
||||||
|
@Mock
|
||||||
|
private Worker worker;
|
||||||
|
@Mock
|
||||||
|
private Callable<GracefulShutdownContext> contextCallable;
|
||||||
|
@Mock
|
||||||
|
private ConcurrentMap<ShardInfo, ShardConsumer> shardInfoConsumerMap;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAllShutdownCompletedAlready() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(shutdownCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenReturn(true);
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenReturn(true);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(true));
|
||||||
|
verify(shutdownCompleteLatch).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(notificationCompleteLatch).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNotificationNotCompletedYet() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
mockLatchAwait(notificationCompleteLatch, false, true);
|
||||||
|
when(notificationCompleteLatch.getCount()).thenReturn(1L, 0L);
|
||||||
|
mockLatchAwait(shutdownCompleteLatch, true);
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L, 1L, 0L);
|
||||||
|
|
||||||
|
when(worker.isShutdownComplete()).thenReturn(false, true);
|
||||||
|
mockShardInfoConsumerMap(1, 0);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(true));
|
||||||
|
verify(notificationCompleteLatch, times(2)).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(notificationCompleteLatch).getCount();
|
||||||
|
|
||||||
|
verify(shutdownCompleteLatch).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(shutdownCompleteLatch, times(2)).getCount();
|
||||||
|
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testShutdownNotCompletedYet() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
mockLatchAwait(notificationCompleteLatch, true);
|
||||||
|
mockLatchAwait(shutdownCompleteLatch, false, true);
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L, 0L);
|
||||||
|
|
||||||
|
when(worker.isShutdownComplete()).thenReturn(false, true);
|
||||||
|
mockShardInfoConsumerMap(1, 0);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(true));
|
||||||
|
verify(notificationCompleteLatch).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(notificationCompleteLatch, never()).getCount();
|
||||||
|
|
||||||
|
verify(shutdownCompleteLatch, times(2)).await(anyLong(), any(TimeUnit.class));
|
||||||
|
verify(shutdownCompleteLatch, times(2)).getCount();
|
||||||
|
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMultipleAttemptsForNotification() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
mockLatchAwait(notificationCompleteLatch, false, false, true);
|
||||||
|
when(notificationCompleteLatch.getCount()).thenReturn(2L, 1L, 0L);
|
||||||
|
|
||||||
|
mockLatchAwait(shutdownCompleteLatch, true);
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(2L, 2L, 1L, 1L, 0L);
|
||||||
|
|
||||||
|
when(worker.isShutdownComplete()).thenReturn(false, false, false, true);
|
||||||
|
mockShardInfoConsumerMap(2, 1, 0);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(true));
|
||||||
|
|
||||||
|
verifyLatchAwait(notificationCompleteLatch, 3);
|
||||||
|
verify(notificationCompleteLatch, times(2)).getCount();
|
||||||
|
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, 1);
|
||||||
|
verify(shutdownCompleteLatch, times(4)).getCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWorkerAlreadyShutdownAtNotification() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
mockLatchAwait(notificationCompleteLatch, false, true);
|
||||||
|
when(notificationCompleteLatch.getCount()).thenReturn(1L, 0L);
|
||||||
|
|
||||||
|
mockLatchAwait(shutdownCompleteLatch, true);
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L, 1L, 0L);
|
||||||
|
|
||||||
|
when(worker.isShutdownComplete()).thenReturn(true);
|
||||||
|
mockShardInfoConsumerMap(0);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verify(notificationCompleteLatch).getCount();
|
||||||
|
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, never());
|
||||||
|
verify(shutdownCompleteLatch, times(3)).getCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testWorkerAlreadyShutdownAtComplete() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
mockLatchAwait(notificationCompleteLatch, true);
|
||||||
|
|
||||||
|
mockLatchAwait(shutdownCompleteLatch, false, true);
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L, 1L, 1L);
|
||||||
|
|
||||||
|
when(worker.isShutdownComplete()).thenReturn(true);
|
||||||
|
mockShardInfoConsumerMap(0);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verify(notificationCompleteLatch, never()).getCount();
|
||||||
|
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch);
|
||||||
|
verify(shutdownCompleteLatch, times(3)).getCount();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNotificationInterrupted() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenThrow(new InterruptedException());
|
||||||
|
when(notificationCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, never());
|
||||||
|
verify(worker, never()).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testShutdownInterrupted() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenReturn(true);
|
||||||
|
|
||||||
|
when(shutdownCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenThrow(new InterruptedException());
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch);
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testInterruptedAfterNotification() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenAnswer(invocation -> {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, never());
|
||||||
|
verify(worker, never()).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testInterruptedAfterWorkerShutdown() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenReturn(true);
|
||||||
|
|
||||||
|
doAnswer(invocation -> {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return true;
|
||||||
|
}).when(worker).shutdown();
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, never());
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testInterruptedDuringNotification() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenAnswer(invocation -> {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
when(notificationCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verify(notificationCompleteLatch).getCount();
|
||||||
|
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch, never());
|
||||||
|
verify(shutdownCompleteLatch).getCount();
|
||||||
|
|
||||||
|
verify(worker, never()).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testInterruptedDuringShutdown() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = buildRequestedShutdownCallable();
|
||||||
|
|
||||||
|
when(notificationCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenReturn(true);
|
||||||
|
|
||||||
|
when(shutdownCompleteLatch.await(anyLong(), any(TimeUnit.class))).thenAnswer(invocation -> {
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
when(shutdownCompleteLatch.getCount()).thenReturn(1L);
|
||||||
|
|
||||||
|
assertThat(requestedShutdownCallable.call(), equalTo(false));
|
||||||
|
verifyLatchAwait(notificationCompleteLatch);
|
||||||
|
verify(notificationCompleteLatch, never()).getCount();
|
||||||
|
|
||||||
|
verifyLatchAwait(shutdownCompleteLatch);
|
||||||
|
verify(shutdownCompleteLatch).getCount();
|
||||||
|
|
||||||
|
verify(worker).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testWorkerShutdownCallableThrows() throws Exception {
|
||||||
|
Callable<Boolean> requestedShutdownCallable = new GracefulShutdownCoordinator().createGracefulShutdownCallable(contextCallable);
|
||||||
|
when(contextCallable.call()).thenThrow(new IllegalStateException("Bad Shutdown"));
|
||||||
|
|
||||||
|
requestedShutdownCallable.call();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void verifyLatchAwait(CountDownLatch latch) throws Exception {
|
||||||
|
verifyLatchAwait(latch, times(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void verifyLatchAwait(CountDownLatch latch, int times) throws Exception {
|
||||||
|
verifyLatchAwait(latch, times(times));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void verifyLatchAwait(CountDownLatch latch, VerificationMode verificationMode) throws Exception {
|
||||||
|
verify(latch, verificationMode).await(anyLong(), any(TimeUnit.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void mockLatchAwait(CountDownLatch latch, Boolean initial, Boolean... remaining) throws Exception {
|
||||||
|
when(latch.await(anyLong(), any(TimeUnit.class))).thenReturn(initial, remaining);
|
||||||
|
}
|
||||||
|
|
||||||
|
private Callable<Boolean> buildRequestedShutdownCallable() throws Exception {
|
||||||
|
GracefulShutdownContext context = new GracefulShutdownContext(shutdownCompleteLatch,
|
||||||
|
notificationCompleteLatch, worker);
|
||||||
|
when(contextCallable.call()).thenReturn(context);
|
||||||
|
return new GracefulShutdownCoordinator().createGracefulShutdownCallable(contextCallable);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void mockShardInfoConsumerMap(Integer initialItemCount, Integer... additionalItemCounts) {
|
||||||
|
when(worker.getShardInfoShardConsumerMap()).thenReturn(shardInfoConsumerMap);
|
||||||
|
Boolean additionalEmptyStates[] = new Boolean[additionalItemCounts.length];
|
||||||
|
for (int i = 0; i < additionalItemCounts.length; ++i) {
|
||||||
|
additionalEmptyStates[i] = additionalItemCounts[i] == 0;
|
||||||
|
}
|
||||||
|
when(shardInfoConsumerMap.size()).thenReturn(initialItemCount, additionalItemCounts);
|
||||||
|
when(shardInfoConsumerMap.isEmpty()).thenReturn(initialItemCount == 0, additionalEmptyStates);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -1,25 +1,26 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import junit.framework.Assert;
|
import java.util.Date;
|
||||||
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.mockito.Mockito;
|
import org.mockito.Mockito;
|
||||||
|
|
@ -35,7 +36,7 @@ import com.amazonaws.services.kinesis.clientlibrary.interfaces.IRecordProcessorF
|
||||||
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
import com.amazonaws.services.kinesis.metrics.interfaces.MetricsLevel;
|
||||||
import com.google.common.collect.ImmutableSet;
|
import com.google.common.collect.ImmutableSet;
|
||||||
|
|
||||||
import java.util.Date;
|
import junit.framework.Assert;
|
||||||
|
|
||||||
public class KinesisClientLibConfigurationTest {
|
public class KinesisClientLibConfigurationTest {
|
||||||
private static final long INVALID_LONG = 0L;
|
private static final long INVALID_LONG = 0L;
|
||||||
|
|
@ -84,7 +85,8 @@ public class KinesisClientLibConfigurationTest {
|
||||||
TEST_VALUE_LONG,
|
TEST_VALUE_LONG,
|
||||||
TEST_VALUE_INT,
|
TEST_VALUE_INT,
|
||||||
skipCheckpointValidationValue,
|
skipCheckpointValidationValue,
|
||||||
null);
|
null,
|
||||||
|
TEST_VALUE_LONG);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -94,7 +96,8 @@ public class KinesisClientLibConfigurationTest {
|
||||||
// Try each argument at one time.
|
// Try each argument at one time.
|
||||||
KinesisClientLibConfiguration config = null;
|
KinesisClientLibConfiguration config = null;
|
||||||
long[] longValues =
|
long[] longValues =
|
||||||
{ TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG };
|
{ TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG, TEST_VALUE_LONG,
|
||||||
|
TEST_VALUE_LONG };
|
||||||
for (int i = 0; i < PARAMETER_COUNT; i++) {
|
for (int i = 0; i < PARAMETER_COUNT; i++) {
|
||||||
longValues[i] = INVALID_LONG;
|
longValues[i] = INVALID_LONG;
|
||||||
try {
|
try {
|
||||||
|
|
@ -122,7 +125,8 @@ public class KinesisClientLibConfigurationTest {
|
||||||
longValues[5],
|
longValues[5],
|
||||||
TEST_VALUE_INT,
|
TEST_VALUE_INT,
|
||||||
skipCheckpointValidationValue,
|
skipCheckpointValidationValue,
|
||||||
null);
|
null,
|
||||||
|
longValues[6]);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
System.out.println(e.getMessage());
|
System.out.println(e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
@ -156,7 +160,8 @@ public class KinesisClientLibConfigurationTest {
|
||||||
TEST_VALUE_LONG,
|
TEST_VALUE_LONG,
|
||||||
intValues[1],
|
intValues[1],
|
||||||
skipCheckpointValidationValue,
|
skipCheckpointValidationValue,
|
||||||
null);
|
null,
|
||||||
|
TEST_VALUE_LONG);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
System.out.println(e.getMessage());
|
System.out.println(e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
@ -263,8 +268,8 @@ public class KinesisClientLibConfigurationTest {
|
||||||
IRecordProcessorFactory processorFactory = Mockito.mock(IRecordProcessorFactory.class);
|
IRecordProcessorFactory processorFactory = Mockito.mock(IRecordProcessorFactory.class);
|
||||||
new Worker(processorFactory, kclConfig);
|
new Worker(processorFactory, kclConfig);
|
||||||
|
|
||||||
Mockito.verify(kclConfig, Mockito.times(9)).getRegionName();
|
Mockito.verify(kclConfig, Mockito.times(5)).getRegionName();
|
||||||
Mockito.verify(kclConfig, Mockito.times(4)).getKinesisEndpoint();
|
Mockito.verify(kclConfig, Mockito.times(2)).getKinesisEndpoint();
|
||||||
|
|
||||||
kclConfig = Mockito.spy(
|
kclConfig = Mockito.spy(
|
||||||
new KinesisClientLibConfiguration("Test", "Test", credentialsProvider, "0")
|
new KinesisClientLibConfiguration("Test", "Test", credentialsProvider, "0")
|
||||||
|
|
@ -272,59 +277,11 @@ public class KinesisClientLibConfigurationTest {
|
||||||
|
|
||||||
new Worker(processorFactory, kclConfig);
|
new Worker(processorFactory, kclConfig);
|
||||||
|
|
||||||
Mockito.verify(kclConfig, Mockito.times(3)).getRegionName();
|
Mockito.verify(kclConfig, Mockito.times(2)).getRegionName();
|
||||||
Mockito.verify(kclConfig, Mockito.times(3)).getKinesisEndpoint();
|
Mockito.verify(kclConfig, Mockito.times(2)).getKinesisEndpoint();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testKCLConfigurationWithMultiRegionWithIlligalRegionName() {
|
|
||||||
// test with illegal region name
|
|
||||||
AWSCredentialsProvider credentialsProvider = Mockito.mock(AWSCredentialsProvider.class);
|
|
||||||
|
|
||||||
KinesisClientLibConfiguration kclConfig =
|
|
||||||
new KinesisClientLibConfiguration("Test", "Test", credentialsProvider, "0");
|
|
||||||
try {
|
|
||||||
kclConfig = kclConfig.withRegionName("abcd");
|
|
||||||
Assert.fail("No expected Exception is thrown.");
|
|
||||||
} catch (IllegalArgumentException e) {
|
|
||||||
System.out.println(e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testKCLConfigurationWithMultiRegionWithIlligalRegionNameInFullConstructor() {
|
|
||||||
// test with illegal region name
|
|
||||||
Mockito.mock(AWSCredentialsProvider.class);
|
|
||||||
try {
|
|
||||||
new KinesisClientLibConfiguration(TEST_STRING,
|
|
||||||
TEST_STRING,
|
|
||||||
TEST_STRING,
|
|
||||||
TEST_STRING,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
null,
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
TEST_STRING,
|
|
||||||
3,
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
false,
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
true,
|
|
||||||
new ClientConfiguration(),
|
|
||||||
new ClientConfiguration(),
|
|
||||||
new ClientConfiguration(),
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
TEST_VALUE_LONG,
|
|
||||||
1,
|
|
||||||
skipCheckpointValidationValue,
|
|
||||||
"abcd");
|
|
||||||
Assert.fail("No expected Exception is thrown.");
|
|
||||||
} catch(IllegalArgumentException e) {
|
|
||||||
System.out.println(e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testKCLConfigurationMetricsDefaults() {
|
public void testKCLConfigurationMetricsDefaults() {
|
||||||
|
|
@ -402,4 +359,14 @@ public class KinesisClientLibConfigurationTest {
|
||||||
fail("Should not have thrown");
|
fail("Should not have thrown");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testKCLConfigurationWithIgnoreUnexpectedChildShards() {
|
||||||
|
KinesisClientLibConfiguration config =
|
||||||
|
new KinesisClientLibConfiguration("TestApplication", "TestStream", null, "TestWorker");
|
||||||
|
// By default, unexpected child shards should not be ignored.
|
||||||
|
assertFalse(config.shouldIgnoreUnexpectedChildShards());
|
||||||
|
config = config.withIgnoreUnexpectedChildShards(true);
|
||||||
|
assertTrue(config.shouldIgnoreUnexpectedChildShards());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,36 +1,48 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Amazon Software License (the "License").
|
* Licensed under the Amazon Software License (the "License").
|
||||||
* You may not use this file except in compliance with the License.
|
* You may not use this file except in compliance with the License.
|
||||||
* A copy of the License is located at
|
* A copy of the License is located at
|
||||||
*
|
*
|
||||||
* http://aws.amazon.com/asl/
|
* http://aws.amazon.com/asl/
|
||||||
*
|
*
|
||||||
* or in the "license" file accompanying this file. This file is distributed
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
* express or implied. See the License for the specific language governing
|
* express or implied. See the License for the specific language governing
|
||||||
* permissions and limitations under the License.
|
* permissions and limitations under the License.
|
||||||
*/
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.hamcrest.CoreMatchers.equalTo;
|
||||||
|
import static org.hamcrest.CoreMatchers.notNullValue;
|
||||||
|
import static org.hamcrest.CoreMatchers.nullValue;
|
||||||
|
import static org.hamcrest.MatcherAssert.assertThat;
|
||||||
|
import static org.hamcrest.collection.IsEmptyCollection.empty;
|
||||||
|
import static org.mockito.Matchers.anyInt;
|
||||||
|
import static org.mockito.Matchers.anyString;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
import static org.mockito.Mockito.doReturn;
|
import static org.mockito.Mockito.doReturn;
|
||||||
import static org.mockito.Mockito.doThrow;
|
import static org.mockito.Mockito.doThrow;
|
||||||
import static org.mockito.Mockito.mock;
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.never;
|
||||||
|
import static org.mockito.Mockito.reset;
|
||||||
|
import static org.mockito.Mockito.times;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
import static org.mockito.Mockito.when;
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.junit.Assert;
|
import org.junit.Assert;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
|
||||||
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
|
||||||
import com.amazonaws.services.kinesis.model.Record;
|
|
||||||
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
|
||||||
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibException;
|
import com.amazonaws.services.kinesis.clientlibrary.exceptions.KinesisClientLibException;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.interfaces.ICheckpoint;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.SentinelCheckpoint;
|
import com.amazonaws.services.kinesis.clientlibrary.lib.checkpoint.SentinelCheckpoint;
|
||||||
|
|
@ -39,12 +51,20 @@ import com.amazonaws.services.kinesis.clientlibrary.proxies.KinesisProxy;
|
||||||
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
import com.amazonaws.services.kinesis.clientlibrary.types.ExtendedSequenceNumber;
|
||||||
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
import com.amazonaws.services.kinesis.metrics.impl.MetricsHelper;
|
||||||
import com.amazonaws.services.kinesis.metrics.impl.NullMetricsFactory;
|
import com.amazonaws.services.kinesis.metrics.impl.NullMetricsFactory;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.amazonaws.services.kinesis.model.Record;
|
||||||
|
import com.amazonaws.services.kinesis.model.ResourceNotFoundException;
|
||||||
|
import com.amazonaws.services.kinesis.model.ShardIteratorType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Unit tests for KinesisDataFetcher.
|
* Unit tests for KinesisDataFetcher.
|
||||||
*/
|
*/
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
public class KinesisDataFetcherTest {
|
public class KinesisDataFetcherTest {
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
private KinesisProxy kinesisProxy;
|
||||||
|
|
||||||
private static final int MAX_RECORDS = 1;
|
private static final int MAX_RECORDS = 1;
|
||||||
private static final String SHARD_ID = "shardId-1";
|
private static final String SHARD_ID = "shardId-1";
|
||||||
private static final String AT_SEQUENCE_NUMBER = ShardIteratorType.AT_SEQUENCE_NUMBER.toString();
|
private static final String AT_SEQUENCE_NUMBER = ShardIteratorType.AT_SEQUENCE_NUMBER.toString();
|
||||||
|
|
@ -117,6 +137,7 @@ public class KinesisDataFetcherTest {
|
||||||
ICheckpoint checkpoint = mock(ICheckpoint.class);
|
ICheckpoint checkpoint = mock(ICheckpoint.class);
|
||||||
|
|
||||||
KinesisDataFetcher fetcher = new KinesisDataFetcher(kinesis, SHARD_INFO);
|
KinesisDataFetcher fetcher = new KinesisDataFetcher(kinesis, SHARD_INFO);
|
||||||
|
GetRecordsRetrievalStrategy getRecordsRetrievalStrategy = new SynchronousGetRecordsRetrievalStrategy(fetcher);
|
||||||
|
|
||||||
String iteratorA = "foo";
|
String iteratorA = "foo";
|
||||||
String iteratorB = "bar";
|
String iteratorB = "bar";
|
||||||
|
|
@ -138,10 +159,10 @@ public class KinesisDataFetcherTest {
|
||||||
fetcher.initialize(seqA, null);
|
fetcher.initialize(seqA, null);
|
||||||
|
|
||||||
fetcher.advanceIteratorTo(seqA, null);
|
fetcher.advanceIteratorTo(seqA, null);
|
||||||
Assert.assertEquals(recordsA, fetcher.getRecords(MAX_RECORDS).getRecords());
|
Assert.assertEquals(recordsA, getRecordsRetrievalStrategy.getRecords(MAX_RECORDS).getRecords());
|
||||||
|
|
||||||
fetcher.advanceIteratorTo(seqB, null);
|
fetcher.advanceIteratorTo(seqB, null);
|
||||||
Assert.assertEquals(recordsB, fetcher.getRecords(MAX_RECORDS).getRecords());
|
Assert.assertEquals(recordsB, getRecordsRetrievalStrategy.getRecords(MAX_RECORDS).getRecords());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
@ -181,12 +202,149 @@ public class KinesisDataFetcherTest {
|
||||||
// Create data fectcher and initialize it with latest type checkpoint
|
// Create data fectcher and initialize it with latest type checkpoint
|
||||||
KinesisDataFetcher dataFetcher = new KinesisDataFetcher(mockProxy, SHARD_INFO);
|
KinesisDataFetcher dataFetcher = new KinesisDataFetcher(mockProxy, SHARD_INFO);
|
||||||
dataFetcher.initialize(SentinelCheckpoint.LATEST.toString(), INITIAL_POSITION_LATEST);
|
dataFetcher.initialize(SentinelCheckpoint.LATEST.toString(), INITIAL_POSITION_LATEST);
|
||||||
|
GetRecordsRetrievalStrategy getRecordsRetrievalStrategy = new SynchronousGetRecordsRetrievalStrategy(dataFetcher);
|
||||||
// Call getRecords of dataFetcher which will throw an exception
|
// Call getRecords of dataFetcher which will throw an exception
|
||||||
dataFetcher.getRecords(maxRecords);
|
getRecordsRetrievalStrategy.getRecords(maxRecords);
|
||||||
|
|
||||||
// Test shard has reached the end
|
// Test shard has reached the end
|
||||||
Assert.assertTrue("Shard should reach the end", dataFetcher.isShardEndReached());
|
Assert.assertTrue("Shard should reach the end", dataFetcher.isShardEndReached());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNonNullGetRecords() {
|
||||||
|
String nextIterator = "TestIterator";
|
||||||
|
int maxRecords = 100;
|
||||||
|
|
||||||
|
KinesisProxy mockProxy = mock(KinesisProxy.class);
|
||||||
|
doThrow(new ResourceNotFoundException("Test Exception")).when(mockProxy).get(nextIterator, maxRecords);
|
||||||
|
|
||||||
|
KinesisDataFetcher dataFetcher = new KinesisDataFetcher(mockProxy, SHARD_INFO);
|
||||||
|
dataFetcher.initialize(SentinelCheckpoint.LATEST.toString(), INITIAL_POSITION_LATEST);
|
||||||
|
|
||||||
|
DataFetcherResult dataFetcherResult = dataFetcher.getRecords(maxRecords);
|
||||||
|
|
||||||
|
assertThat(dataFetcherResult, notNullValue());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testFetcherDoesNotAdvanceWithoutAccept() {
|
||||||
|
final String INITIAL_ITERATOR = "InitialIterator";
|
||||||
|
final String NEXT_ITERATOR_ONE = "NextIteratorOne";
|
||||||
|
final String NEXT_ITERATOR_TWO = "NextIteratorTwo";
|
||||||
|
when(kinesisProxy.getIterator(anyString(), anyString())).thenReturn(INITIAL_ITERATOR);
|
||||||
|
GetRecordsResult iteratorOneResults = mock(GetRecordsResult.class);
|
||||||
|
when(iteratorOneResults.getNextShardIterator()).thenReturn(NEXT_ITERATOR_ONE);
|
||||||
|
when(kinesisProxy.get(eq(INITIAL_ITERATOR), anyInt())).thenReturn(iteratorOneResults);
|
||||||
|
|
||||||
|
GetRecordsResult iteratorTwoResults = mock(GetRecordsResult.class);
|
||||||
|
when(kinesisProxy.get(eq(NEXT_ITERATOR_ONE), anyInt())).thenReturn(iteratorTwoResults);
|
||||||
|
when(iteratorTwoResults.getNextShardIterator()).thenReturn(NEXT_ITERATOR_TWO);
|
||||||
|
|
||||||
|
GetRecordsResult finalResult = mock(GetRecordsResult.class);
|
||||||
|
when(kinesisProxy.get(eq(NEXT_ITERATOR_TWO), anyInt())).thenReturn(finalResult);
|
||||||
|
when(finalResult.getNextShardIterator()).thenReturn(null);
|
||||||
|
|
||||||
|
KinesisDataFetcher dataFetcher = new KinesisDataFetcher(kinesisProxy, SHARD_INFO);
|
||||||
|
dataFetcher.initialize("TRIM_HORIZON",
|
||||||
|
InitialPositionInStreamExtended.newInitialPosition(InitialPositionInStream.TRIM_HORIZON));
|
||||||
|
|
||||||
|
assertNoAdvance(dataFetcher, iteratorOneResults, INITIAL_ITERATOR);
|
||||||
|
assertAdvanced(dataFetcher, iteratorOneResults, INITIAL_ITERATOR, NEXT_ITERATOR_ONE);
|
||||||
|
|
||||||
|
assertNoAdvance(dataFetcher, iteratorTwoResults, NEXT_ITERATOR_ONE);
|
||||||
|
assertAdvanced(dataFetcher, iteratorTwoResults, NEXT_ITERATOR_ONE, NEXT_ITERATOR_TWO);
|
||||||
|
|
||||||
|
assertNoAdvance(dataFetcher, finalResult, NEXT_ITERATOR_TWO);
|
||||||
|
assertAdvanced(dataFetcher, finalResult, NEXT_ITERATOR_TWO, null);
|
||||||
|
|
||||||
|
verify(kinesisProxy, times(2)).get(eq(INITIAL_ITERATOR), anyInt());
|
||||||
|
verify(kinesisProxy, times(2)).get(eq(NEXT_ITERATOR_ONE), anyInt());
|
||||||
|
verify(kinesisProxy, times(2)).get(eq(NEXT_ITERATOR_TWO), anyInt());
|
||||||
|
|
||||||
|
reset(kinesisProxy);
|
||||||
|
|
||||||
|
DataFetcherResult terminal = dataFetcher.getRecords(100);
|
||||||
|
assertThat(terminal.isShardEnd(), equalTo(true));
|
||||||
|
assertThat(terminal.getResult(), notNullValue());
|
||||||
|
GetRecordsResult terminalResult = terminal.getResult();
|
||||||
|
assertThat(terminalResult.getRecords(), notNullValue());
|
||||||
|
assertThat(terminalResult.getRecords(), empty());
|
||||||
|
assertThat(terminalResult.getNextShardIterator(), nullValue());
|
||||||
|
assertThat(terminal, equalTo(dataFetcher.TERMINAL_RESULT));
|
||||||
|
|
||||||
|
verify(kinesisProxy, never()).get(anyString(), anyInt());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRestartIterator() {
|
||||||
|
GetRecordsResult getRecordsResult = mock(GetRecordsResult.class);
|
||||||
|
GetRecordsResult restartGetRecordsResult = new GetRecordsResult();
|
||||||
|
Record record = mock(Record.class);
|
||||||
|
final String initialIterator = "InitialIterator";
|
||||||
|
final String nextShardIterator = "NextShardIterator";
|
||||||
|
final String restartShardIterator = "RestartIterator";
|
||||||
|
final String sequenceNumber = "SequenceNumber";
|
||||||
|
final String iteratorType = "AT_SEQUENCE_NUMBER";
|
||||||
|
KinesisProxy kinesisProxy = mock(KinesisProxy.class);
|
||||||
|
KinesisDataFetcher fetcher = new KinesisDataFetcher(kinesisProxy, SHARD_INFO);
|
||||||
|
|
||||||
|
when(kinesisProxy.getIterator(eq(SHARD_ID), eq(InitialPositionInStream.LATEST.toString()))).thenReturn(initialIterator);
|
||||||
|
when(kinesisProxy.get(eq(initialIterator), eq(10))).thenReturn(getRecordsResult);
|
||||||
|
when(getRecordsResult.getRecords()).thenReturn(Collections.singletonList(record));
|
||||||
|
when(getRecordsResult.getNextShardIterator()).thenReturn(nextShardIterator);
|
||||||
|
when(record.getSequenceNumber()).thenReturn(sequenceNumber);
|
||||||
|
|
||||||
|
fetcher.initialize(InitialPositionInStream.LATEST.toString(), INITIAL_POSITION_LATEST);
|
||||||
|
verify(kinesisProxy).getIterator(eq(SHARD_ID), eq(InitialPositionInStream.LATEST.toString()));
|
||||||
|
Assert.assertEquals(getRecordsResult, fetcher.getRecords(10).accept());
|
||||||
|
verify(kinesisProxy).get(eq(initialIterator), eq(10));
|
||||||
|
|
||||||
|
when(kinesisProxy.getIterator(eq(SHARD_ID), eq(iteratorType), eq(sequenceNumber))).thenReturn(restartShardIterator);
|
||||||
|
when(kinesisProxy.get(eq(restartShardIterator), eq(10))).thenReturn(restartGetRecordsResult);
|
||||||
|
|
||||||
|
fetcher.restartIterator();
|
||||||
|
Assert.assertEquals(restartGetRecordsResult, fetcher.getRecords(10).accept());
|
||||||
|
verify(kinesisProxy).getIterator(eq(SHARD_ID), eq(iteratorType), eq(sequenceNumber));
|
||||||
|
verify(kinesisProxy).get(eq(restartShardIterator), eq(10));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test (expected = IllegalStateException.class)
|
||||||
|
public void testRestartIteratorNotInitialized() {
|
||||||
|
KinesisDataFetcher dataFetcher = new KinesisDataFetcher(kinesisProxy, SHARD_INFO);
|
||||||
|
dataFetcher.restartIterator();
|
||||||
|
}
|
||||||
|
|
||||||
|
private DataFetcherResult assertAdvanced(KinesisDataFetcher dataFetcher, GetRecordsResult expectedResult,
|
||||||
|
String previousValue, String nextValue) {
|
||||||
|
DataFetcherResult acceptResult = dataFetcher.getRecords(100);
|
||||||
|
assertThat(acceptResult.getResult(), equalTo(expectedResult));
|
||||||
|
|
||||||
|
assertThat(dataFetcher.getNextIterator(), equalTo(previousValue));
|
||||||
|
assertThat(dataFetcher.isShardEndReached(), equalTo(false));
|
||||||
|
|
||||||
|
assertThat(acceptResult.accept(), equalTo(expectedResult));
|
||||||
|
assertThat(dataFetcher.getNextIterator(), equalTo(nextValue));
|
||||||
|
if (nextValue == null) {
|
||||||
|
assertThat(dataFetcher.isShardEndReached(), equalTo(true));
|
||||||
|
}
|
||||||
|
|
||||||
|
verify(kinesisProxy, times(2)).get(eq(previousValue), anyInt());
|
||||||
|
|
||||||
|
return acceptResult;
|
||||||
|
}
|
||||||
|
|
||||||
|
private DataFetcherResult assertNoAdvance(KinesisDataFetcher dataFetcher, GetRecordsResult expectedResult,
|
||||||
|
String previousValue) {
|
||||||
|
assertThat(dataFetcher.getNextIterator(), equalTo(previousValue));
|
||||||
|
DataFetcherResult noAcceptResult = dataFetcher.getRecords(100);
|
||||||
|
assertThat(noAcceptResult.getResult(), equalTo(expectedResult));
|
||||||
|
|
||||||
|
assertThat(dataFetcher.getNextIterator(), equalTo(previousValue));
|
||||||
|
|
||||||
|
verify(kinesisProxy).get(eq(previousValue), anyInt());
|
||||||
|
|
||||||
|
return noAcceptResult;
|
||||||
|
}
|
||||||
|
|
||||||
private void testInitializeAndFetch(String iteratorType,
|
private void testInitializeAndFetch(String iteratorType,
|
||||||
String seqNo,
|
String seqNo,
|
||||||
|
|
@ -206,8 +364,9 @@ public class KinesisDataFetcherTest {
|
||||||
when(checkpoint.getCheckpoint(SHARD_ID)).thenReturn(new ExtendedSequenceNumber(seqNo));
|
when(checkpoint.getCheckpoint(SHARD_ID)).thenReturn(new ExtendedSequenceNumber(seqNo));
|
||||||
|
|
||||||
KinesisDataFetcher fetcher = new KinesisDataFetcher(kinesis, SHARD_INFO);
|
KinesisDataFetcher fetcher = new KinesisDataFetcher(kinesis, SHARD_INFO);
|
||||||
|
GetRecordsRetrievalStrategy getRecordsRetrievalStrategy = new SynchronousGetRecordsRetrievalStrategy(fetcher);
|
||||||
fetcher.initialize(seqNo, initialPositionInStream);
|
fetcher.initialize(seqNo, initialPositionInStream);
|
||||||
List<Record> actualRecords = fetcher.getRecords(MAX_RECORDS).getRecords();
|
List<Record> actualRecords = getRecordsRetrievalStrategy.getRecords(MAX_RECORDS).getRecords();
|
||||||
|
|
||||||
Assert.assertEquals(expectedRecords, actualRecords);
|
Assert.assertEquals(expectedRecords, actualRecords);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,222 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Licensed under the Amazon Software License (the "License").
|
||||||
|
* You may not use this file except in compliance with the License.
|
||||||
|
* A copy of the License is located at
|
||||||
|
*
|
||||||
|
* http://aws.amazon.com/asl/
|
||||||
|
*
|
||||||
|
* or in the "license" file accompanying this file. This file is distributed
|
||||||
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
|
||||||
|
* express or implied. See the License for the specific language governing
|
||||||
|
* permissions and limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.amazonaws.services.kinesis.clientlibrary.lib.worker;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertNotEquals;
|
||||||
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.mockito.Matchers.eq;
|
||||||
|
import static org.mockito.Mockito.doNothing;
|
||||||
|
import static org.mockito.Mockito.mock;
|
||||||
|
import static org.mockito.Mockito.spy;
|
||||||
|
import static org.mockito.Mockito.verify;
|
||||||
|
import static org.mockito.Mockito.when;
|
||||||
|
|
||||||
|
import java.nio.ByteBuffer;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.runner.RunWith;
|
||||||
|
import org.mockito.Mock;
|
||||||
|
import org.mockito.invocation.InvocationOnMock;
|
||||||
|
import org.mockito.runners.MockitoJUnitRunner;
|
||||||
|
import org.mockito.stubbing.Answer;
|
||||||
|
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.proxies.IKinesisProxy;
|
||||||
|
import com.amazonaws.services.kinesis.clientlibrary.types.ProcessRecordsInput;
|
||||||
|
import com.amazonaws.services.kinesis.metrics.impl.NullMetricsFactory;
|
||||||
|
import com.amazonaws.services.kinesis.model.ExpiredIteratorException;
|
||||||
|
import com.amazonaws.services.kinesis.model.GetRecordsResult;
|
||||||
|
import com.amazonaws.services.kinesis.model.Record;
|
||||||
|
|
||||||
|
import lombok.extern.apachecommons.CommonsLog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* These are the integration tests for the PrefetchGetRecordsCache class.
|
||||||
|
*/
|
||||||
|
@RunWith(MockitoJUnitRunner.class)
|
||||||
|
@CommonsLog
|
||||||
|
public class PrefetchGetRecordsCacheIntegrationTest {
|
||||||
|
private static final int MAX_SIZE = 3;
|
||||||
|
private static final int MAX_BYTE_SIZE = 5 * 1024 * 1024;
|
||||||
|
private static final int MAX_RECORDS_COUNT = 30_000;
|
||||||
|
private static final int MAX_RECORDS_PER_CALL = 10_000;
|
||||||
|
private static final long IDLE_MILLIS_BETWEEN_CALLS = 500L;
|
||||||
|
|
||||||
|
private PrefetchGetRecordsCache getRecordsCache;
|
||||||
|
private GetRecordsRetrievalStrategy getRecordsRetrievalStrategy;
|
||||||
|
private KinesisDataFetcher dataFetcher;
|
||||||
|
private ExecutorService executorService;
|
||||||
|
private List<Record> records;
|
||||||
|
private String operation = "ProcessTask";
|
||||||
|
|
||||||
|
@Mock
|
||||||
|
private IKinesisProxy proxy;
|
||||||
|
@Mock
|
||||||
|
private ShardInfo shardInfo;
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() {
|
||||||
|
records = new ArrayList<>();
|
||||||
|
dataFetcher = spy(new KinesisDataFetcherForTest(proxy, shardInfo));
|
||||||
|
getRecordsRetrievalStrategy = spy(new SynchronousGetRecordsRetrievalStrategy(dataFetcher));
|
||||||
|
executorService = spy(Executors.newFixedThreadPool(1));
|
||||||
|
|
||||||
|
getRecordsCache = new PrefetchGetRecordsCache(MAX_SIZE,
|
||||||
|
MAX_BYTE_SIZE,
|
||||||
|
MAX_RECORDS_COUNT,
|
||||||
|
MAX_RECORDS_PER_CALL,
|
||||||
|
getRecordsRetrievalStrategy,
|
||||||
|
executorService,
|
||||||
|
IDLE_MILLIS_BETWEEN_CALLS,
|
||||||
|
new NullMetricsFactory(),
|
||||||
|
operation,
|
||||||
|
"test-shard");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRollingCache() {
|
||||||
|
getRecordsCache.start();
|
||||||
|
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||||
|
|
||||||
|
ProcessRecordsInput processRecordsInput1 = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertTrue(processRecordsInput1.getRecords().isEmpty());
|
||||||
|
assertEquals(processRecordsInput1.getMillisBehindLatest(), new Long(1000));
|
||||||
|
assertNotNull(processRecordsInput1.getCacheEntryTime());
|
||||||
|
|
||||||
|
ProcessRecordsInput processRecordsInput2 = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertNotEquals(processRecordsInput1, processRecordsInput2);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testFullCache() {
|
||||||
|
getRecordsCache.start();
|
||||||
|
sleep(MAX_SIZE * IDLE_MILLIS_BETWEEN_CALLS);
|
||||||
|
|
||||||
|
assertEquals(getRecordsCache.getRecordsResultQueue.size(), MAX_SIZE);
|
||||||
|
|
||||||
|
ProcessRecordsInput processRecordsInput1 = getRecordsCache.getNextResult();
|
||||||
|
ProcessRecordsInput processRecordsInput2 = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertNotEquals(processRecordsInput1, processRecordsInput2);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testDifferentShardCaches() {
|
||||||
|
ExecutorService executorService2 = spy(Executors.newFixedThreadPool(1));
|
||||||
|
KinesisDataFetcher kinesisDataFetcher = spy(new KinesisDataFetcherForTest(proxy, shardInfo));
|
||||||
|
GetRecordsRetrievalStrategy getRecordsRetrievalStrategy2 = spy(new AsynchronousGetRecordsRetrievalStrategy(kinesisDataFetcher, 5 , 5, "Test-shard"));
|
||||||
|
GetRecordsCache getRecordsCache2 = new PrefetchGetRecordsCache(
|
||||||
|
MAX_SIZE,
|
||||||
|
MAX_BYTE_SIZE,
|
||||||
|
MAX_RECORDS_COUNT,
|
||||||
|
MAX_RECORDS_PER_CALL,
|
||||||
|
getRecordsRetrievalStrategy2,
|
||||||
|
executorService2,
|
||||||
|
IDLE_MILLIS_BETWEEN_CALLS,
|
||||||
|
new NullMetricsFactory(),
|
||||||
|
operation,
|
||||||
|
"test-shard-2");
|
||||||
|
|
||||||
|
getRecordsCache.start();
|
||||||
|
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||||
|
|
||||||
|
Record record = mock(Record.class);
|
||||||
|
ByteBuffer byteBuffer = ByteBuffer.allocate(512 * 1024);
|
||||||
|
when(record.getData()).thenReturn(byteBuffer);
|
||||||
|
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
records.add(record);
|
||||||
|
getRecordsCache2.start();
|
||||||
|
|
||||||
|
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||||
|
|
||||||
|
ProcessRecordsInput p1 = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
ProcessRecordsInput p2 = getRecordsCache2.getNextResult();
|
||||||
|
|
||||||
|
assertNotEquals(p1, p2);
|
||||||
|
assertTrue(p1.getRecords().isEmpty());
|
||||||
|
assertFalse(p2.getRecords().isEmpty());
|
||||||
|
assertEquals(p2.getRecords().size(), records.size());
|
||||||
|
|
||||||
|
getRecordsCache2.shutdown();
|
||||||
|
sleep(100L);
|
||||||
|
verify(executorService2).shutdownNow();
|
||||||
|
verify(getRecordsRetrievalStrategy2).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testExpiredIteratorException() {
|
||||||
|
when(dataFetcher.getRecords(eq(MAX_RECORDS_PER_CALL))).thenAnswer(new Answer<DataFetcherResult>() {
|
||||||
|
@Override
|
||||||
|
public DataFetcherResult answer(final InvocationOnMock invocationOnMock) throws Throwable {
|
||||||
|
throw new ExpiredIteratorException("ExpiredIterator");
|
||||||
|
}
|
||||||
|
}).thenCallRealMethod();
|
||||||
|
doNothing().when(dataFetcher).restartIterator();
|
||||||
|
|
||||||
|
getRecordsCache.start();
|
||||||
|
sleep(IDLE_MILLIS_BETWEEN_CALLS);
|
||||||
|
|
||||||
|
ProcessRecordsInput processRecordsInput = getRecordsCache.getNextResult();
|
||||||
|
|
||||||
|
assertNotNull(processRecordsInput);
|
||||||
|
assertTrue(processRecordsInput.getRecords().isEmpty());
|
||||||
|
verify(dataFetcher).restartIterator();
|
||||||
|
}
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void shutdown() {
|
||||||
|
getRecordsCache.shutdown();
|
||||||
|
sleep(100L);
|
||||||
|
verify(executorService).shutdownNow();
|
||||||
|
verify(getRecordsRetrievalStrategy).shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void sleep(long millis) {
|
||||||
|
try {
|
||||||
|
Thread.sleep(millis);
|
||||||
|
} catch (InterruptedException e) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class KinesisDataFetcherForTest extends KinesisDataFetcher {
|
||||||
|
public KinesisDataFetcherForTest(final IKinesisProxy kinesisProxy,
|
||||||
|
final ShardInfo shardInfo) {
|
||||||
|
super(kinesisProxy, shardInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DataFetcherResult getRecords(final int maxRecords) {
|
||||||
|
GetRecordsResult getRecordsResult = new GetRecordsResult();
|
||||||
|
getRecordsResult.setRecords(new ArrayList<>(records));
|
||||||
|
getRecordsResult.setMillisBehindLatest(1000L);
|
||||||
|
|
||||||
|
return new AdvancingResult(getRecordsResult);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue