Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
82 views

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&...
Asfaqur FAQ's user avatar
0 votes
1 answer
49 views

I am an integration tester on a project that has only just started using Azure Service Bus Topics and although I have permission to view the Dead Letter Queue, it's becoming difficult to find the ...
elaine clark's user avatar
1 vote
1 answer
95 views

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 ...
ibda's user avatar
  • 520
0 votes
0 answers
145 views

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....
Ali's user avatar
  • 1,285
0 votes
1 answer
56 views

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 ...
user30000263's user avatar
0 votes
1 answer
56 views

Is it possible to add a shared access policy to a queue in Azure Service Bus using python? I'm trying the following: from azure.servicebus.management import ServiceBusAdministrationClient, ...
Jeff's user avatar
  • 3
0 votes
1 answer
238 views

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 ...
user1112324's user avatar
0 votes
1 answer
67 views

I am using an Azure service bus queue for capturing user change events like user add, user update, user delete from an application, say Application A. So I am processing these events from a queue ...
Sreejith Sasidharan's user avatar
0 votes
0 answers
64 views

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, ...
Ivan's user avatar
  • 1
0 votes
2 answers
627 views

I'm trying to get my Function App Servicebus Queue Trigger to be used with the parameters for queue name and connection string fetched from App configuration Service in Azure. My setup works for ...
H4p7ic's user avatar
  • 1,933
0 votes
1 answer
124 views

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, ...
Irtaza Azeem's user avatar
-1 votes
1 answer
65 views

