mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00
![]() * Polish Bazel build scripts * Remove glog references from streaming_logging.cc * Move out COPTS and reference them * Disable streaming on Windows * Remove -fno-gnu-unique |
||
---|---|---|
.. | ||
python | ||
src | ||
BUILD.bazel | ||
README.md |
Ray Streaming
-
Build streaming java
- build ray
sh build.sh -l java
cd java && mvn clean install -Dmaven.test.skip=true
- build streaming
cd ray/streaming/java && bazel build all_modules
mvn clean install -Dmaven.test.skip=true
- build ray
-
Build ray will build ray streaming python.
-
Run examples
# c++ test
cd streaming/ && bazel test ...
sh src/test/run_streaming_queue_test.sh
cd ..
# python test
cd python/ray/streaming/
pushd examples
python simple.py --input-file toy.txt
popd
pushd tests
pytest .
popd