Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.21 KB

event-hubs-amqp-troubleshoot.md

File metadata and controls

34 lines (25 loc) · 2.21 KB
title description ms.topic ms.date
Troubleshoot AMQP errors in Azure Event Hubs | Microsoft Docs
Provides a list of AMQP errors you may receive when using Azure Event Hubs, and cause of those errors.
article
09/20/2021

AMQP errors in Azure Event Hubs

This article provides some of the errors you receive when using AMQP with Azure Event Hubs. They are all standard behaviors of the service. You can avoid them by making send/receive calls on the connection/link, which automatically recreates the connection/link.

Link is closed

You see the following error when the AMQP connection and link are active but no calls (for example, send or receive) are made using the link for 30 minutes. So, the link is closed. The connection is still open.

" AMQP:link: detach-forced: The link 'G2:7223832:user.tenant0.cud_00000000000-0000-0000-0000-00000000000000' is force detached by the broker because of errors occurred in publisher(link164614). Detach origin: AmqpMessagePublisher.IdleTimerExpired: Idle timeout: 00:30:00. TrackingId:00000000000000000000000000000000000000_G2_B3, SystemTracker:mynamespace:Topic:MyTopic, Timestamp: 2/16/2018 11:10:40 PM "

Connection is closed

You see the following error on the AMQP connection when all links in the connection have been closed because there was no activity (idle) and a new link hasn't been created in 5 minutes.

" Error{condition=amqp:connection:forced, description='The connection was inactive for more than the allowed 300000 milliseconds and is closed by container 'LinkTracker'. TrackingId:00000000000000000000000000000000000_G21, SystemTracker:gateway5, Timestamp:2019-03-06T17:32:00', info=null} "

Link isn't created

You see this error when a new AMQP connection is created but a link isn't created within 1 minute of the creation of the AMQP Connection.

" Error{condition=amqp:connection:forced, description='The connection was inactive for more than the allowed 60000 milliseconds and is closed by container 'LinkTracker'. TrackingId:0000000000000000000000000000000000000_G21, SystemTracker:gateway5, Timestamp:2019-03-06T18:41:51', info=null} "

Next steps

To learn more about AMQP, see AMQP 1.0 protocol guide.