In the First post we looked at how to load/save an RDD. In this post we shall build upon the example and count number of lines present in RDD. The code can be found at LineCount.java For complete project refer https://github.com/paliwalashish/learning-spark Lets look at the code public static void main(String[] args) { SparkConf sparkConf = […]
Tutorial
[Learning Spark with Examples] File Copy
This post is first in series of Apache Spark examples which I shall use to learn more about Spark. This is a simple File copy example, in which we shall read a source file into RDD and save the RDD without any transformation. The code can be found at here For complete project refer https://github.com/paliwalashish/learning-spark […]