作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
没有现成的解决方案可以将数据从一个 Azure EventHub 克隆到另一个 EventHub。有哪些可能的选择来实现这一目标?
最佳答案
复制 Azure EventHub 流的一个简单选项是在 PySpark 中编写克隆作业。您只需从源 Eventhub 中读取流,选择正文,如果与您的场景相关,还可以选择源流数据帧中的属性,然后将此流写入您的目标-事件中心:
df = spark \
.readStream \
.format("eventhubs") \
.options(**ehSource) \
.load() \
.select ("properties", "body") \
.writeStream \
.format("eventhubs") \
.options(**ehTarget) \
.option("checkpointLocation", checkploc) \
.start()
关于azure - 如何将数据从一个 Azure EventHub 复制到另一个 Azure EventHub?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59197829/
我是一名优秀的程序员,十分优秀!