java.lang.IllegalStateException: Error reading delta file, spark structured streaming with kafka

前端 未结 1 1238
情歌与酒
情歌与酒 2021-02-11 00:16

I am using Structured Streaming + Kafka for realtime data analytics in our project. I am using Spark 2.2, kafka 0.10.2.

I am facing an issue during streaming query recov

1条回答
  •  攒了一身酷
    2021-02-11 00:56

    What's your checkpoint location? This is usually because you are using the local file system to store checkpoints. Make sure you set the "checkpointLocation" option and it points to a distributed file system (such as HDFS) that can be accessed by all nodes. [1]

    [1] http://spark.apache.org/docs/latest/structured-streaming-programming-guide.html#recovering-from-failures-with-checkpointing

    0 讨论(0)
提交回复
热议问题