Re: Exiting driver main() method...

2015-05-04 Thread James Carman
to see here, move along. :) On Sat, May 2, 2015 at 2:44 PM Mohammed Guller moham...@glassbeam.com wrote: No, you don’t need to do anything special. Perhaps, your application is getting stuck somewhere? If you can share your code, someone may be able to help. Mohammed *From:* James

Troubling Logging w/Simple Example (spark-1.2.2-bin-hadoop2.4)...

2015-05-04 Thread James Carman
I have the following simple example program: public class SimpleCount { public static void main(String[] args) { final String master = System.getProperty(spark.master, local[*]); System.out.printf(Running job against spark master %s ...%n, master); final SparkConf

Exiting driver main() method...

2015-05-01 Thread James Carman
In all the examples, it seems that the spark application doesn't really do anything special in order to exit. When I run my application, however, the spark-submit script just hangs there at the end. Is there something special I need to do to get that thing to exit normally?