Created
March 15, 2019 14:04
-
-
Save corneliouzbett/a940e28b9f29fc447a4b66079f0d57b2 to your computer and use it in GitHub Desktop.
Example of take
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
from pyspark import SparkContext, SparkConf | |
if __name__ == "__main__": | |
conf = SparkConf().setAppName("take").setMaster("local[*]") | |
sc = SparkContext(conf = conf) | |
inputWords = ["spark", "hadoop", "spark", "hive", "pig", "cassandra", "hadoop"] | |
wordRdd = sc.parallelize(inputWords) | |
words = wordRdd.take(3) | |
for word in words: | |
print(word) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is an example code for take function.