There are too many lines of the same log showing when something failed. It's not useful and also prevent people from finding the root cause. Maybe we want to suppress it to reduce the number of logs when something broken.
(raylet) [2021-03-24 23:30:19,731 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,731 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,731 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,731 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,731 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,824 E 29966 29966] local_object_manager.cc:402: Failed to send restore spilled object request: IOError: 14: failed to connect to all addresses
(raylet) [2021-03-24 23:30:19,824 E 29966 29966] local_object_manager.cc:40
The job exceeded the maximum log length, and has been terminated.
Describe your feature request
There are too many lines of the same log showing when something failed. It's not useful and also prevent people from finding the root cause. Maybe we want to suppress it to reduce the number of logs when something broken.
GLOG has
LOG_EVERY_N
which we might want to add to RAY_LOG. (http://rpg.ifi.uzh.ch/docs/glog.html)