Member since
11-28-2017
3
Posts
0
Kudos Received
0
Solutions
12-30-2020
05:47 PM
Hi, When I am rejected, I will first check if I have logged into the Oracle website. Then, I will log in to my registered email address. Then search for cloudera, cloudera will automatically log in to the "My Account Home" page. You can try to see if this can help you.
... View more
12-08-2017
06:41 AM
1 Kudo
This is the order of precedence for configurations that Spark will use:
- Properties set on SparkConf or SparkContext in code
- Arguments passed to spark-submit, spark-shell, or pyspark at run time
- Properties set in /etc/spark/conf/spark-defaults.conf, a specified properties file or in Cloudera Manager safety valve
- Environment variables exported or set in scripts
* For properties that apply to all jobs, use spark-defaults.conf, for properties that are constant and specific to a single or a few applications use SparkConf or --properties-file, for properties that change between runs use command line arguments.
... View more