Spark.readStream 与 Kafkautils.createDirectStream

发布于 2025-01-12 20:42:47 字数 159 浏览 2 评论 0原文

我想知道是否有人知道这两种语法之间的区别是什么?我知道两者都用于从 Kafka 读取数据,但它们有什么区别?

  1. Spark.readStream.format("kafka")
  2. KafkaUtils.createDirectStream(__)

I was wondering if anyone knew what the difference between the two syntax is? I know both are used to read data from Kafka but what differentiates them?

  1. spark.readStream.format("kafka")
  2. KafkaUtils.createDirectStream(__)

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

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

发布评论

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

评论(1

要走干脆点 2025-01-19 20:42:47

其一,它们是不同依赖项的一部分。

第一个用于结构化流,返回数据帧,被认为是 Spark 的首选 API

第二个用于 RDD Spark 流操作,其中数据可能不具有任何一致性(结构),或者如果您确实想要更直接的访问到 Spark 的较低级别 ConsumerRecord 对象

They are part of different dependencies, for one.

The first is for Structured Streaming, and returns Dataframes, and is considered the preferred API for Spark

The second is for RDD Spark Streaming operations where the data might not have any consistency to it (a structure), or if you did want more direct access to the lower level ConsumerRecord object of Spark

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