mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
![]() * Get rid of system() calls * Work around '/usr/share/mini' showing up on GitHub Actions (probably due to psutil truncation) https://github.com/ray-project/ray/runs/722480047?check_suite_focus=true * Don't check for socket max path length on Windows * Don't check for socket existence on Windows * Fix race condition in Windows fate-sharing * Work around missing .exe extension for Redis tests * Add more tests to GitHub Actions Co-authored-by: Mehrdad <noreply@github.com> |
||
---|---|---|
.. | ||
java | ||
python | ||
src | ||
BUILD.bazel | ||
README.md |
Ray Streaming
-
Build streaming java
- build ray
bazel build //java:gen_maven_deps
cd java && mvn clean install -Dmaven.test.skip=true && cd ..
- build streaming
bazel build //streaming/java:gen_maven_deps
mvn clean install -Dmaven.test.skip=true
- build ray
-
Build ray python will build ray streaming python.
-
Run examples
# c++ test cd streaming/ && bazel test ... sh src/test/run_streaming_queue_test.sh cd .. # python test pushd python/ray/streaming/ pushd examples python simple.py --input-file toy.txt popd pushd tests pytest . popd popd # java test cd streaming/java/streaming-runtime mvn test