You really should show your Spark code then. I think you are mistaking
one of the Spark APIs, and are processing a collection of 1
ArrayBuffer at some point, not an ArrayBuffer.
On Wed, Sep 3, 2014 at 6:42 AM, Deep Pradhan wrote:
> I have a problem here.
> When I run the commands that Rajesh has
I have a problem here.
When I run the commands that Rajesh has suggested in Scala REPL, they work
fine. But, I want to work in a Spark code, where I need to find the number
of elements in an ArrayBuffer. In Spark code, these things are not working.
How should I do that?
On Wed, Sep 3, 2014 at 10:
Hi Deep,
Please find below results of ArrayBuffer in scala REPL
scala> import scala.collection.mutable.ArrayBuffer
import scala.collection.mutable.ArrayBuffer
scala> val a = ArrayBuffer(5,3,1,4)
a: scala.collection.mutable.ArrayBuffer[Int] = ArrayBuffer(5, 3, 1, 4)
scala> a.head
res2: Int = 5