ray.util.state.list_runtime_envs#
- ray.util.state.list_runtime_envs(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[RuntimeEnvState][source]#
- List runtime environments 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., - ("node_id", "=", "abcdef")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 - RuntimeEnvState) will be queried and returned. See- RuntimeEnvState.
- 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 - RuntimeEnvState.
- Raises:
- RayStateApiException – if the CLI failed to query the data. 
 - DeveloperAPI: This API may change across minor Ray releases.