Reputation: 105
We have a web job which uses "Microsoft.Azure.EventHubs.Processor". It started throwing below exceptions all of a sudden after continuously running without any issues more than 1 month. which resulted in CPU blockage. see the graph. We had to restart the web job to bring down the CPU.
Is there a way to handle the above exceptions. We didn't catch these exceptions even though we are handling exceptions in ProcessEventsAsync method. What are we missing here? How can we make sure it won't happen again?
Upvotes: 1
Views: 235
Reputation: 2032
Apparently the node that your web job was running on was out of available ports. Couple things you can do to investigate once you have a new repro:
Upvotes: 1