我在WebJob中运行了一个EventHub接收器。
我们目前处于BASIC层,因此我们仅限于1个消费者群体。
我正在寻找一个调试工具,可以让我查询EventHub流,而不会影响正在运行的WebJob。
我尝试了Azure Service Bus Explorer,但它提供了这个例外:
Exception: A receiver with a higher epoch '14' already exists. A new receiver with epoch 0 cannot be created.
Make sure you are creating receiver with increasing epoch value to ensure connectivity, or ensure all old epoch receivers are closed or disconnected.
使用不同的消费者群体解决了这个问题,但正如我所说,如果可能的话,我想继续使用BASIC层。