Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Dashboard] Start the new dashboard #9860

Merged
merged 28 commits into from
Aug 13, 2020
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f54d8eb
Use new dashboard if environment var RAY_USE_NEW_DASHBOARD exists; ne…
Jul 27, 2020
c89e64a
Make fake client/build/static directory for dashboard
Jul 27, 2020
39a3143
Add test_dashboard.py for new dashboard
Jul 27, 2020
96042fd
Travis CI enable new dashboard test
Jul 27, 2020
ae042ec
Update new dashboard
Jul 31, 2020
fd8bbb2
Agent manager service
Jul 31, 2020
7abc734
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Jul 31, 2020
841c745
Add agent manager
Aug 1, 2020
bdfdd56
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Aug 1, 2020
848d2fd
Register agent to agent manager
Aug 1, 2020
b7c3d97
Add a new line to the end of agent_manager.cc
Aug 1, 2020
d4c1076
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Aug 5, 2020
8b900d9
Fix merge; Fix lint
Aug 5, 2020
1fc7207
Update dashboard/agent.py
fyrestone Aug 5, 2020
bca3fb3
Update dashboard/head.py
fyrestone Aug 5, 2020
8c9544f
Fix bug
Aug 5, 2020
e0dd2a9
Add tests for dashboard
Aug 6, 2020
a2b3393
Fix
Aug 6, 2020
7e63177
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Aug 7, 2020
4969f56
Remove const from Process::Kill() & Fix bugs
Aug 7, 2020
7082824
Revert error check of execute_after
Aug 8, 2020
71c220d
Raise exception from DashboardAgent.run
Aug 10, 2020
8084c8e
Add more tests.
Aug 10, 2020
b98543f
Fix compile on Linux
Aug 11, 2020
08bbd48
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Aug 12, 2020
3b212ff
Use dict comprehension instead of dict(generator)
Aug 12, 2020
f2df79b
Fix lint
Aug 12, 2020
c2e3f08
Merge remote-tracking branch 'origin_ray/master' into dashboard_switch
Aug 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lint
  • Loading branch information
刘宝 committed Aug 12, 2020
commit f2df79b213dbe69da77340fbba50987c7c6517bc
16 changes: 8 additions & 8 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,11 @@ cc_library(
hdrs = glob([
"src/ray/rpc/agent_manager/*.h",
]),
strip_include_prefix = "src",
copts = COPTS,
strip_include_prefix = "src",
deps = [
":grpc_common_lib",
":agent_manager_cc_grpc",
":grpc_common_lib",
":ray_common",
"@boost//:asio",
"@com_github_grpc_grpc//:grpc++",
Expand Down Expand Up @@ -439,12 +439,12 @@ cc_library(
copts = COPTS,
strip_include_prefix = "src",
deps = [
":agent_manager_rpc",
":gcs",
":gcs_pub_sub_lib",
":gcs_service_rpc",
":gcs_table_storage_lib",
":node_manager_rpc",
":agent_manager_rpc",
":raylet_client_lib",
":worker_rpc",
],
Expand Down Expand Up @@ -531,10 +531,10 @@ cc_library(
strip_include_prefix = "src",
visibility = ["//streaming:__subpackages__"],
deps = [
":agent_manager_rpc",
":gcs",
":node_manager_fbs",
":node_manager_rpc",
":agent_manager_rpc",
":object_manager",
":plasma_client",
":ray_common",
Expand Down Expand Up @@ -575,9 +575,9 @@ cc_library(
strip_include_prefix = "src",
visibility = ["//streaming:__subpackages__"],
deps = [
":agent_manager_rpc",
":node_manager_fbs",
":node_manager_rpc",
":agent_manager_rpc",
":ray_common",
":ray_util",
"//src/ray/protobuf:gcs_cc_proto",
Expand Down Expand Up @@ -1499,10 +1499,10 @@ cc_library(
copts = COPTS,
strip_include_prefix = "src",
deps = [
":agent_manager_rpc",
":hiredis",
":node_manager_fbs",
":node_manager_rpc",
":agent_manager_rpc",
":ray_common",
":ray_util",
":stats_lib",
Expand Down Expand Up @@ -1839,13 +1839,13 @@ cc_binary(
filegroup(
name = "all_py_proto",
srcs = [
"//src/ray/protobuf:agent_manager_py_proto",
"//src/ray/protobuf:common_py_proto",
"//src/ray/protobuf:core_worker_py_proto",
"//src/ray/protobuf:gcs_service_py_proto",
"//src/ray/protobuf:gcs_py_proto",
"//src/ray/protobuf:gcs_service_py_proto",
"//src/ray/protobuf:node_manager_py_proto",
"//src/ray/protobuf:reporter_py_proto",
"//src/ray/protobuf:agent_manager_py_proto",
],
)

Expand Down