Questions tagged [azure-servicebus-subscriptions]
182 questions
0
votes
1 answer
How to use SQL Filter to filter message which should send to specific azure service bus subscription in an topic?
I try to use postman to test how to send message to azure service bus specific subscription in a topic.
I use sql filter to filter message, the SQL filter as below:
MsgClass = 'Good'
I input the below message use Json format which include…

Harly Chen
- 33
- 4
0
votes
1 answer
Issue with resending messages to Azure Service bus
I have a time triggered Azure function that runs every 2 minutes and executes code that fetches all messages from an Azure service bus topic, and then sends the content of some of the messages as new messages on the same topic.
The problem I…

jbiversen
- 371
- 3
- 14
0
votes
3 answers
How to Create Azure Servicebus Topic Custom Correlation Filter using the CLI
I am able to create a system properties correlation filter using this syntax:
az servicebus topic subscription rule create --name "rulename" --namespace-name "my-servicebus" --resource-group "my-rg" --subscription-name "mysub" --filter-type…

Mark
- 480
- 1
- 5
- 18
0
votes
1 answer
Prefetch count for receiver is less than the max messages requested
I am using Azure Service Bus extension for Function App service bus trigger and have below extension settings prefetchCount = 30,
"extensions": {
"serviceBus": {
"prefetchCount": 30,
"messageHandlerOptions": {
"autoComplete": false
…

user584018
- 10,186
- 15
- 74
- 160
0
votes
1 answer
ARM template deploy to ASB without message loss
I have two ASB topic subscriptions which are updated using an ARM template, they are both against the same topic. Lets call them subscription_1 (existing) and subscription_2 (new). I don't want to lose any messages, and want to delete subcription_1…

chris
- 75
- 5
0
votes
1 answer
Use filter-sql-expression that contains Special Characters with Azure CLI for Azure Service Bus Topics
I am trying to create a filter SQL expression for Azure Service Bus Topics via Azure CLI. My filter expression has a special character (':'). When using the cli to create the filter I always receive a BadRequest response. The documentation for…

Vegi
- 77
- 6
0
votes
1 answer
Azure ServiceBus wildcard subscription
I have two sets of agents running on a group of computers - they post to two services bus topics that were created on the azure portal:
announce/awoga-corp
announce/company-first
I then have a server that needs to listen to any of these agents,…

morleyc
- 2,169
- 10
- 48
- 108
0
votes
1 answer
Azure ServiceBus managing of session-based receivers
When using session-based entities for Azure Service Bus, what are the best practices for managing the receivers? I'm managing my non-session-based entities through pooling, similar to what is recommended here. Could session-based entities be pooled…

Isak Engström
- 155
- 10
0
votes
1 answer
Azure ServiceBus AbandonMessageAsync releasing message at inconsistent times
I have the need to inspect a dead letter queue, and if some condition exists (like older than 30 days) I want to archive it to some data store (not just remove it). So I was gonna grab the messages, if it meets this condition, save it to some store…

Nick Novotny
- 95
- 7
0
votes
1 answer
How to get a notification when there is a new message in an Azure Service Bus queue?
I understand that we have Azure Service Bus trigger for Azure Functions:
https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus-trigger
I need to get a “Service Bus New Message” notification in my application that is…

Allan Xu
- 7,998
- 11
- 51
- 122
0
votes
1 answer
Why is my ServiceBusTrigger not getting triggered?
I have a Azure Function App that process some messages from Azure Service Bus Topic. I have some messages passed to the ASB and there are messages coming under my topic's subscription. However when I run my app locally which points to that specific…

PPPP
- 11
- 4
0
votes
0 answers
MassTransit batch consumer stalling, not receiving messages
We've got an issue where from time to time, a consumers for a specific message will stall and stop receiving/processing messages. It's not always the same consumer type, but I'm pretty sure it's always batch consumers for subscriptions on topics…

Joel
- 8,502
- 11
- 66
- 115
0
votes
1 answer
Creating Azure Service Bus with Rule with MassTransit
I'm using masstransit to consume messages from an azure service bus. It's going greate for nom but I need now to add filter rules to my subscription.
I found some posts on the subject, like this one:
Is there a way to define a Azure Service Bus…

Noone
- 395
- 1
- 4
- 17
0
votes
1 answer
Azure service bus - combining SQL and Correlation filter
I couldn't find in in the docs, but the behaviour is not what I would expect.
Here it's written:
When specifying multiple match properties, the filter combines them as a logical AND condition, meaning for the filter to match, all conditions must…

Mr Patience
- 1,564
- 16
- 30
0
votes
1 answer
ServiceBus Retry Logic
Repost of https://github.com/Azure/azure-sdk-for-python/issues/6731#issuecomment-1028393257
I am testing the retry parameters on ServiceBusClient, it is not clear if/how they work.
Am I doing something wrong, do I not understand how retry works? In…

andrewkittredge
- 742
- 5
- 12