https://github.com/blurred-machine/storm-multiplier-topology
This project consists of a Directed Acyclic Graph-based Topology for a Data Streaming Spout and Multiplier Bolt forming a Storm Topology submitted on a Local Cluster.
https://github.com/blurred-machine/storm-multiplier-topology
Last synced: 8 days ago
JSON representation
This project consists of a Directed Acyclic Graph-based Topology for a Data Streaming Spout and Multiplier Bolt forming a Storm Topology submitted on a Local Cluster.
- Host: GitHub
- URL: https://github.com/blurred-machine/storm-multiplier-topology
- Owner: blurred-machine
- Created: 2020-09-30T18:20:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-05T09:30:18.000Z (over 5 years ago)
- Last Synced: 2025-01-09T05:18:13.771Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Storm-Multiplier-Topology
This repository consists of a simple Apache Storm Topology DAG with a single Spout and a Single Bolt.

### Spout:
* Producing integers as stream data from 0 to 100 called as `IntegerSpout`
### Bolt:
* Processes the shuffeled grouping based input data from the `IntegerSpout` with a multiplication of 2 called as `MultiplyBolt`
### Topology:
* A directed acyclic graph(DAG) consisting of a single spout source of streaming data and a single bolt for proecessing the data, called as `MainTopology`