Failed to find Spark examples assembly... error message

2014-02-10 Thread David Swearingen
I'm running 0.9.0 and attempting to try the example described here: https://spark.incubator.apache.org/docs/0.9.0/streaming-programming-guide.html#a-quick-example ./bin/run-example org.apache.spark.streaming.examples.JavaNetworkWordCount local[2] localhost But get the error:

Re: Failed to find Spark examples assembly... error message

2014-02-10 Thread Mark Hamstra
Is the assembly jar actually missing, or is the script somehow looking in the wrong place? Check /home/centrifuge/spark-0.9.0-incubating-bin-hadoop1/examples/target/scala-2.10. If the examples-assembly jar is not there, then either `./sbt/sbt assembly` or `./sbt/sbt examples/assembly` should

Re: Failed to find Spark examples assembly... error message

2014-02-10 Thread David Swearingen
The file examples-assembly is not there. I ran 'sbt/sbt examples assembly' and that didn't change anything. Note that the shell script is complaining about binary operator expected but I'm not positive that's a cause or a result for some other problem. Here's what's in the directory: ls

Re: Failed to find Spark examples assembly... error message

2014-02-10 Thread Mark Hamstra
Blow away the examples/target directory, then do `./sbt/sbt examples/assembly` -- you've got two assembly jars where there should be only one in target/scala-2.10: spark-examples-assembly-0.9.0-incubating.jar On Mon, Feb 10, 2014 at 10:06 AM, David Swearingen dswearin...@centrifugesystems.com