Skip to content

Commit 03a7f06

Browse files
committed
add virtual cluster
Signed-off-by: 黑驰 <[email protected]>
1 parent 6b36f8c commit 03a7f06

File tree

127 files changed

+10018
-198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+10018
-198
lines changed

BUILD.bazel

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,7 @@ ray_cc_library(
493493
name = "gcs_pub_sub_lib",
494494
srcs = [
495495
"src/ray/gcs/pubsub/gcs_pub_sub.cc",
496+
"src/ray/gcs/pubsub/gcs_pub_sub.ant.cc",
496497
],
497498
hdrs = [
498499
"src/ray/gcs/pubsub/gcs_pub_sub.h",
@@ -1833,6 +1834,34 @@ ray_cc_test(
18331834
],
18341835
)
18351836

1837+
ray_cc_test(
1838+
name = "gcs_virtual_cluster_manager_test",
1839+
size = "small",
1840+
srcs = [
1841+
"src/ray/gcs/gcs_server/test/gcs_virtual_cluster_manager_test.cc",
1842+
],
1843+
tags = ["team:core"],
1844+
deps = [
1845+
":gcs_server_lib",
1846+
":gcs_server_test_util",
1847+
":gcs_test_util_lib",
1848+
":ray_mock",
1849+
"@com_google_googletest//:gtest_main",
1850+
],
1851+
)
1852+
1853+
ray_cc_test(
1854+
name = "virtual_cluster_manager_test",
1855+
size = "small",
1856+
srcs = ["src/ray/raylet/virtual_cluster_manager_test.cc"],
1857+
tags = ["team:core"],
1858+
deps = [
1859+
":ray_mock",
1860+
":raylet_lib",
1861+
"@com_google_googletest//:gtest_main",
1862+
],
1863+
)
1864+
18361865
ray_cc_library(
18371866
name = "gcs_table_storage_lib",
18381867
srcs = glob(
@@ -1956,6 +1985,7 @@ ray_cc_library(
19561985
name = "gcs_client_lib",
19571986
srcs = [
19581987
"src/ray/gcs/gcs_client/accessor.cc",
1988+
"src/ray/gcs/gcs_client/accessor.ant.cc",
19591989
"src/ray/gcs/gcs_client/gcs_client.cc",
19601990
],
19611991
hdrs = [

doc/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
Ray RLlib <rllib/index>
2020
More Libraries <ray-more-libs/index>
2121
Ray Clusters <cluster/getting-started>
22+
Ray Virtual Clusters <virtual-cluster/getting-started>
2223
Monitoring and Debugging <ray-observability/index>
2324
Developer Guides <ray-contribute/index>
2425
Glossary <ray-references/glossary>

0 commit comments

Comments
 (0)