Re: Windows - Spark 2 - Standalone - Worker not able to connect to Master

2016-08-01 Thread Nikolay Zhebet
Your exception says, that you have connection trouble with Spark master. Check if it is available from your environment where you trying to run job. In Linux system for this can be suitable this commands: "telnet 127.0.0.1 7077" or "netstat -ntpl | grep 7077" or "nmap 127.0.0.1 | grep 7077".

Re: Windows - Spark 2 - Standalone - Worker not able to connect to Master

2016-08-01 Thread ayan guha
No I confirmed master is running by spark ui at localhost:8080 On 1 Aug 2016 18:22, "Nikolay Zhebet" wrote: > I think you haven't run spark master yet, or maybe port 7077 is not yours > default port for spark master. > > 2016-08-01 4:24 GMT+03:00 ayan guha

Re: Windows - Spark 2 - Standalone - Worker not able to connect to Master

2016-08-01 Thread Nikolay Zhebet
I think you haven't run spark master yet, or maybe port 7077 is not yours default port for spark master. 2016-08-01 4:24 GMT+03:00 ayan guha : > Hi > > I just downloaded Spark 2.0 on my windows 7 to check it out. However, not > able to set up a standalone cluster: > > > Step

Windows - Spark 2 - Standalone - Worker not able to connect to Master

2016-07-31 Thread ayan guha
Hi I just downloaded Spark 2.0 on my windows 7 to check it out. However, not able to set up a standalone cluster: Step 1: master set up (Successful) bin/spark-class org.apache.spark.deploy.master.Master It did throw an error about not able to find winutils, but started successfully. Step II: