spark RDD 打印元素

最近使用Scala操作Spark,想要输出RDD中相关内容去查找错误。这样就遇到了一个问题:在单机模式下输出了相关的内容,而在集群模式中的操作却没有输出。试过了一些方法,包含idea中调试,Print输出都不好使。实际上在官方文档中已经有了这样的一句话。Printing elements of an RDDPrinting elements of an RDDAnother comm...
摘要由CSDN通过智能技术生成

最近使用Scala操作Spark,想要输出RDD中相关内容去查找错误。
这样就遇到了一个问题:在单机模式下输出了相关的内容,而在集群模式中的操作却没有输出。
试过了一些方法,包含idea中调试,Print输出都不好使。
实际上在官方文档中已经有了这样的一句话。

Printing elements of an RDD

Printing elements of an RDD
Another common idiom is attempting to print out the elements of an RDD using rdd.foreach(println) or rdd.map(println). On a single machine, this will generate the expected output and print all the RDD’s elements. However, in cluster mode, the output to stdout being called by the executors is now writing to the executor’s stdout instead, not the one on the driver, so stdout on the driver won’t show these! To print all elements on the driver, one can use the collect() method to first bring the RDD to the driver node thus: rdd.collect().foreach(println). This can cause the driver to run out of me

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值