运行 数据块笔记本中的一个单元格 "in continuous"

Run a cell "in continuous" in a databricks notebook

由于 eventhubs 接收器在没有新事件的情况下超时后停止侦听,我想 运行 使用 python 从同一笔记本中的另一个单元格到 azure databricks 笔记本中的特定单元格(段落)。 每次超时后完成时,我都需要 运行 这个单元格。这就像模拟一个连续的 运行ning。

最后,我使用 while True 语句,并在语句中放入我想要的代码 运行。谢谢你们 –

currentMessage = receiver.receive(timeout=600)
while True:
   for event_data in currentMessage:
        .......
        .......
        .......
    currentMessage = receiver.receive(timeout=600)
    print("end processing after timeout")