-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kinesis source improvements for larger deployments #99
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,26 @@ import java.net.URI | |
import java.time.Instant | ||
import scala.concurrent.duration.FiniteDuration | ||
|
||
/** | ||
* Config to be supplied from the app's hocon | ||
* | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Love the addition of in-code documentation for the other parameters too |
||
* @param appName | ||
* Corresponds to the DynamoDB table name | ||
* @param workerIdentifier | ||
* If a pod uses a consistent name, then whenever the pod restarts (e.g. after crashing or after a | ||
* rollout) then the pod can re-claim leases that it previously owned before the restart | ||
* @param leaseDuration | ||
* The KCL default for a lease is 10 seconds. If we increase this, then we can allow a pod longer | ||
* to re-claim its old leases after a restart. | ||
* @param maxLeasesToStealAtOneTimeFactor | ||
* Controls how to pick the max number of leases to steal at one time. The actual max number to | ||
* steal is multiplied by the number of runtime processors. In order to avoid latency during scale | ||
* up/down and pod-rotation, we want the app to be quick to acquire shard-leases to process. With | ||
* bigger instances (more cores/processors) we tend to have more shard-leases per instance, so we | ||
* increase how aggressively it acquires leases. | ||
* | ||
* Other params are self-explanatory | ||
*/ | ||
case class KinesisSourceConfig( | ||
appName: String, | ||
streamName: String, | ||
|
@@ -25,7 +45,8 @@ case class KinesisSourceConfig( | |
customEndpoint: Option[URI], | ||
dynamodbCustomEndpoint: Option[URI], | ||
cloudwatchCustomEndpoint: Option[URI], | ||
leaseDuration: FiniteDuration | ||
leaseDuration: FiniteDuration, | ||
maxLeasesToStealAtOneTimeFactor: BigDecimal | ||
) | ||
|
||
object KinesisSourceConfig { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious that this is a decimal, you can't have a fraction of a lease surely? Doesn't seem like a likely oversight - so I'm guessing there's a reason I don't see?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This number is first multiplied by the number of processors. It is helpful to make it a decimal, e.g. maybe we want a 8-core instance to steal 2 leases at one time, so we set this value to
0.25
.I've been using this pattern in lots of places recently. It's a good way to make the app auto-guess a good configuration, instead of putting the burden on the user to configure it appropriately for its vertical size. And I consistently put
Factor
as a suffix of params that get multiplied by num processors.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see - interesting. But nuanced, but I get it. It's cores*this = n instances. I assume it rounds up to the nearest CEIL, since it's max... Cool, thanks for explaining!