Re: [spark connect] unable to utilize stand alone cluster

2024-08-06 Thread Prabodh Agarwal
; Elango > > > On Tue, 6 Aug 2024 at 6:08 PM, Prabodh Agarwal > wrote: > >> Do you get some error on passing the master option to your spark connect >> command? >> >> On Tue, 6 Aug, 2024, 15:36 Ilango, wrote: >> >>> >>> >>> &g

Re: [spark connect] unable to utilize stand alone cluster

2024-08-06 Thread Prabodh Agarwal
> > > This is my spark connect connection > > > > spark = SparkSession.builder\ > > .remote("sc://:15002")\ > > .getOrCreate() > > > Thanks, > Elango > > > On Tue, 6 Aug 2024 at 5:45 PM, Prabodh Agarwal > wrote: > >>

Re: [spark connect] unable to utilize stand alone cluster

2024-08-06 Thread Prabodh Agarwal
There is an executors tab on spark connect. It's contents are generally similar to the workers section of the spark master ui. You might need to specify --master option in your spark connect command if you haven't done so yet. On Tue, 6 Aug, 2024, 14:19 Ilango, wrote: > > Hi all, > > I am

Re: [Spark Connect] connection issue

2024-07-29 Thread Prabodh Agarwal
lp. > > > > Thanks, > Elango > > > On Tue, 30 Jul 2024 at 11:05 AM, Prabodh Agarwal > wrote: > >> Yeah. I understand the problem. One of the ways is to actually place the >> spark connect jar in the $SPARK_HOME/jars folder. That is how we run spark >&g

Re: [Spark Connect] connection issue

2024-07-29 Thread Prabodh Agarwal
.deploy.SparkSubmit.doRunMain$1(SparkSubmit.scala:194) > > at > org.apache.spark.deploy.SparkSubmit.submit(SparkSubmit.scala:217) > > at > org.apache.spark.deploy.SparkSubmit.doSubmit(SparkSubmit.scala:91) > > at > org.apache.spark.deploy.Spa

Re: [Spark Connect] connection issue

2024-07-29 Thread Prabodh Agarwal
The spark connect startup prints the log location. Is that not feasible for you? For me log comes to $SPARK_HOME/logs On Mon, 29 Jul, 2024, 15:30 Ilango, wrote: > > Hi all, > > > I am facing issues with a Spark Connect application running on a Spark > standalone cluster (without YARN and HDFS).

running snowflake query using spark connect on a standalone cluster

2024-07-07 Thread Prabodh Agarwal
I have configured a spark standalone cluster as follows: ``` # start spark master $SPARK_HOME/sbin/start-master.sh # start 2 spark workers SPARK_WORKER_INSTANCES=2 $SPARK_HOME/sbin/start-worker.sh spark://localhost:7077 # start spark connect $SPARK_HOME/sbin/start-connect-server.sh