RE: Publishing streaming results to web interface

2015-01-03 Thread Silvio Fiorito
Is this through a streaming app? I've done this before by publishing results 
out to a queue our message bus, with a web app listening on the other end. If 
it's just batch or infrequent you could save the results out to a file.

From: tfriskmailto:tfris...@gmail.com
Sent: ‎1/‎2/‎2015 5:47 PM
To: user@spark.apache.orgmailto:user@spark.apache.org
Subject: Publishing streaming results to web interface


Hi,

New to spark so just feeling my way in using it on a standalone server under
linux.

I'm using scala to store running count totals of certain tokens in my
streaming data and publishing a top 10 list.
eg
(TokenX,count)
(TokenY,count)
..

At the moment this is just being printed to std out using print() but I want
to be able to view these running counts from a web page - but not sure where
to start with this.

Can anyone advise or point me to examples of how this might be achieved ?

Many Thanks,

Thomas




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Publishing-streaming-results-to-web-interface-tp20948.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



Publishing streaming results to web interface

2015-01-02 Thread tfrisk

Hi,

New to spark so just feeling my way in using it on a standalone server under
linux.

I'm using scala to store running count totals of certain tokens in my
streaming data and publishing a top 10 list.
eg
(TokenX,count)
(TokenY,count)
..

At the moment this is just being printed to std out using print() but I want
to be able to view these running counts from a web page - but not sure where
to start with this.

Can anyone advise or point me to examples of how this might be achieved ?

Many Thanks,

Thomas




--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Publishing-streaming-results-to-web-interface-tp20948.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org



Re: Publishing streaming results to web interface

2015-01-02 Thread Sathish Kumaran Vairavelu
Try and see if this helps. http://zeppelin-project.org/

-Sathish


On Fri Jan 02 2015 at 8:20:54 PM Pankaj Narang pankajnaran...@gmail.com
wrote:

 Thomus,

 Spark does not provide any web interface directly. There might be third
 party apps providing dashboards
 but I am not aware of any for the same purpose.

 *You can use some methods so that this data is saved on file system instead
 of being printed on screen

 Some of the methods you can use ON RDD are saveAsObjectFile, saveAsFile
 *


 Now you can read these files to show them on web interface in  any language
 of your choice

 Regards
 Pankaj






 --
 View this message in context: http://apache-spark-user-list.
 1001560.n3.nabble.com/Publishing-streaming-results-to-web-interface-
 tp20948p20949.html
 Sent from the Apache Spark User List mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
 For additional commands, e-mail: user-h...@spark.apache.org




Re: Publishing streaming results to web interface

2015-01-02 Thread Pankaj Narang
Thomus,

Spark does not provide any web interface directly. There might be third
party apps providing dashboards
but I am not aware of any for the same purpose.

*You can use some methods so that this data is saved on file system instead
of being printed on screen

Some of the methods you can use ON RDD are saveAsObjectFile, saveAsFile
*


Now you can read these files to show them on web interface in  any language
of your choice

Regards
Pankaj






--
View this message in context: 
http://apache-spark-user-list.1001560.n3.nabble.com/Publishing-streaming-results-to-web-interface-tp20948p20949.html
Sent from the Apache Spark User List mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org
For additional commands, e-mail: user-h...@spark.apache.org