Last active
October 14, 2019 07:10
-
-
Save lakshay-arora/abdc66984f90a2425fa6480bbd0d2170 to your computer and use it in GitHub Desktop.
Lazy Evaluation in Spark Part-1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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