Add job table to state API (#5076)

This commit is contained in:
Philipp Moritz
2019-07-06 00:05:48 -07:00
committed by Robert Nishihara
parent 53d5a8a45f
commit c5253cc300
12 changed files with 143 additions and 17 deletions
+2 -1
View File
@@ -67,7 +67,7 @@ from ray._raylet import (
_config = _Config()
from ray.profiling import profile # noqa: E402
from ray.state import (global_state, nodes, tasks, objects, timeline,
from ray.state import (global_state, jobs, nodes, tasks, objects, timeline,
object_transfer_timeline, cluster_resources,
available_resources, errors) # noqa: E402
from ray.worker import (
@@ -101,6 +101,7 @@ __version__ = "0.8.0.dev2"
__all__ = [
"global_state",
"jobs",
"nodes",
"tasks",
"objects",