I am using 'pyspark' package to initialize spark context and when I do that, I could see lot of log info displayed. Is there any option / command available to avoid this ?
Code snippet:
from pyspark import SparkContext, SparkConf;
from pyspark.sql import SQLContext;
conf = SparkConf().setAppName("test").setMaster("local")
sc = SparkContext(conf=conf)
Thanks in advance :)