I am having Azure function which gets Trigger when AzureService Bus Topic receives message. when my saveGuestdata success I am calling await sender.SendMessageAsync(msg); and if (Transaction.Current !=...
Indian songs comedy jolly  use's user avatar
0 votes
0 answers
109 views

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 ...
Vowneee's user avatar
  • 1,551
0 votes
1 answer
167 views

Edit: The solution, which is actually in the doc of service bus network page, is to have a virtual network with a subnet delegation to Microsoft.web/ServerFarm, and to connect both the service bus and ...
Mawu Ena's user avatar
1 vote
1 answer
883 views

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 ...
Danylo's user avatar
  • 11
0 votes
2 answers
558 views

I have a python service which uses azure service bus topic for sending and receiving messages. I am using azure-servicebus==7.12.2. Max timeout I can set on azure portal is 5 minute, but the ...
user1150896's user avatar
1 vote
1 answer
184 views

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 ...
Hari's user avatar
  • 45
0 votes
1 answer
125 views

We are using Azure Service Bus queue (using Mass Transit) and multiple runners listening to the queue to process the messages from Queue. To avoid over provisioning infra, We have limited the runners ...
Naseerudeen's user avatar
0 votes
1 answer
149 views

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( ...
novice developer's user avatar
0 votes
1 answer
781 views

I need to connect to Azure Service bus from Databricks (pyspark) in order to send json messages to existing queue using a service principle or via AAD as auth. I have tried the below code : from azure....
Rocking Surya's user avatar
0 votes
1 answer
203 views

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 ...
chuckd's user avatar
  • 14.8k
0 votes
1 answer
538 views

I have created an Azure Function App and created a function from a docker image in the Azure Container Registry. The function is triggered by a new message being placed on an Azure Service Bus queue. ...
demajh's user avatar
  • 1
0 votes
1 answer
120 views

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 ...
Pulkit Sharma's user avatar
1 vote
2 answers
387 views

I'm trying to deploy a dashboard that displays a couple of metrics for a Service Bus Queue in the Azure Portal using Bicep. Creating the tiles itself works fine, but I'm struggling with displaying the ...
StuartvdLee's user avatar
0 votes
1 answer
137 views

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 ...
Darren's user avatar
  • 1,143
0 votes
1 answer
154 views

We send servicebus messages with an old library via Microsoft.ServiceBus.Messaging which is available in the nuget-package 'ServiceBus.v1_1' and want to receive and parse the message with the newest ...
Simon's user avatar
  • 5,014
0 votes
1 answer
833 views

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 ...
Martin Joseph 's user avatar
0 votes
2 answers
486 views

I have this Service Bus trigger where I am trying to renew the lock before it expires. As per my knowledge, the maximum time-to-live for a message is 5 min. But my task is taking 20 min to complete it....
manas sahu's user avatar
0 votes
1 answer
312 views

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 ...
marcuthh's user avatar
  • 606
0 votes
1 answer
162 views

I have created a service which starts and creates a connection to given Azure Service Bus Topic. I am using Azure.Messaging.ServiceBus Sdk with .NET 7 and I am trying to implement retry policy but it ...
usernotdefined's user avatar
1 vote
2 answers
855 views

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. ...
Chris Biles's user avatar
0 votes
0 answers
63 views

does anybody know how to get a certain number of messages from a queue in Azure service bus via url without removing it? https://mynamespace.servicebus.windows.net/myqueue/messages?PeekMessages=true&...
ppp's user avatar
  • 21
0 votes
0 answers
121 views

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 ...
Tech_Explorer's user avatar
1 vote
1 answer
769 views

We have lots of Azure Functions for Service Bus within a single Azure Functions instance/project. The problem is that some Azure Service Bus has very high load and thus cause a resource starvation. Is ...
imgen's user avatar
  • 3,234
1 vote
1 answer
127 views

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<...
Maulik Dave's user avatar
0 votes
3 answers
2k views

I'm trying to process multiple messages, from a queue with sessions enabled, in parallel. I've tried setting MaxConcurrentCallsPerSession to 5 for example but I am still receiving 1 message at a time. ...
Andreas Giordimaina's user avatar
1 vote
1 answer
555 views

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 ...
H4p7ic's user avatar
  • 1,933
0 votes
1 answer
178 views

I have created an Azure Service Bus Queue with terraform, it is deployed and working properly. I want to add a retry delay for the queue. I have added following line in Python V2 model but after ...
Ali's user avatar
  • 1,285
0 votes
1 answer
531 views

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 ...
Janardhan Bikka's user avatar
1 vote
1 answer
532 views

I'm currently going through an example demonstrating the usage of the Azure Service Bus processor class. You can find the example link In this particular example, there is a code snippet at the bottom ...
Pulkit Sharma's user avatar
1 vote
1 answer
212 views

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 ...
Vowneee's user avatar
  • 1,551
0 votes
1 answer
2k views

We've got a number of in-process azure functions that have bindings along the lines of: public async Task Run( [ServiceBusTrigger("%TriggerQueueName%", Connection = "...
Mark's user avatar
  • 3
0 votes
0 answers
155 views

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 ...
Genie's user avatar
  • 21
3 votes
1 answer
720 views

I want my Service Bus triggered Python Azure Function to make the message it has retrieved from the queue available on the queue again to be retried. I want this to happen without having to raise an ...
Aaron's user avatar
  • 73
0 votes
1 answer
430 views

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 ...
Vanderwood's user avatar
0 votes
1 answer
250 views

My team is trying to design an event-driven microservice architecture that allow an end-user to select a subscription type (e.g: Pro, Enterprise) from our website and buy max 5 licenses for that ...
PurpleGreen's user avatar
0 votes
1 answer
102 views

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 ...
Vinayak Sharma's user avatar
0 votes
2 answers
700 views

I have configured stateful logic app workflow using service bus queue message(peek-lock) connector. After processing message, the "Complete" action failing to remove message from queue using ...
Kaishu's user avatar
  • 301
1 vote
1 answer
481 views

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 ...
Sagar's user avatar
  • 718
0 votes
1 answer
145 views

I want to stop redelivery of message back to service bus queue only when it times out , currently I am using processmessageasync to read the message and processerrorasync to handler the errors Do not ...
Yash Joshi's user avatar

1
2 3 4 5
22