[Streaming] Streaming data transfer and python integration (#6185)

This commit is contained in:
Chaokun Yang
2019-12-10 20:33:24 +08:00
committed by Hao Chen
parent c1d4ab8bb4
commit 6272907a57
93 changed files with 8434 additions and 1480 deletions
+16
View File
@@ -0,0 +1,16 @@
Streaming Library
=================
Dependencies:
Install NetworkX: ``pip install networkx``
Examples:
- simple.py: A simple example with stateless operators and different parallelism per stage.
Run ``python simple.py --input-file toy.txt``
- wordcount.py: A streaming wordcount example with a stateful operator (rolling sum).
Run ``python wordcount.py --titles-file articles.txt``