Disable distributed sort test on Windows (#19041)

* [WIP] Sorting benchmark

* Separate num_mappers and num_reducers

* Add tests

* Fix tests

* Tracing

* Separate num_mappers and num_reducers

* Two-stage reduce

* Back pressure to avoid excessive spilling

* Make merger_concurrency an option

* Fix tests

* Tweaks

* Remote writers

* Format

* WIP

* Address comments

* Fix tests and address comments

* Lint

* Fix mount points for testing

* Simplify code path

* Address comments

* Disable distributed sort test on Windows
This commit is contained in:
Frank Luan 2021-10-01 12:17:28 -07:00 committed by GitHub
parent 56debfc063
commit f885060efa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,7 @@ import sys
from ray.experimental.raysort import main
@pytest.mark.skipif(sys.platform == "win32", reason="Failing on Windows")
def test_distributed_sort():
args = main.get_args([
"--total_data_size=1_000_000_000",