ray.util.state.list_objects#

ray.util.state.list_objects(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[ObjectState][source]#

List objects 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., ("ip", "=", "0.0.0.0") 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 ObjectState) will be queried and returned. See ObjectState.

  • 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 ObjectState.

Raises:

ExceptionsRayStateApiException if the CLI failed to query the data.

DeveloperAPI: This API may change across minor Ray releases.