Hi, guys! Currently, there are .out and .err worker files in our /tmp/ray/session_latest/logs , and we are planning to combine those two files to .log file to
reduce number of files
help people looking at the whole logs within a single file
This means we will remove files such as
worker-bffdf3942a57347937e2f9eb61101190f5533826-01000000-25475.err
worker-bffdf3942a57347937e2f9eb61101190f5533826-01000000-25475.out
and it will become
worker-bffdf3942a57347937e2f9eb61101190f5533826-01000000-25475.log
This also means logs that are streamed to the driver will always be emitted to stderr or stdout only (currently, we emit .err file to stderr and .out file to stdout).
Since this can be breaking changes for some people, I’d like to hear if there are any concerns about this or other suggestions.