All Projects → P7h → Storm Camel Example

P7h / Storm Camel Example

Licence: apache-2.0
Real-time analysis and visualization with Storm-AMQ-Camel-Websockets-Highcharts integration.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Storm Camel Example

Recommendsys
推荐项目(实时推荐和离线推荐)
Stars: ✭ 198 (+607.14%)
Mutual labels:  hadoop, storm
Bigdata Notes
大数据入门指南 ⭐
Stars: ✭ 10,991 (+39153.57%)
Mutual labels:  hadoop, storm
Bigdata Notebook
Stars: ✭ 100 (+257.14%)
Mutual labels:  hadoop, storm
Javaorbigdata Interview
Java开发者或者大数据开发者面试知识点整理
Stars: ✭ 203 (+625%)
Mutual labels:  hadoop, storm
Stormtweetssentimentd3viz
Computes and visualizes the sentiment analysis of tweets of US States in real-time using Storm.
Stars: ✭ 25 (-10.71%)
Mutual labels:  hadoop, storm
xxhadoop
Data Analysis Using Hadoop/Spark/Storm/ElasticSearch/MachineLearning etc. This is My Daily Notes/Code/Demo. Don't fork, Just star !
Stars: ✭ 37 (+32.14%)
Mutual labels:  hadoop, storm
qs-hadoop
大数据生态圈学习
Stars: ✭ 18 (-35.71%)
Mutual labels:  hadoop, storm
hadoop-docker-lite
Docker build project to setup a lightweight hadoop cluster containing hadoop, pig, zookeeper, hbase, phoenix, storm, kafka, kafka manager
Stars: ✭ 24 (-14.29%)
Mutual labels:  hadoop, storm
Bigq
Messaging platform in C# for TCP and Websockets, with or without SSL
Stars: ✭ 18 (-35.71%)
Mutual labels:  websockets
Stl.fusion
Get real-time UI updates in Blazor apps and 10-1000x faster API responses with a novel approach to distributed reactive computing. Fusion brings computed observables and automatic dependency tracking from Knockout.js/MobX/Vue to the next level by enabling a single dependency graph span multiple servers and clients, including Blazor apps running in browser.
Stars: ✭ 858 (+2964.29%)
Mutual labels:  websockets
Construct
JavaScript Digital Organisms simulator
Stars: ✭ 17 (-39.29%)
Mutual labels:  websockets
Floating Elephants
Docker containers for Hadoop.
Stars: ✭ 19 (-32.14%)
Mutual labels:  hadoop
Bigdata Interview
🎯 🌟[大数据面试题]分享自己在网络上收集的大数据相关的面试题以及自己的答案总结.目前包含Hadoop/Hive/Spark/Flink/Hbase/Kafka/Zookeeper框架的面试题知识总结
Stars: ✭ 857 (+2960.71%)
Mutual labels:  hadoop
Jetsonjs
Embed a JavaScript/WebGL application on a Nvidia Jetson TX2 and stream the results through websockets. It does not rely on CUDA/Jetpack. HDMI touchscreen, virtual keyboard, GPIO control, wifi config are included.
Stars: ✭ 18 (-35.71%)
Mutual labels:  websockets
Chartkit
Angular + Highcharts Integration
Stars: ✭ 13 (-53.57%)
Mutual labels:  highcharts
React Highcharts Example
Simple create-react-app with highcharts example
Stars: ✭ 16 (-42.86%)
Mutual labels:  highcharts
Highcharts More
Universal highcharts-more module for the popular JavaScript charting framework Highcharts
Stars: ✭ 7 (-75%)
Mutual labels:  highcharts
Interview Questions Collection
按知识领域整理面试题,包括C++、Java、Hadoop、机器学习等
Stars: ✭ 21 (-25%)
Mutual labels:  hadoop
Cdc Kafka Hadoop
MySQL to NoSQL real time dataflow
Stars: ✭ 13 (-53.57%)
Mutual labels:  hadoop
Dockerfiles
50+ DockerHub public images for Docker & Kubernetes - Hadoop, Kafka, ZooKeeper, HBase, Cassandra, Solr, SolrCloud, Presto, Apache Drill, Nifi, Spark, Consul, Riak, TeamCity and DevOps tools built on the major Linux distros: Alpine, CentOS, Debian, Fedora, Ubuntu
Stars: ✭ 847 (+2925%)
Mutual labels:  hadoop

