Re: Shark Table for >22 columns

2014-03-22 Thread Ali Ghodsi
Subacini, the short answer is that we don't really support that yet, but the good news is that I can show you how to work around it. The good thing is that we nowadays internally actually convert the Tuples to Seqs, so we can actually leverage that. The bad thing is that before converting tuples t

Shark Table for >22 columns

2014-03-21 Thread subacini Arunkumar
Hi, I am able to successfully create shark table with 3 columns and 2 rows. val recList = List((" value A1", "value B1","value C1"), ("value A2", "value B2","value c2")); val dbFields =List ("Col A", "Col B","Col C") val rdd = sc.parallelize(recList)