├── README.md ├── bytewax ├── iot.py └── requirements.txt ├── flink ├── iot.py └── requirements.txt ├── kafka ├── consume.py ├── create_topic.py ├── docker-compose.yml ├── produce.py └── requirements.txt └── spark ├── iot.py └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/README.md -------------------------------------------------------------------------------- /bytewax/iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/bytewax/iot.py -------------------------------------------------------------------------------- /bytewax/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/bytewax/requirements.txt -------------------------------------------------------------------------------- /flink/iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/flink/iot.py -------------------------------------------------------------------------------- /flink/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/flink/requirements.txt -------------------------------------------------------------------------------- /kafka/consume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/kafka/consume.py -------------------------------------------------------------------------------- /kafka/create_topic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/kafka/create_topic.py -------------------------------------------------------------------------------- /kafka/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/kafka/docker-compose.yml -------------------------------------------------------------------------------- /kafka/produce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/kafka/produce.py -------------------------------------------------------------------------------- /kafka/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/kafka/requirements.txt -------------------------------------------------------------------------------- /spark/iot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/spark/iot.py -------------------------------------------------------------------------------- /spark/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softlandia-Ltd/stateful-streaming-examples/HEAD/spark/requirements.txt --------------------------------------------------------------------------------