Re: RDD memory questions

2014-09-12 Thread Boxian Dong
Thank you very much for your help :) -- View this message in context: http://apache-spark-user-list.1001560.n3.nabble.com/RDD-memory-questions-tp13805p14069.html Sent from the Apache Spark User List mailing list archive at Nabble.com.

Re: RDD memory questions

2014-09-10 Thread Boxian Dong
Thank you very much for your kindly help. I rise some another questions: - If the RDD is stored in serialized format, is that means that whenever the RDD is processed, it will be unpacked and packed again from and back to the JVM even they are located on the same machine?

RDD memory questions

2014-09-09 Thread Boxian Dong
I currently working on a machine learning project, which require the RDDs' content to be (mostly partially) updated during each iteration. Because the program will be converted directly from traditional python object-oriented code, the content of the RDD will be modified in the mapping function.