Hi All,
I wanted to read parqet file compressed by snappy into Spark RDD
input file name is: part-m-00000.snappy.parquet
i have used sqlContext.setConf("spark.sql.parquet.compression.codec.", "snappy")
val inputRDD=sqlContext.parqetFile(args(0))
whe...