What are the ways to create RDDs in Apache Spark? Explain.
Answer Posted / Dibya Prakash Tiwari
{"ways":[n "parallelize": creates an RDD from a local collection of data with specified parallelism.n "textFile": reads lines of text from one or more files located on HDFS or any Hadoop compatible file system.n "wholeTextFiles": reads whole content of zero or more files located on HDFS or any Hadoop compatible file system as a single RDD of (filename, content) pairs.n ]}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers