顾名思义,我希望在Power BI中看到实时数据。我已经构建了管道,直到我处理数据的火花流,现在我想进入Power BI。最好使用Python。
现在根据我的理解,可能会有不同的方式,如下所述。
我的目标是减少潜伏期。
非常感谢任何帮助。
答案 0 :(得分:1)
这可能不是最好的方法。我认为最好的方法是编写自己的structured streaming integration。但是,您可以使用PubNub。以下是一些 Python 代码,用于在PubNub频道上发布仪表板数据。
import requests
def publishRecord(record):
requests.get('http://pubsub.pubnub.com/publish/publish_key_here/subscribe_key_here/0/pubnub_channel_name/0/' + str(record))
rdd.foreach(publishRecord)
您可以使用 TypeScript 在信息中心订阅此同一频道。