maedhroz commented on code in PR #3274:
URL: https://github.com/apache/cassandra/pull/3274#discussion_r1591584205
##########
src/java/org/apache/cassandra/config/Config.java:
##########
@@ -1283,4 +1283,21 @@ public static void log(Config config)
public double severity_during_decommission = 0;
public StorageCompatibilityMode storage_compatibility_mode;
+
+ public enum CQLStartTime
+ {
+ REQUEST, // uses a timestamp that represent the start of processing of
the request
+ QUEUE // uses a timestamp that represents when the request was
enqueued
+ }
+ public volatile CQLStartTime cql_start_time = CQLStartTime.REQUEST;
Review Comment:
nit: For this one, I guess we should clarify that it only applies to the
replica timeout and `native_transport_timeout` still governs the overall
coordinator-level request.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]