Questions tagged [azure-servicebus-subscriptions]

182 questions
0
votes
1 answer

Does using Azure Service Bus filters on a Subscription incur the cost of an operation?

If a single Azure Service Bus Topic with 10 subscriptions exists. I put a Message on the Topic and it goes to all 10 subscriptions. From the docs I assume this incurs the cost of 10…
0
votes
1 answer

How to subscribe Web API on Azure Messages

I have 2 Web APIs developed on ASP.NET Core. The idea is: the WebAPI_1 sends a message to the Azure Service Bus and then WebAPI_2 has to catch this moment and read it shortly after the message is sent. I understand how to catch this moment is I have…
0
votes
1 answer

Azure Service Bus adding message to the queue too quickly

I'm having an issue where I'm triggering an event which is being handled by an Azure Function Service Bus Trigger. The trigger that runs could run for anywhere up to an hour which is fine but I'm finding that after 5 minutes the message gets re…
0
votes
1 answer

Connection Property does not work in Azure ServiceBus Subscription-triggered Function

According to the documentation, you can specify a Connection in a ServiceBus-triggered function. The Connection should reference an App Setting by that name that contains a connection string to an Azure ServiceBus Namespace. I have an App Setting…
0
votes
1 answer

Is it possible to set user properties of Azure service bus message in Java?

I would like to add some filters on my Azure service bus topic subscriptions, and filters can only be based on system properties/ user properties rather than the actual payload of message. When I looked through the documentation of Azure…
0
votes
1 answer

Service Bus messages filtering by label

Is it possible to add messages filtering rule (by label) on service bus level not for specified subscription or topic? I need to make such filtering in ARM template. Is answer is yes how such template should looks like?
0
votes
1 answer

Multiple batch consumers throwing MessageLockLostException when receiving messages

I've got an issue where I publish messages to an Azure Service Bus topic. I have a couple of batch consumers subscribed on those topics (no forwarding to a queue). The problem is that there are random warnings about MessageLockLostExceptions, and it…
0
votes
1 answer

MessageLockLostException on unhandled exception in combination with ConfigureDeadLetterQueueErrorTransport for MassTransit on Azure Service Bus

I'm trying to set MassTransit up with Azure Service Bus. I want to use the DLQ instead of relying on _skipped and _error queues, but I'm not sure if I'm doing it wrong. This is a simplified version of my…
Joel
  • 8,502
  • 11
  • 66
  • 115
0
votes
2 answers

Is it possible receive messages in subscriptions synchronously in Azure service bus

I have 2 subscriptions to a Azure service bus topic. Both subscriptions receive messages in parallel and I have 2 Service Bus input triggered azure functions to process the messages. Azure service bus Topic --Subscription 1 -> Azure function…
0
votes
1 answer

Is there a way to react to messages getting dead lettered?

I am using azure.messaging.servicebus sdk, and I would like to log messages that are going to dead-letter and also inform other services about it. Can't seem to find a handler in the object MessageProcessor for this behavior. I thought of doing my…
0
votes
1 answer

How to add SQLFilter to Azure service bus topic subscription

I have a azure service bus topics subscription in azure function. Below is the code for subscription: Topic names: send-not Subscription: send-idea, send-email 'send-idea' is subscribing to 'send-email' as well due to non availability of any…
0
votes
1 answer

Migrating from Microsoft.Azure.ServiceBus to Azure.Messaging.ServiceBus

I have been trying to migrate my code base to latest ServiceBus SDK and unable to find a method which can serialize a binary body to a source object. In the past I use to retrieve the object as…
0
votes
2 answers

Azure Service Bus: Client/Broker is not fetching the same size of messages as I passed the Batch Size

I am fetching messages from the Azure Bus Subscription in Batch. For the testing, I passed the BatchZise value 2000, but I got near about 300 messages on the list. Is there any specific rule like we can fetch the max size of messages or same time we…
Dilip Kr Singh
  • 1,418
  • 1
  • 18
  • 26
0
votes
1 answer

Azure Service Bus: What is difference between DeadLetterQueue and DeferQueue?

I am a little bit confused about DeadLetterQueue and DeferQueue in Azure Service Bus. What is the difference between them, and which scenario do we prefer, DeadLetterQueue and DeferQueue? Also, which performs better between them?
0
votes
1 answer

How to browse user errors in Azure Service Bus?

I have 2k user errors depicted on the chart for Service Bus queue in azure portal however I cannot browse these errors to get to know their type or error message. Is there any tool or any other way to see it? When these errors accumulating I see…