Spark StreamingContext

发布于 2025-01-16 00:54:06 字数 190 浏览 1 评论 0原文

我在运行 Spark Streaming 时遇到问题。有人可以帮我吗?

Spark Streaming错误

I have a problem running Spark Streaming. Can someone please help me below?

Spark Streaming Error

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自在安然 2025-01-23 00:54:06

由于您正在使用 /Filestore,我相信您正在使用 databricks。
下面的代码将帮助您启动 Spark 流上下文。

如果您使用的是 databricks,请清除所有状态并运行以下代码。

from pyspark import SparkContext
from pyspark.streaming import StreamingContext
ssc = StreamingContext(spark.sparkContext, 1)
dstream = ssc.textFileStream("<Folder/File location")
dstream.saveAsTextFiles("<Destination folder/file location")
ssc.start()
ssc.awaitTermination()

我建议您开始使用 Spark 结构化流,而不是使用标准流选项。

https://spark.apache.org/docs/latest/结构化流编程指南.html

Since you are using /Filestore, I believe you are using databricks.
Below code would help you to start a spark streaming context.

If you are using databricks, clear all the states and run the below code.

from pyspark import SparkContext
from pyspark.streaming import StreamingContext
ssc = StreamingContext(spark.sparkContext, 1)
dstream = ssc.textFileStream("<Folder/File location")
dstream.saveAsTextFiles("<Destination folder/file location")
ssc.start()
ssc.awaitTermination()

I would suggest you to start using spark structured streaming, instead of using standard streaming option.

https://spark.apache.org/docs/latest/structured-streaming-programming-guide.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文