Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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")