rpuch commented on code in PR #5093: URL: https://github.com/apache/ignite-3/pull/5093#discussion_r1926538822
########## modules/transactions/src/main/java/org/apache/ignite/internal/tx/configuration/TransactionConfigurationSchema.java: ########## @@ -41,10 +41,29 @@ public class TransactionConfigurationSchema { @Value(hasDefault = true) public final long timeout = 10_000; - /** Timeout for implicit transactions (milliseconds). */ @Range(min = 1) @Value(hasDefault = true) - public final long implicitTransactionTimeout = 3_000; + public final long minRoTimeout = 1; + + @Range(min = 1) + @Value(hasDefault = true) + public final long maxRoTimeout = Long.MAX_VALUE; Review Comment: I've totally missed this: at least for RO transactions, we should NOT have a default as 'infinity' (otherwise, RO transactions forgotten by the user will effectively disable GC in storages in the whole cluster). Some reasonable finite value should be used (dataAvailabilityTime seems a good candidate) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org