I am new in Spark/Scala. I know how to load CSV files:
sqlContext.read.format("csv")
and how to read text streams and file streams:
scc.textFileStream("""file:///c:\path\filename""");
scc.fileStream[LongWritable, Text, TextInputFormat](...)
but how to read text stream in CSV format? Thanks, Levi