Skip to content

Commit

Permalink
add hint for values of timestamp start and end for commitlog restoration
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Sep 21, 2023
1 parent 31eab20 commit 21ca33d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ public class RestoreCommitLogsOperationRequest extends BaseRestoreOperationReque
public Path cassandraConfigDirectory;

@Option(names = {"--ts", "--timestamp-start"},
description = "When the base snapshot was taken. Only relevant if archived commitlogs are available.",
description = "When the base snapshot was taken. It expects a unix timestamp in milliseconds. Only relevant if archived commitlogs are available.",
required = true)
public long timestampStart;

@Option(names = {"--te", "--timestamp-end"},
description = "Point-in-time to restore up to. Only relevant if archived commitlogs are available.",
description = "Point-in-time to restore up to. It expects a unix timestamp in milliseconds. Only relevant if archived commitlogs are available.",
required = true)
public long timestampEnd;

Expand Down

0 comments on commit 21ca33d

Please sign in to comment.