bdeggleston commented on code in PR #3663:
URL: https://github.com/apache/cassandra/pull/3663#discussion_r1851167624
##########
src/java/org/apache/cassandra/db/Mutation.java:
##########
@@ -150,6 +150,11 @@ public ImmutableCollection<PartitionUpdate>
getPartitionUpdates()
return modifications.values();
}
+ public long getApproxCreatedAtNanos()
+ {
+ return approxCreatedAtNanos;
Review Comment:
I probably wouldn't add it to Mutation. For
`ModificationStatement#executeWithoutCondition` at least, you can grab nanoTime
before the call to getMutations, then just pass it into the StorageProxy call
as an argument. From there I think you need to plumb it to
AbstractWriteResponseHandler and the call to `hintMutations`
--
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]