We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e0b03 commit ec220caCopy full SHA for ec220ca
common/persistence/cassandra/cassandraVisibilityPersistence.go
@@ -44,7 +44,8 @@ const (
44
defaultCloseTTLSeconds = 86400
45
openExecutionTTLBuffer = int64(86400) // setting it to a day to account for shard going down
46
47
- maxCassandraTTL = int64(630720000) // Cassandra TTL maximum, 20 years in second
+ // ref: https://docs.datastax.com/en/dse-trblshoot/doc/troubleshooting/recoveringTtlYear2038Problem.html
48
+ maxCassandraTTL = int64(315360000) // Cassandra max support time is 2038-01-19T03:14:06+00:00. Updated this to 10 years to support until year 2028
49
)
50
51
const (
0 commit comments