Created
May 16, 2017 01:48
-
-
Save dgadiraju/e52371ec2ccd2ca9d89a972e1afa08ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val data = 1 to 1000000 | |
val dataRDD = sc.parallelize(data) | |
dataRDD.reduce((acc, value) => acc + value) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment