Created
September 24, 2018 00:20
-
-
Save ashkrit/355b86a169e0e93fc463082d0ae89037 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 topXNumbers = randomNumbers | |
| .filter(_ > 1000) //Stage 1 | |
| .map(value => (value, 1)) // Stage 1 | |
| .groupByKey() //Stage 2 | |
| .map(value => (value._1, value._2.sum)) //Stage 2 | |
| .sortBy(_._2, false) //Stage 3 | |
| .count() // Stage 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment