Read here:
https://github.com/memsql/memsql-spark-connector
Best Regards
Yash
On Wed, Jul 27, 2016 at 12:54 PM, Subhajit Purkayastha
wrote:
> All,
>
>
>
> Is it possible to integrate spark 1.6.1 with MemSQL Cluster? Any pointers
> on how to start with the project will be appreciated.
>
>
>
> T
Yes, That is correct.
When you call cache on an RDD, internally it calls
persist(StorageLevel.MEMORY_ONLY) which further calls
persist(StorageLevel.MEMORY_ONLY, allowOverride=false) , if the RDD is not
marked for localCheckpointing
Below is what is finally triggered :
/**
* Mark this RDD for p