Re: Run scala.App on Cluster

2015-06-10 Thread Felix Neutatz
Thanks :) works like a charm. 2015-06-10 22:28 GMT+02:00 Fabian Hueske : > Hi, > > use ./bin/flink run -c your.MainClass yourJar to specify the Main class. > Check the documentation of the CLI client for details. > > Cheers, Fabian > On Jun 10, 2015 22:24, "Felix Neutatz" wrote: > > > Hi, > > >

Re: Run scala.App on Cluster

2015-06-10 Thread Fabian Hueske
Hi, use ./bin/flink run -c your.MainClass yourJar to specify the Main class. Check the documentation of the CLI client for details. Cheers, Fabian On Jun 10, 2015 22:24, "Felix Neutatz" wrote: > Hi, > > I try to run this Scala program: > > https://github.com/FelixNeutatz/wikiTrends/blob/master/

Re: Run scala.App on Cluster

2015-06-10 Thread Andra Lungu
Hi Felix, You need to also specify the path to your main class. For example: ./flink run -p10-v --class org.apache.flink.graph.example.MusicProfiles then jar and arguments -p is the desired degree of parallelism and --class needs to be followed by the path I was talking about, Beast of luck :) A

Run scala.App on Cluster

2015-06-10 Thread Felix Neutatz
Hi, I try to run this Scala program: https://github.com/FelixNeutatz/wikiTrends/blob/master/extraction/src/main/scala/io/sanfran/wikiTrends/extraction/flink/DownloadTopKPages.scala on a cluster. I tried this command: /share/flink/flink-0.9-SNAPSHOT/bin/flink run /home/neutatz/jars/extraction-1.0