Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dgadiraju/682ce8973075f042667b64426b0cc0b2 to your computer and use it in GitHub Desktop.
Save dgadiraju/682ce8973075f042667b64426b0cc0b2 to your computer and use it in GitHub Desktop.
val orders = sc.textFile("/public/retail_db/orders")
val ordersMap = orders.
map(o => (o.split(",")(1), 1))
ordersMap.
countByKey.
take(10).
foreach(println)
val orders = sc.textFile("/public/retail_db/orders")
val ordersMap = orders.
map(o => (o.split(",")(3), 1))
ordersMap.
countByKey.
take(10).
foreach(println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment