Last active
January 21, 2019 00:35
-
-
Save ashkrit/30d333bc80cd7e4671391e191248b9a6 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 total = randomNumbers.mapPartitions(data => { | |
| val by2 = data.map(x => { | |
| log_.info("Processing {}", x) | |
| x * 2 | |
| }) | |
| by2 | |
| }).sum() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment