skip to Main Content

I’m building a service which connects to the MQTT broker service in Azure Event Grid.

It was connecting ok, but now I’ve started getting a QuotaExceeded response/exception when I try to connect a client for publishing. (I’m using MQTTNet, using Entra JWT authentication)

enter image description here

Nobody else is using it and the usage so far is minimal:
enter image description here

I tried increasing the the throughput units, but that changed nothing.

I’ve checked the quota limits outlined here and fail to see how I could be exceeding any of them.

2

Answers


  1. Chosen as BEST ANSWER

    Although I don't understand the cause of the issue, changing the client id / user served as a workaround


  2. I was having a similar issue, for me the problem is that I set up 1 session per 1 client. When I first tested with Mqtt Explorer everything worked, later that I tested from mqttnet with the same client authentication name (username) but different clientID (session-identifier) and that error happened even though I had disconnected session from mqtt explorer already. I had to wait for a while then it worked again.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search