Henry Henrinson
Henry Henrinson

Reputation: 5412

Where does ray stdout go?

For ray remote jobs, I can see stderr gets printed to the driver session.

However, is there a way to get the stdout for remote jobs? Checking individual job logs can be very useful for debugging.

Upvotes: 2

Views: 1648

Answers (1)

Sang
Sang

Reputation: 925

If you are using Mac, try checking the path /tmp/ray/session_latest/logs/*. This should contain stdout and stderr of the Ray cluster. Note that the ray directory is probably removed if your cluster is shut down.

Upvotes: 3

Related Questions