我有两台机器的火花簇,当我运行火花流应用程序时,我收到以下错误:
Exception in thread "main" org.apache.spark.SparkException: Checkpoint RDD ReliableCheckpointRDD[11] at print at StatefulNetworkWordCount.scala:78(1) has different number of partitions from original RDD MapPartitionsRDD[10] at updateStateByKey at StatefulNetworkWordCount.scala:76(2)
at org.apache.spark.rdd.ReliableRDDCheckpointData.doCheckpoint(ReliableRDDCheckpointData.scala:73)
at org.apache.spark.rdd.RDDCheckpointData.checkpoint(RDDCheckpointData.scala:74)
如何在不是HDFS / Cassandra /任何其他数据存储的文件系统上提供检查点目录?
我想到了两种可能的解决方案,但我不知道如何对它们进行编码:
有一个远程目录,对于两个工作人员来说都是本地的
指定两个工作人员的远程目录
有什么建议吗?
答案 0 :(得分:2)
好的,所以我能够继续第一个选项。
我在所有工作人员上安装了一个远程目录作为检查点,它运行良好。
How to mount the remote checkpoint directory on the workers:
sudo apt-get install sshfs
Load it to kernel
sudo modprobe fuse
sudo adduser username fuse
mkdir ~/checkpoint
sshfs ubuntu@xx.xx.x.xx:/home/ubuntu/checkpoint ~/checkpoint