1,080 questions
0
votes
1
answer
70
views
Service Bus Concurrency Setup in Function app isolated model
I'm migrating my in process functions to isolated.
While migrating I'm having this difficulty:
It seems like ServiceBus's maxConcurrentCalls can only be set using host.json file.
{
"version&...
1
vote
1
answer
91
views
Bicep: deploy a Service Bus Queue while the Service Bus in another resource group
I have a LA deployment that require adding a SB queue. However the the SB is located in another resource group than the LA.
So, when I call the existing the SB I use the following code:
resource ...
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 ...
0
votes
1
answer
218
views
Azure service bus: Long running message not renewing
We have a message that can run for up to 1 hour. It needs to be processed only once. We are getting issues where the message is becoming available to other processors however when we attempt to ...
0
votes
0
answers
54
views
How to set AutoLockRenewer() for received messages for more than five minutes?
I am having trouble with using AutoLockRenewer(). I have an app with message processing time up to 20 minutes and I want to set the message lock for 20 minutes accordingly.
def receive_messages(self, ...
0
votes
1
answer
113
views
Azure service bus queue not received all messages from the queue When the project is deployed on app service
I have a .NET Windows Service project deployed to an Azure App Service. My goal is to receive 100,000 messages from an Azure Service Bus queue and process these messages in a message handler. However, ...
0
votes
0
answers
104
views
How to automate Azure ServiceBus failover between 2 instances using azure devops pipelines?
We have 2 Azure Servicebus instances (one in region 1 and other in region2) with failover enabled (between region 1 & region 2 instances). As of now we are doing the failover manually.
Looking for ...
1
vote
1
answer
836
views
How can I keep alive Azure Service Bus client and sender instances for more than 10 minutes in Python SDK?
I'm currently working on integration of Azure Service Bus queue and custom gateway service. Every time service receives an event, it should send message to the dedicated queue.
I've managed to ...
1
vote
1
answer
178
views
Message selector in Azure service bus is not working - AMQP
How are you ? Hope you are doing good .
I have faced some technical challenges in Azure service bus and Qpid client .
I am sending JMS message from Jakarta jms and I am using qpid jms client as ...
0
votes
1
answer
142
views
How to pass ServiceBusReceivedMessage as an input to the Azure Durable function activity?
I'm trying to move ServiceBus triggered message to deadletter queue inside once of the Azure durable function activity.
[FunctionName(nameof(CaviContainerStart))]
public async Task CaviContainerStart(
...
0
votes
1
answer
186
views
Why do I need and/or want a CancellationToken for my Azure ServiceBus message?
I'm trying to understand what the CancellationToken is used for and if I need to use it?
If I have this code below, I can cancel it by calling CancelScheduledMessageAsync so what is a ...
0
votes
1
answer
118
views
Azure Service Bus 'SendBatchAsync' Method Timing Out in Legacy Web API
Question:
I am working on a legacy web API project hosted on Azure App Services. We are using the legacy WindowsAzure.ServiceBus 7.0.1 NuGet package for performing operations on Azure Service Bus.
The ...
0
votes
1
answer
132
views
Azure Service Bus Queue Groups
I would like to get the same functionality as I believe queue groups in Nats provides, but I have to use Azure (Service Bus?) My first question is: is this possible? If so, any pointers greatly ...
0
votes
1
answer
813
views
Azure Service Bus - ServiceBusProcessorClient-Java- Trytimeout and processing concurrent sessions
I am using ServiceBusProcessorClient and AmqpRetryOptions to connect my Azure Service Bus.
Facing two issues.
Consumer waits for 30 seconds to process the next message from ASB. Is this due to ...
0
votes
1
answer
310
views
Azure Service Bus - Message from Sender being enqueued twice
I'm relatively new to Azure Service Bus, and message queues in general. While familiarising myself, I've run into something that I initially thought was something clunky I had done, but am becoming ...
1
vote
2
answers
826
views
Azure service bus trigger function app stops monitoring its queue
The problem we are experiencing is a service bus queue trigger function app, on a rare occasion (99.999% uptime), stops performing its job. The monitor aspect of the function app just stops working. ...
0
votes
0
answers
117
views
Need to controll calling 3rd party API calling per minute (throttling) in .net core
I am consuming 3rd party API in my service. My service is been called by azure service bus trigger function.
The problem is 3rd party API restricting 45 requests per minute(they are doing throttling ...
1
vote
1
answer
126
views
can we set ConversationID for service bus trigger Azure v4 function c#? in ITelemetryInitializer
I m using Azure Function V4 Isolated Mode in c#. Its service bus Trigger function.
In message body I m already passing ConversationID.
I already added Telemetry.
services.AddSingleton<...
1
vote
1
answer
536
views
Recommended way to Limit Azure Function Service bus Trigger Concurrent message processing when using App Service Plan
What is the recommended way to limit an Azure Service bus trigger concurrent message processing when the Azure function is set to an App Service plan?
I know one can do it using "Max Concurrent ...
0
votes
1
answer
517
views
duplicate runs with built in service bus trigger in logic apps standard workflows
We are seeing the workflow duplicate runs on a single message from queue with sessions enabled. I have posted the same on MS blog and no replies there hence posting incase if anyone is also facing the ...
1
vote
1
answer
200
views
Azure service Bus geo-recovery automation using az bash commands
In MS docs for AzureCLI, we couldn't find, az command to do perform the Switchover activity from our primary Service Bus to the Secondary Service Bus.
We are performing, below activities as part of ...
0
votes
0
answers
148
views
C# - Azure Service Bus deployed in VM suddenly hangs and stops processing messages
New to processing messages using Azure Service bus. Any help would be greatly appreciated.
Our Azure Service Bus queues messages using an API and the received messages are processed using 4 different ...
0
votes
1
answer
420
views
How does the maxMessageCount work in service bus trigger?
In the official document there is a binding that seems to control to number of message sent to the function when triggered at one time.
Let say maxMessageCount = 5, and there are 10 messages in the ...
0
votes
1
answer
98
views
Sequential Number Generation Issue in Loop Using Queues
I've encountered a challenge in my current implementation. I'm utilizing queues to invoke a specific function (let's call it function a()) within a loop. The loop triggers the queue, leading to ...
1
vote
1
answer
469
views
How to create 1 instance of Azure Function per Azure Service Queue message
I am using Azure Service Bus Queue Triggered Azure Functions
Azure Function Runtime Version = 1 and running in consumption plan
Azure function and referenced projects are developed in .NET 4.8
I ...