Spark using Python : save RDD output into text files
since you collected results=sortedwordsCount.collect()
so, its not RDD. It will be normal python list or tuple.
As you know list
is python object/data structure and append
is method to add element.
>>> x = []
>>> x.append(5)
>>> x
[5]
Similarly
RDD
is sparks object/data structure andsaveAsTextFile
is method to write the file. Important thing is its distributed data structure.
So, we cannot use append
on RDD or saveAsTextFile
on list. collect
is method on RDD to get to RDD to driver memory.
As mentioned in comments, save sortedwordsCount
with saveAsTextFile or open file in python and use results
to write in a file