mirror of
https://github.com/wassname/ray.git
synced 2026-07-06 05:16:30 +08:00
[Core] GCS Actor management on by default. (#8845)
* GCS Actor management on by default. * Fix travis config. * Change condition. * Remove unnecessary CI.
This commit is contained in:
-17
@@ -57,25 +57,11 @@ matrix:
|
||||
before_script:
|
||||
- . ./ci/travis/ci.sh build
|
||||
|
||||
- os: osx
|
||||
osx_image: xcode7
|
||||
env:
|
||||
- PYTHON=3.6 RAY_GCS_ACTOR_SERVICE_ENABLED=true
|
||||
- PYTHONWARNINGS=ignore
|
||||
- RAY_DEFAULT_BUILD=1
|
||||
- RAY_CYTHON_EXAMPLES=1
|
||||
- RAY_USE_RANDOM_PORTS=1
|
||||
install:
|
||||
- . ./ci/travis/ci.sh init RAY_CI_SERVE_AFFECTED,RAY_CI_TUNE_AFFECTED,RAY_CI_PYTHON_AFFECTED
|
||||
before_script:
|
||||
- . ./ci/travis/ci.sh build
|
||||
|
||||
- os: linux
|
||||
env:
|
||||
- JDK='Oracle JDK 8'
|
||||
- PYTHON=3.6 PYTHONWARNINGS=ignore
|
||||
- RAY_INSTALL_JAVA=1
|
||||
- RAY_GCS_ACTOR_SERVICE_ENABLED=true
|
||||
install:
|
||||
- . ./ci/travis/ci.sh init RAY_CI_JAVA_AFFECTED
|
||||
before_script:
|
||||
@@ -88,7 +74,6 @@ matrix:
|
||||
- TESTSUITE=streaming
|
||||
- JDK='Oracle JDK 8'
|
||||
- RAY_INSTALL_JAVA=1
|
||||
- RAY_GCS_ACTOR_SERVICE_ENABLED=true
|
||||
- PYTHON=3.6 PYTHONWARNINGS=ignore
|
||||
- RAY_USE_RANDOM_PORTS=1
|
||||
install:
|
||||
@@ -119,7 +104,6 @@ matrix:
|
||||
- LINUX_WHEELS=1
|
||||
- PYTHONWARNINGS=ignore
|
||||
- RAY_INSTALL_JAVA=1
|
||||
- RAY_GCS_ACTOR_SERVICE_ENABLED=true
|
||||
install:
|
||||
- . ./ci/travis/ci.sh init RAY_CI_LINUX_WHEELS_AFFECTED
|
||||
before_script:
|
||||
@@ -135,7 +119,6 @@ matrix:
|
||||
- MAC_WHEELS=1
|
||||
- PYTHONWARNINGS=ignore
|
||||
- RAY_INSTALL_JAVA=1
|
||||
- RAY_GCS_ACTOR_SERVICE_ENABLED=true
|
||||
install:
|
||||
- . ./ci/travis/ci.sh init RAY_CI_MACOS_WHEELS_AFFECTED
|
||||
before_script:
|
||||
|
||||
@@ -313,7 +313,7 @@ RAY_CONFIG(bool, plasma_store_as_thread, false)
|
||||
RAY_CONFIG(int64_t, gcs_service_address_check_interval_milliseconds, 1000)
|
||||
|
||||
RAY_CONFIG(bool, gcs_actor_service_enabled,
|
||||
getenv("RAY_GCS_ACTOR_SERVICE_ENABLED") != nullptr &&
|
||||
getenv("RAY_GCS_ACTOR_SERVICE_ENABLED") == nullptr ||
|
||||
getenv("RAY_GCS_ACTOR_SERVICE_ENABLED") == std::string("true"))
|
||||
|
||||
/// The batch size for metrics export.
|
||||
|
||||
Reference in New Issue
Block a user