Skip to content

Instantly share code, notes, and snippets.

@lakshay-arora
Last active October 14, 2019 07:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lakshay-arora/abdc66984f90a2425fa6480bbd0d2170 to your computer and use it in GitHub Desktop.
Save lakshay-arora/abdc66984f90a2425fa6480bbd0d2170 to your computer and use it in GitHub Desktop.
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