3,878 questions
0
votes
0
answers
29
views
Azure Service Bus message silently fails when i send to queue
I have a listener that processes a message from a queue and then sends it to my response queue.
It seems to not through any errors, but the second message seem to silently fail because it never goes ...
Best practices
1
vote
3
replies
65
views
.NET - Messaging - Where to place shared contracts
I have a question about sharing contracts between services using a message broker (more specifically, Azure Service Bus). I searched for it in various articles and asked a chatbot, but I didn't get a ...
0
votes
1
answer
36
views
azure service bus message not getting deleted from queue after triggering container app job and im not able to read message paylaod
I’ve set up an Azure Container Apps Job that is triggered by an Azure Service Bus queue. The job runs successfully each time a message is pushed to the queue, however the message is not removed from ...
2
votes
0
answers
101
views
Wolverine servicebus: dynamically create tenants
We recently decided to move from MassTransit to Wolverine for sending messages using Azure Service Bus. However, we’ve run into some issues with our multi-tenant setup.
Our setup looks as follows:
...
0
votes
1
answer
173
views
Azure Function App (Isolated) with Service Bus + Managed Identity → Getting 401 Unauthorized
We’re trying to connect an Azure Function App (Isolated process) to an Azure Service Bus Queue using a Managed Identity, but we’re constantly hitting a error when function start.
Setup
Function App (....
-1
votes
1
answer
53
views
Re-send dead letter message in Azure Bus [closed]
I have a topic with many subscribers (A, B, C). One of this (ex. B) failed to process a message and now, message is in dead letter for that subscriber.
Fixed the problem, i need to reprocess this ...
0
votes
0
answers
54
views
Spring JMS Listener lose connection with Azure Service Bus
I have a Spring Boot 3.4.6 application with a JmsListener annotated method which receive messages from a Azure Service Bus topic.
Randomly, the connection is lost between the application and Azure ...
0
votes
0
answers
142
views
Azure Service Bus Queue, Retry Policy, New Messages are On Hold
I have a service bus queue and a function app which takes message form the queue. I use postman to send messages into the queue.
Function app is written in Python with the following retry policy
@app....
0
votes
0
answers
67
views
Azure Service Bus Topic timeout and no changes allowed
Azure Service Bus
Created: Friday, August 30, 2024
Pricing tier: Premium
Zone Redundancy: Enabled
The topic has been working for multiple months at this point and today (13 May 2025, around 11:30 ...
0
votes
1
answer
127
views
Azure Service Bus Trigger function failing unable to allocate handlers
I'm developing an Azure Service Bus trigger function with MassTransit, and I'm getting the following error messages when the bus is injected with about 10K messages in a short time (~5 mins).
The ...
0
votes
1
answer
113
views
.NET & Mass Transit - How to process messages in DLQ
I have an application in .NET and I use Mass Transit. In Azure I am running Azure Service Bus.
The following situation is happening to me. It happens that I get an exception in the consumer, for ...
0
votes
1
answer
53
views
How to use maxConcurrentCallsPerSession in Python Host.json
I have an application where I want to process 3 messages per session using Azure Service Bus and I have used service_bus_queue_trigger in my function_app.py file to process the file. I have done some ...
1
vote
1
answer
578
views
Unable to Connect to Azure Service Bus Emulator in Docker from C# (404 Error)
I’m trying to connect to the Azure Service Bus emulator running in a Docker container. The container is up and running successfully, and the logs indicate everything is fine. I’ve verified that I can ...
0
votes
2
answers
168
views
Durable Function with Service Bus: Messages Sometimes Not Processed by My Function App, Yet Logic Still Runs
My Function App is using Azure Durable Functions triggered by Service Bus to process scheduled messages.
Sometimes, these messages aren't being received by my Function App but the messages disappear ...
0
votes
1
answer
73
views
How to consume multiple/all messages from a topic subscription?
I have an On-Premise Data Gateway that will send data to an on-prem SQL DB via Logic App, received from the Service Bus.
I've got a Logic App that is currently triggering on When a message is received ...
4
votes
1
answer
700
views
Function App ServiceBusTrigger with Service Bus Emulator locally
I have the service bus emulator running in a docker container. I'm able to send messages to this service bus successfully using code, but I'm unable to get function app service bus triggers to work. ...
0
votes
1
answer
119
views
Azure Service Bus Consumer Cannot Find Topic while Successful Publishing to the same topic
Description:
I am working on an Azure Service Bus implementation where I can successfully publish messages to a topic, but my consumer is unable to find the topic and throws a MessagingEntityNotFound ...
0
votes
0
answers
86
views
Azure Service Bus monitor the 5000 active connections limit
When trying to monitor the active connections limit (5000), we tried looking into the ActiveConnections metric on the azure portal. But it doesn't seem to make any sense at all.
If we set it to ...
0
votes
0
answers
123
views
MassTransit with azure service bus - Delayed redelivery queue messages
I'm using MassTransit version 8.3.6 with Azure Service Bus, and I'm trying to utilize the delayed re-delivery feature in MassTransit. However, as soon as I enqueue the message, I encounter the ...
0
votes
1
answer
89
views
MassTransit RequestClient Timeout on Azure - Possible Issue with Response Queue and Managed Identity
I am using MassTransit with Azure Service Bus in a Function App where I have a producer API sending messages via RequestClient<T>, and a consumer running in the Function App processing those ...
0
votes
1
answer
569
views
Azure Function Service Bus Trigger with RBAC - Connection Problem
I have setup Azure Service bus to use RBAC and assigned myself a role of "Azure Service Bus Data Owner". I am able to send a message to a queue with:
ServiceBusClient client = new ...
1
vote
1
answer
138
views
Azure function with service bus trigger - ManagedIdentityCredential performance
I am working on an Azure Function that uses a ServiceBusTrigger and queries Azure Table Storage. In order to process multiple messages as quickly as possible we're using the MaxConcurrentCalls setting ...
1
vote
1
answer
466
views
Azure.Messaging.ServiceBus.ServiceBusException: Received an unexpected EOF or 0 bytes from the transport stream
Here I am receiving the following error on a call to ReceiveMessagesAsync using .NET 8.0:
Exception: Azure.Messaging.ServiceBus.ServiceBusException: Received an unexpected EOF or 0 bytes from the ...
0
votes
0
answers
61
views
.NET - Azure Function with Mass Transit
I have an issue that is happening in my Azure Function and Service Bus usage with Mass Transit implementation. I have attached the repository where the issue is shown. Before running it, you need to ...
1
vote
1
answer
1k
views
Not able to connect with ServiceBus emulator from durable function app that is running in container
I have the Azure Servicebus emulator running locally and now I want to connect to it from a durable function inside a different container, using a ServiceBus trigger.
But I get the following error:
...