Home > Net >  : Application status code: 413 Application status message: The maximum message size quota for outgoi
: Application status code: 413 Application status message: The maximum message size quota for outgoi

Time:02-27

I am using Boomi platform to send message to Azure service bus queue and using premium tier with below snapshot configuration.

When send message size larger than 1mb size , getting message limit error .": Application status code: 413 Application status message: The maximum message size quota for outgoing messages (1114112) has been exceeded. TrackingId:fb7c0a2e-2280-4401-815c-fc33dabba1bc_G2S1, SystemTracker:testasbp:Queue:testq, Timestamp:2022-02-26T16:33:13"

enter image description here

CodePudding user response:

Please check the few steps and references if they can help.

  • Applications are allowed by Service Bus messaging services (queues & topics/subscriptions) to send messages of size up to 256 KB (Standard tier) or 100 MB (premium tier) - You're using the Premium tier!

When you're dealing with larger Service Bus Messages, several approaches discussed like Use Optimal serialization, Use the Claim Check Pattern, Choosing Messaging Service and Persistent store, etc. along with their pros and cons. Please check the blog post reference given in this MS Doc.

  • Though your namespace belongs to Premium, there's a chance that your namespace had a problem with that entity like application has exceeded the maximum number of connections to a namespace so that we get the QuotaExceededException as specified in this MS Doc and given troubleshooting steps like:

When the Quota (Entity Max Size or other Connection etc.) allocated to the Entity has exceeded. Callers should review the error message to determine which of the Quotas has been exceeded and take the necessary action.

- Try to recreate it or use the tracking code you were given to open a support case with Azure.

  • Related