Terribly new to spark and hive and big data and scala and all. I\'m trying to write a simple function that takes an sqlContext, loads a csv file from s3 and returns a DataFr
With Spark 2.x and the CSV API, use the sep option:
sep
val df = spark.read .option("sep", "\u0001") .csv("path_to_csv_files")