Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dgadiraju/09b48fb1b274268f0cf707dcb8b8a3ac to your computer and use it in GitHub Desktop.

Select an option

Save dgadiraju/09b48fb1b274268f0cf707dcb8b8a3ac to your computer and use it in GitHub Desktop.
val orderItems = sc.textFile("/public/retail_db/order_items")
val orderItemsMap = orderItems.
map(oi => (oi.split(",")(1).toInt, oi.split(",")(4).toFloat))
orderItemsMap.
take(10).
foreach(println)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment