Skip to content

Latest commit

 

History

History

special

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Special/Advanced RDD Examples

File What's Illustrated
CustomPartitioner.scala How to take control of the partitioning of an RDD.
HashJoin.scala How to use the well known Hash Join algorithm to join two RDDs where one is small enough to entirely fit in the memory of each partition. See also this question on StackOverflow
PairRDD.scala How to operate on RDDs in which the underlying elements are pairs.
Range.scala Simple creation of RDDs containing a range of values.