I've been experimenting with the ISpark extension to IScala 
(https://github.com/tribbloid/ISpark)

Objects created in the REPL are not being loaded correctly on worker nodes, 
leading to a ClassNotFound exception. This does work correctly in spark-shell.

I was curious if anyone has used ISpark and has encountered this issue. Thanks!


Simple example:

In [1]: case class Circle(rad:Float)


In [2]: val rdd = sc.parallelize(1 to 10000).map(i=>Circle(i.toFloat)).take(10)

14/11/11 13:03:35 ERROR TaskResultGetter: Exception while getting task result
com.esotericsoftware.kryo.KryoException: Unable to find class: 
[L$line5.$read$$iwC$$iwC$Circle;


Full trace in my gist: 
https://gist.github.com/benjaminlaird/3e543a9a89fb499a3a14

________________________________________________________

The information contained in this e-mail is confidential and/or proprietary to 
Capital One and/or its affiliates. The information transmitted herewith is 
intended only for use by the individual or entity to which it is addressed.  If 
the reader of this message is not the intended recipient, you are hereby 
notified that any review, retransmission, dissemination, distribution, copying 
or other use of, or taking of any action in reliance upon this information is 
strictly prohibited. If you have received this communication in error, please 
contact the sender and delete the material from your computer.

Reply via email to