ray/streaming
2019-12-12 14:37:17 +08:00
..
python [Streaming] Streaming data transfer and python integration (#6185) 2019-12-10 20:33:24 +08:00
src [Streaming]Fix default JobID (#6436) 2019-12-12 14:37:17 +08:00
BUILD.bazel [Streaming] Streaming data transfer and python integration (#6185) 2019-12-10 20:33:24 +08:00
README.md [Streaming] Streaming data transfer and python integration (#6185) 2019-12-10 20:33:24 +08:00

Ray Streaming

  1. 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
  2. Build ray will build ray streaming python.

  3. 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