作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚开始学习 apache spark,想知道为什么这对我不起作用。
我正在运行 spark 2.1 并启动了一个主人和一个 worker (不是本地的)。这是我的代码:
object SimpleApp {
def main(args: Array[String]) {
val file = [FILELOCATION]
val conf = new SparkConf().setAppName("Simple Application")
val sc = new SparkContext(conf)
val textFile = sc.textFile(file)
val counts = textFile.flatMap(line => line.split(" "))
.map(word => (word.toLowerCase.toCharArray.toList.sorted.mkString, 1))
.reduceByKey(_ + _)
counts.map(println)
counts.foreach(println)
val countCollect = counts.collect()
sc.stop()
}
}
最佳答案
如果你想在 executor 中打印一些东西,一个普通的 println 就可以了。这将在执行程序的标准输出中打印输出
关于scala - 星火集群 : How to print out the content of RDD on each worker node,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43906329/
我是一名优秀的程序员,十分优秀!