Skip to content

Instantly share code, notes, and snippets.

@ashkrit
Last active January 21, 2019 00:35
Show Gist options
  • Select an option

  • Save ashkrit/30d333bc80cd7e4671391e191248b9a6 to your computer and use it in GitHub Desktop.

Select an option

Save ashkrit/30d333bc80cd7e4671391e191248b9a6 to your computer and use it in GitHub Desktop.
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