以下是代码:
val words = sc.textFile("/Users/kaiyin/IdeaProjects/learnSpark/src/main/resources/eng_words.txt" )
words.take(1000000).foreach(println _)
words.take(150000).groupBy((x: String) => x.head).map {
case (c, iter) => (c, iter.toList.size)
}.foreach {
println _
}
eng_words.txt
是一个包含大约100万个英文单词的文本文件,每行一个。一旦RDD超过150000,groupBy
将因此错误而崩溃:
java.util.NoSuchElementException: next on empty iterator
at scala.collection.Iterator$$anon$2.next(Iterator.scala:39)
at scala.collection.Iterator$$anon$2.next(Iterator.scala:37)
at scala.collection.IndexedSeqLike$Elements.next(IndexedSeqLike.scala:63)
at scala.collection.IterableLike$class.head(IterableLike.scala:107)
at scala.collection.immutable.StringOps.scala$collection$IndexedSeqOptimized$$super$head(StringOps.scala:30)
at scala.collection.IndexedSeqOptimized$class.head(IndexedSeqOptimized.scala:126)
at scala.collection.immutable.StringOps.head(StringOps.scala:30)
at $anon$1$$anonfun$run$1.apply(<console>:23)
at $anon$1$$anonfun$run$1.apply(<console>:23)
at scala.collection.TraversableLike$$anonfun$groupBy$1.apply(TraversableLike.scala:332)
at scala.collection.TraversableLike$$anonfun$groupBy$1.apply(TraversableLike.scala:331)
at scala.collection.IndexedSeqOptimized$class.foreach(IndexedSeqOptimized.scala:33)
at scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:186)
at scala.collection.TraversableLike$class.groupBy(TraversableLike.scala:331)
at scala.collection.mutable.ArrayOps$ofRef.groupBy(ArrayOps.scala:186)
at $anon$1.run(<console>:23)
at Helper.HasRun$class.newRun(HasRun.scala:21)
at $anon$1.newRun(<console>:19)
... 55 elided
出了什么问题?
答案 0 :(得分:3)
在这种特殊情况下,它很可能无法处理空字符串。然而,不要groupBy
,不要致电toList
,不要盲目相信输入结构良好。
head
在空行时会因您看到的错误而失败
groupBy
相同的 groupByKey
要求每个密钥的所有记录都适合执行程序内存。
你在这里有另一个字数:
words
// Make sure that it won't fail on empty string with
// java.util.NoSuchElementException: next on empty iterator
.flatMap(_.headOption)
// Map to pairs and reduce to avoid excessive shuffling and limit memory usage
.map((_, 1))
.reduceByKey(_ + _)