Skip to content

Instantly share code, notes, and snippets.

@lakshay-arora
Last active October 14, 2019 07:10
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Lazy Evaluation in Spark Part-1
# create a sample list
my_list = [i for i in range(1,10000000)]
# parallelize the data
rdd_0 = sc.parallelize(my_list,3)
rdd_0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment