Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

value saveAsTextFile is not a member of Array[Array[String]]

avatar
Rising Star
I'm trying to save my Array in HDFS. For that I've this: array.saveAsTextFile("PATH") but when I submit this I'm getting this error:
  1. error: value saveAsTextFile is not a member of Array[Array[String]] Anyone knows how to solve this? Many thanks!
1 ACCEPTED SOLUTION

avatar

Hi,

What is the exact line of code you have? It let me think that you would like to save the content of your RDD/DF/DS but you are calling this method although you are not manipulating such an object anymore.

View solution in original post

3 REPLIES 3

avatar

Hi,

What is the exact line of code you have? It let me think that you would like to save the content of your RDD/DF/DS but you are calling this method although you are not manipulating such an object anymore.

avatar
Rising Star

I'm trying to return this: val output = vertices.map(_.split(" ")).toArray

avatar

Then I'd try the following:

vertices.map(_.split(" ")).saveAsTextFile("my/hdfs/path/directory")