spark-submit Questions
4
Solved
I'm connected to the cluster using ssh and I send the program to the cluster using
spark-submit --master yarn myProgram.py
I want to save the result in a text file and I tried using the followi...
Mitigate asked 15/12, 2017 at 9:1
1
Solved
I have recently found a way to use logback instead of log4j in Apache Spark (both for local use and spark-submit). However, there is last piece missing.
The issue is that Spark tries very hard not ...
Overspend asked 3/8, 2017 at 17:17
1
build.sbt
lazy val commonSettings = Seq(
organization := "com.me",
version := "0.1.0",
scalaVersion := "2.11.0"
)
lazy val counter = (project in file("counter")).
settings(commonSettings:_*)
...
Lobbyism asked 21/6, 2017 at 19:7
1
Solved
When I submit spark job using spark-submit with master yarn and deploy-mode cluster, it doesn't print/return any applicationId and once job is completed I have to manually check MapReduce jobHistor...
Fahrenheit asked 26/5, 2017 at 20:10
1
I am currently running spark 2.1.0. I have worked most of the time in PYSPARK shell, but I need to spark-submit a python file(similar to spark-submit jar in java) . How do you do that in python?
Overplus asked 23/3, 2017 at 11:0
1
Solved
We want to set the aws parameters that from code would be done via the SparkContext:
sc.hadoopConfiguration.set("fs.s3a.access.key", vault.user)
sc.hadoopConfiguration.set("fs.s3a.secret.key", vau...
Narrative asked 14/3, 2017 at 21:7
2
I am beginner to Spark and I am running my application to read 14KB data from text filed, do some transformations and actions(collect, collectAsMap) and save data to Database
I am running it local...
Alexandraalexandre asked 14/1, 2017 at 0:59
1
Solved
My spark application depends on adam_2.11-0.20.0.jar, every time I have to package my application with adam_2.11-0.20.0.jar as a fat jar to submit to spark.
for example, my fat jar is myApp1-adam_...
Douce asked 25/11, 2016 at 2:19
2
In my Application, i need to connect to the database so i need to pass IP address and database name when application is submitted.
I submit the application as follows: :
./spark-submit --class cl...
Underlinen asked 3/3, 2016 at 21:52
© 2022 - 2024 — McMap. All rights reserved.