컬렉션의 내용을 Spark 콘솔에 인쇄하려고합니다.
나는 유형이 있습니다 :
linesWithSessionId: org.apache.spark.rdd.RDD[String] = FilteredRDD[3]
그리고 다음 명령을 사용합니다.
scala> linesWithSessionId.map(line => println(line))
그러나 이것은 인쇄됩니다.
res1 : org.apache.spark.rdd.RDD [Unit] = MappedRDD [4] at map at : 19
RDD를 콘솔에 쓰거나 내용을 볼 수 있도록 디스크에 저장하려면 어떻게해야합니까?
show
메서드 를 사용해야합니다 .