Add actor table to global state API (#6629)

This commit is contained in:
Philipp Moritz
2019-12-31 15:11:59 -08:00
committed by GitHub
parent a4d64de39a
commit ecddaafd94
5 changed files with 133 additions and 14 deletions
+3 -2
View File
@@ -102,8 +102,8 @@ from ray._raylet import (
_config = _Config()
from ray.profiling import profile # noqa: E402
from ray.state import (global_state, jobs, nodes, tasks, objects, timeline,
object_transfer_timeline, cluster_resources,
from ray.state import (global_state, jobs, nodes, actors, tasks, objects,
timeline, object_transfer_timeline, cluster_resources,
available_resources, errors) # noqa: E402
from ray.worker import (
LOCAL_MODE,
@@ -139,6 +139,7 @@ __all__ = [
"global_state",
"jobs",
"nodes",
"actors",
"tasks",
"objects",
"timeline",