Return true if all remaining processes are still alive. Note that this ignores processes that have been explicitly killed, e.g., via a command like node.kill_raylet(). Returns: True if any process that wasn't explicitly killed is still alive.
(self)
| 1798 | return any(self.live_processes()) |
| 1799 | |
| 1800 | def remaining_processes_alive(self): |
| 1801 | """Return true if all remaining processes are still alive. |
| 1802 | |
| 1803 | Note that this ignores processes that have been explicitly killed, |
| 1804 | e.g., via a command like node.kill_raylet(). |
| 1805 | |
| 1806 | Returns: |
| 1807 | True if any process that wasn't explicitly killed is still alive. |
| 1808 | """ |
| 1809 | return not any(self.dead_processes()) |
| 1810 | |
| 1811 | def destroy_external_storage(self): |
| 1812 | object_spilling_config = self._config.get("object_spilling_config", {}) |