Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Update kinesis client library: 1.9.3 -> 1.11.1 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
markus1189 authored Feb 12, 2020
1 parent 8f6a0d3 commit a6075a6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ lazy val library =
// TODO: Upgrade this to 1.9.x when this issue is resolved and exposed in localstack:
// https://github.com/mhart/kinesalite/issues/59
// 1.9.3 breaks KinesisSourceGraphStageIntegrationSpec and ConsumerProcessingManagerIntegrationSpec
"com.amazonaws" % "amazon-kinesis-client" % "1.9.3" % Compile
"com.amazonaws" % "amazon-kinesis-client" % "1.11.1" % Compile
excludeAll (ExclusionRule(organization = "com.fasterxml.jackson.core"),
ExclusionRule(organization = "com.fasterxml.jackson.dataformat")),
"com.amazonaws" % "amazon-kinesis-producer" % "0.12.11" % Compile
Expand Down
5 changes: 5 additions & 0 deletions src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,11 @@ kinesis {
# Default: 60000
#shardSyncIntervalMillis = 60000

# Default ShardSyncStrategy to be used for discovering new shards in the Stream.
#
# Default: SHARD_END
#shardSyncStrategyType = SHARD_END

# Cleanup leases upon shards completion (don't wait until they expire in Kinesis).
# Keeping leases takes some tracking/resources (e.g. they need to be renewed, assigned), so by default we try
# to delete the ones we don't need any longer.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ class ConsumerConfSpec
| # Default: 60000
| shardSyncIntervalMillis = 70000
|
| # Default: SHARD_END
| shardSyncStrategyType = SHARD_END
|
| # Default: true
| cleanupLeasesUponShardCompletion = false
|
Expand Down

0 comments on commit a6075a6

Please sign in to comment.