Add JAR files to a Spark job – spark-submit

True… it has been discussed quite a lot. However, there is a lot of ambiguity and some of the answers provided … including duplicating JAR references in the jars/executor/driver configuration or options. The ambiguous and/or omitted details The following ambiguity, unclear, and/or omitted details should be clarified for each option: How ClassPath is affected Driver … Read more

How to stop INFO messages displaying on spark console?

I’d like to stop various messages that are coming on spark shell. I tried to edit the log4j.properties file in order to stop these message. Here are the contents of log4j.properties # Define the root logger with appender file log4j.rootCategory=WARN, console log4j.appender.console=org.apache.log4j.ConsoleAppender log4j.appender.console.target=System.err log4j.appender.console.layout=org.apache.log4j.PatternLayout log4j.appender.console.layout.ConversionPattern=%d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n # Settings to quiet third party … Read more