Skip to content

Commit

Permalink
[native] Minor cosmetic fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
amitkdutta committed Jun 9, 2024
1 parent 6cfdf44 commit 46c6e3b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions presto-native-execution/presto_cpp/main/PrestoTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,15 @@ struct PrestoTask {
/// Time point (in ms) when the last message (any) came for this task.
// TODO (spershin): Deprecate it, use only the 'lastCoordinatorHeartbeatMs'.
uint64_t lastHeartbeatMs{0};

/// Time point (in ms) when the last message came for this task from the
/// Coordinator. Used to determine if the Task has been abandoned.
uint64_t lastCoordinatorHeartbeatMs{0};

/// Time point (in ms) when the time we updated Task stats.
uint64_t lastTaskStatsUpdateMs = {0};
uint64_t lastTaskStatsUpdateMs{0};

uint64_t lastMemoryReservation = {0};
uint64_t lastMemoryReservation{0};
uint64_t createTimeMs{0};
uint64_t firstSplitStartTimeMs{0};
uint64_t lastEndTimeMs{0};
Expand Down

0 comments on commit 46c6e3b

Please sign in to comment.