Real-time analysis and Viz with Storm-Camel-Highcharts


You might also be interested in checking out extension of this repo for Twitter sentiment of states of US using D3.js Choropleth Map and Highcharts Columncharts on StormTweetsSentimentD3Viz and also a similar project for UK Twitter Sentiment on StormTweetsSentimentD3UKViz.

Introduction

This repository contains an application for demonstrating Apache Storm distributed framework by counting the names of the companies fed randomly by the code [in the Spout] in real-time.
This project also visualizes the output in real-time using Queues, Websockets and Highcharts.

Apache Storm is an open source distributed real-time computation system, developed at BackType by Nathan Marz and team. It has been open sourced by Twitter [post BackType acquisition] in August, 2011. And became a top level project in Apache on 29th September, 2014.
This application has been developed and tested with Storm v0.8.2 on Windows 7 in local mode; and was eventually updated and tested with Storm v0.9.3 on 04th January, 2015. Application may or may not work with earlier or later versions than Storm v0.9.3.

The initial version of this application was actually forked and later updated further from Robin van Breukelen's storm-camel-example project.

Features

  • Application receives a random company name from a Spout every 200 milliseconds.
  • Bolt counts frequency of the each company name passed on from the Spout.
  • This frequency is written to ActiveMQ using a JMSBolt.
  • Camel is used to read these tuples from ActiveMQ and also write to a WebSocket.
  • A pure HTML5 front-end reads from the above Websocket and visualizes the output in a Bar chart using Highcharts and updates the chart in real-time to reflect the latest count provided by the Bolt.
  • This project has also been made compatible with both Eclipse IDE and IntelliJ IDEA.
    • Import the project in your favorite IDE and you can quickly follow the code.
  • As of today, this codebase has almost no or very less comments.

Demo

GIF of visualization

Screenshot of visualization

Dependencies

  • Storm v0.9.3
  • Camel v2.14.1
  • ActiveMQ v5.10.0
  • Spring v4.1.3.RELEASE
  • xbean v4.1

Also, please check pom.xml for complete information on the various dependencies of the project.

Requirements

You need the following on your machine:

  • Oracle JDK >= 1.8.x
  • Apache Maven >= 3.2.3
  • Clone this repo and import as an existing Maven project to either Eclipse IDE or IntelliJ IDEA.
    • Please enable / download Maven Plugin in the IDE.

Usage

To build and run this topology, you must use Java 1.8.

Local Mode:

Local mode can also be run on Windows environment using either IntelliJ IDEA or Eclipse IDE.
Note: Please be sure to clean your temp folder as it adds lot of temporary files in every run.

  • Launch your favorite IDE and execute Runner.java.
  • All the required frameworks and libraries are downloaded by Maven as required in the above import process in the IDE.
    • If not, please execute mvn clean compile command once at the root of this repo.
  • Launch a browser [preferably Google Chrome] and open index.html
    • Click on "Start Viz" button to trigger the initialization.
    • You can stop the visualization at any time by clicking on "Stop Viz" button.
  • This chart updates every second and displays real-time visualization of the words processed by the Bolts.

Remote Mode:

TBA.

Problems

If you find any issues, please report them either raising an issue here on Github or alert me on my Twitter handle @P7h. Or even better, please send a pull request.
Appreciate your help. Thanks!

License

Copyright © 2013-2015 Robin van Breukelen and Prashanth Babu.
Licensed under the Apache License, Version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].