我正在处理来自Azure存储队列的项的Azure WebJob。我不明白为什么会有严重的信息延迟处理。
JobHostConfiguration config = new JobHostConfiguration();
config.Queues.MaxPollingInterval = TimeSpan.FromSeconds(3);
我看到存储资源管理器在处理延迟时显示此消息:
"Showing 0 of 1 messages in the queue"
"Executing [...] - Reason: 'New queue message detected on 'synctasks'.'"
通常情况下,处理是通过执行我的方法进行的,但在某些情况下,它只是在这里停止,或者需要很长时间。
有什么想法吗?