ray/streaming
mehrdadn 7a24144bfd Polish Bazel build scripts (#6424)
* 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
2019-12-17 02:38:36 -08:00
..
python [Streaming] Streaming data transfer and python integration (#6185) 2019-12-10 20:33:24 +08:00
src Polish Bazel build scripts (#6424) 2019-12-17 02:38:36 -08:00
BUILD.bazel Polish Bazel build scripts (#6424) 2019-12-17 02:38:36 -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