constants.py 343 B

1234567
  1. # Prefix for the node id resource that is automatically added to each node.
  2. # For example, a node may have id `node:172.23.42.1`.
  3. NODE_ID_PREFIX = "node:"
  4. # The system resource that head node has.
  5. HEAD_NODE_RESOURCE_NAME = NODE_ID_PREFIX + "__internal_head__"
  6. RAY_WARN_BLOCKING_GET_INSIDE_ASYNC_ENV_VAR = "RAY_WARN_BLOCKING_GET_INSIDE_ASYNC"