ray.util.state.list_workers#
- ray.util.state.list_workers(address: str | None = None, filters: List[Tuple[str, str, str | bool | int | float]] | None = None, limit: int = 100, timeout: int = 30, detail: bool = False, raise_on_missing_output: bool = True, _explain: bool = False) List[WorkerState] [source]#
List workers in the cluster.
- Parameters:
address – Ray bootstrap address, could be
auto
,localhost:6379
. If None, it will be resolved automatically from an initialized ray.filters – List of tuples of filter key, predicate (=, or !=), and the filter value. E.g.,
("is_alive", "=", "True")
String filter values are case-insensitive.limit – Max number of entries returned by the state backend.
timeout – Max timeout value for the state APIs requests made.
detail – When True, more details info (specified in
WorkerState
) will be queried and returned. SeeWorkerState
.raise_on_missing_output – When True, exceptions will be raised if there is missing data due to truncation/data source unavailable.
_explain – Print the API information such as API latency or failed query information.
- Returns:
List of
WorkerState
.- Raises:
RayStateApiException – if the CLI failed to query the data.
DeveloperAPI: This API may change across minor Ray releases.