Member since
11-02-2018
15
Posts
0
Kudos Received
0
Solutions
04-12-2020
04:24 AM
Yes, I created a new java.security file with required properties and placed in all nodes in local directory.
... View more
04-10-2020
12:06 AM
Hi Jeremy, Thanks for your response. As suggested I build the jar and issue got resolved. Regards, Arvind
... View more
10-24-2019
10:43 PM
The application might be expecting the log folder to be there in order to generate logs in it. Seems like your problem can be solved by creating the folder in the driver node: /some/path/to/edgeNode/ I hope you also know that you have mentioned the log4j file only for driver program. In order for executors to generate logs you may need to specify the following option in spark-submit "spark.executor.extraJavaOptions=-Dlog4j.configuration=driver_log4j.properties"
... View more
06-07-2019
01:01 AM
1 Kudo
As your intent seems to capture the driver logs in a separate file while executing the app in the cluster mode, make sure that '/some/path/to/edgeNode/' dir is present on all of the NodeManager essentially as in cluster mode the driver will be running in the Yarn app's application master. If you can't make sure that follow a general practice to provide log file path to some pre-existing paths e.g. "/var/log/SparkDriver.log".
... View more