Open rynewang opened 1 week ago
gcs::CreateErrorTableData takes a double timestamp.
gcs::CreateErrorTableData
double timestamp
Here it takes milliseconds from std clock: https://github.com/ray-project/ray/blob/d4e266003b08c221dbd5d47e3df21c07bfed84b2/src/ray/raylet/node_manager.cc#L2177
Here it takes nanoseconds from absl: https://github.com/ray-project/ray/blob/d4e266003b08c221dbd5d47e3df21c07bfed84b2/src/ray/gcs/gcs_server/gcs_actor_manager.cc#L755
We need to:
master
-
Medium: It is a significant difficulty but I can work around it.
Reading through the initial PR (https://github.com/ray-project/ray/pull/2256/files), the unit is actually seconds.
Then refactored to protobuf in https://github.com/ray-project/ray/pull/5024.
What happened + What you expected to happen
gcs::CreateErrorTableData
takes adouble timestamp
.Here it takes milliseconds from std clock: https://github.com/ray-project/ray/blob/d4e266003b08c221dbd5d47e3df21c07bfed84b2/src/ray/raylet/node_manager.cc#L2177
Here it takes nanoseconds from absl: https://github.com/ray-project/ray/blob/d4e266003b08c221dbd5d47e3df21c07bfed84b2/src/ray/gcs/gcs_server/gcs_actor_manager.cc#L755
We need to:
Versions / Dependencies
master
Reproduction script
-
Issue Severity
Medium: It is a significant difficulty but I can work around it.