Arslan
Arslan

Reputation: 151

Apache Spark and Cassandra Visualization tool

I am working on analytic application using Apache Spark and Cassandra to store and analyze data.

I'd like to visualize that data.

Is there any visualization tool like kibana and Grafana that can be used with Apache Spark and Cassandra?

Upvotes: 3

Views: 3198

Answers (1)

Ram Ghadiyaram
Ram Ghadiyaram

Reputation: 29237

Yes.

Kibana can be used Along with Spark/Casandra : Example here

  • Below combination is also possible.

Spark + Casandra + Solr+Graphana or Spark + Casandra + Elastic+ Kibana

Since Casandra is no sql database(same is true for hbase as well) and you need to index through Solr or ES to use Kibana or Graphana.

  • Zeppelin also good choice for visualization

  • Highcharts is another option you can consider.

Also have a look at 1) https://github.com/knockdata/spark-highcharts
2) apache storm/spark and data visualisation tool(s)

Upvotes: 2

Related Questions