Skip to content

Commit

Permalink
Patch kinesis source leader action frequency setting
Browse files Browse the repository at this point in the history
The default was changed to a naively long value when we implemented the feature - 60s is more reasonable
  • Loading branch information
colmsnowplow committed Jun 26, 2024
1 parent 58e6711 commit f87bdb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/source/kinesis/kinesis_source.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func (f adapter) ProvideDefault() (interface{}, error) {
ReadThrottleDelayMs: 250, // Kinsumer default is 250ms
ConcurrentWrites: 50,
ShardCheckFreqSeconds: 10,
LeaderActionFreqSeconds: 300,
LeaderActionFreqSeconds: 60,
}

return cfg, nil
Expand Down

0 comments on commit f87bdb8

Please sign in to comment.