gpt4 book ai didi

python - 使用 python azure 事件中心中的事件

转载 作者:行者123 更新时间:2023-12-03 01:29:30 27 4
gpt4 key购买 nike

我正在事件中心接收 JSON 数据。

每天一次,我想从事件中心读取此数据并将其存储在数据库中。为了从事件中心读取数据,我遵循此文档:https://learn.microsoft.com/en-us/python/api/overview/azure/eventhub-readme?view=azure-python

我能够打印事件中心中的所有事件,但我不知道如何获取这些事件并在此函数之外返回 pandas 数据帧。

我已经尝试过这个:


def on_event_batch(partition_context, events):
final_dataframe = pd.DataFrame()
print("Received event from partition {}".format(partition_context.partition_id))
for event in events:

body = json.loads(next(event.body).decode('UTF-8'))
event_df = pd.DataFrame(body,index = [0])
final_dataframe = pd.concat([final_dataframe,event_df],ignore_index= True)
partition_context.update_checkpoint()
client.close()
print(final_dataframe)
return final_dataframe

with client:
final_dataframe = client.receive_batch(
on_event_batch=on_event_batch,
starting_position="-1", # "-1" is from the beginning of the partition.
)

# receive events from specified partition:
# client.receive_batch(on_event_batch=on_event_batch, partition_id='0')

但它不起作用。

最佳答案

client.receive_batch(on_event_batch=on_event_batch, partition_id='0')返回类型为 None。我不确定您是否能够通过在回调函数中返回来实现此目的。

但是,我认为更简单的方法如下

from azure.eventhub import EventHubConsumerClient
import pandas as pd
import json



def get_messages() :
connection_str = '<YOUR CONNECTION STRING>'
consumer_group = '<YOUR CONSUMER GROUP>'
eventhub_name = '<YOUR EVENT HUB>'
client = EventHubConsumerClient.from_connection_string(connection_str, consumer_group, eventhub_name=eventhub_name)

final_df = pd.DataFrame()
def on_event_batch(partition_context, events):
print("Received event from partition {}".format(partition_context.partition_id))
print(len(events))
#Checking whether there is any event returned as we have set max_wait_time
if(len(events) == 0):
#closing the client if there is no event triggered.
client.close()

else:

for event in events:
#Event.body operation
body=event.body
event_df = pd.DataFrame(body,index = [0])
nonlocal final_df
final_df = pd.concat([final_df,event_df],ignore_index= True)
partition_context.update_checkpoint()

with client:
client.receive_batch(
on_event_batch=on_event_batch,
starting_position="-1",max_wait_time = 5,max_batch_size=2 # "-1" is from the beginning of the partition.
#Max_wait_time - no activitiy for that much - call back function is called with No events.
)
return final_df


df = get_messages()
df.head()

上面的代码实际上会在正常退出后将值设置为数据帧df

enter image description here

关于python - 使用 python azure 事件中心中的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63638455/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com