smiklosovic commented on code in PR #1828:
URL: https://github.com/apache/cassandra/pull/1828#discussion_r974215538
##########
src/java/org/apache/cassandra/service/StorageService.java:
##########
@@ -4207,8 +4215,25 @@ public void clearSnapshot(String tag, String...
keyspaceNames)
}
}
+ Object olderThan = options.get("older_than");
Review Comment:
Imagine there is unix timestamp 1000 at client but time is different on
server, like 1050. So when I specify 3h on the command line, I would take the
current time on the command line (1000) and subtract 3h from it, for example,
just to have an example, it would be timestamp 800.
But timestamp 800 is not 3 hours back from the timestamp 1050 on the server.
I want to compute "three hours back" not on the client but on the server.
Please correct me if my reasoning is wrong here.
--
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]