Skip to content

Commit

Permalink
* log-exporter: export action and event in parquet format
Browse files Browse the repository at this point in the history
Signed-off-by: neo <1100909+neowu@users.noreply.github.com>
  • Loading branch information
neowu committed Mar 4, 2025
1 parent a5fcf4c commit 4d59f4e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ public void cleanupArchive(LocalDate date) {
shell.execute("rm", "-f", eventFilePath.toString());
}

public String remoteActionLogPath(LocalDate date) {
String remoteActionLogPath(LocalDate date) {
return Strings.format("/action/{}/action-{}-{}.parquet", date.getYear(), date, hash);
}

public String remoteEventPath(LocalDate date) {
String remoteEventPath(LocalDate date) {
return Strings.format("/event/{}/event-{}-{}.parquet", date.getYear(), date, hash);
}

Expand Down

0 comments on commit 4d59f4e

Please sign in to comment.