Questions tagged [azure-servicebus-subscriptions]

182 questions
0
votes
0 answers

Azure service bus - dead lettering

Is there a way for me to send a message directly into a Azure service bus deadletter queue for a subscription without doing this operation on the parent subscription? Here is a bit more detail about the problem : We have a Azure function that has a…
Nairooz NIlafdeen
  • 1,150
  • 2
  • 9
  • 13
0
votes
1 answer

Azure Service Bus# PeekLock # determine message lock correct value?

I have some microservices which post message in queue and then one my listen function listen it and do a further process. I set Lock time for 120 sec but what is best way to determine and set lock time for queue listener. cos I have 10 replica of…
0
votes
1 answer

Difference Azure Queue and Topic with one catch-all Subscription?

If I, in Azure, create a Queue or Topic with one catch-all Subscription What is the difference? TL;DR I know that one can add more Subscriptions later on, and I know about filtering for the Subscriptions. But that is not part of the…
0
votes
1 answer

Azure Functions Service Bus Output Binding - Non C# Languages

Is there any way to apply value of some filter when we use this type of output binding. I want message to be sent to only one subscription with specific correlation filter, and it looks like it is not supported. Right now i am doing that with SDK…
0
votes
1 answer

Azure ServiceBusSender i.c.w. ServiceBusClient possibility to get an event when consumer connects (subscription) to Topic

In my situation we have an Container App which sends messages to a ServiceBus Topic Queue. Other Apps (also running on Azure) can Subscribe to this Topic and will receive a message when the sender sends a message to the Topic.... this all works…
0
votes
1 answer

ServiceBusTrigger not triggering when in Azure. Runs locally

I have a ServiceBusTrigger azure function V4 that is processing all the messages in the queue when I run it locally. But when the application is deployed to Azure, it just sits and does nothing. I'm using ManagedIdentity and all the settings look…
0
votes
1 answer

Azure powershell script for delivering logs information

I'm using some Azure service and would like to monitor the status of all its connections. Since log analytics doesn't give me the appropriate metrics to monitor / watch the connection status, I need to develop my own powershell script (with azure…
0
votes
0 answers

SQL Filter in Azure Service bus, how to filter on multiple conditions?

I am trying to write a SQL query-ish filter on Azure Service Bus Topic Subscription, where i want to filter on multiple conditions and if none of them match then the message will be displayed in that topic. This is what i have tried, both with ()…
0
votes
1 answer

Send Azure Service Bus Topic subscription message to DeadLetterQueue

I have an Azure function that is trigger from a Subscription to an Azure Service Bus Topic. The definition looks as follows: [Function("logactivity")] public async Task Run([ServiceBusTrigger("marketplaceactivity", "logactivity", Connection…
0
votes
1 answer

Azuer Service Bus SDK not receiving the specified messages

I am using Azure.Messaging.ServiceBus SDK and I am unable to understand the below statement. My Subscription has 200 messages. My understanding is that if I execute the below statement it must return me 5 counts of messages or if I give the value as…
0
votes
1 answer

Can you retrieve the sessionID of an Azure Topic/Subscription message within the Azure function it triggered?

I want to use the SessionId of the message added to the Topic and pulled into my Azure function via a subscription. I assign the sessionId when I place the message in the Topic. Is there a way for me to read the sessionId when my Azure function is…
0
votes
1 answer

Service Bus Topic Subscription filter searching a value in array

I've been searching about how to create a SQL filter for a topic subscription in Azure Service Bus searching a value in an array, but I didn't find anything and I don't know if it's possible? I have a message like: { "myArray":[ "value1",…
0
votes
1 answer

Azure ServiceBus topic has 4 subscriptions without filters. One Subscription not receiving any messages

I got an Azure Service Bus with a topic, say "insured". Under "insured" , there are 4 subscriptions , say , S1,S2,S3 & S4. All the subs are configured with default settings and NO Filters added. However, when I post a message into the topic, I can…
0
votes
1 answer

Replayability of all messages(Failed/Successfully Processed) via Azure Service Bus

We are using Azure Service Bus for asynchronous message processing and one of the requirement is to be able to allow message replay/re-submission regardless of whether it was failed or processed successfully. Generally, poison messages are moved to…
0
votes
0 answers

FunctionApp V4 SeviceBusTrigger not fired

I'm running FunctionApp v4(Azure) and ServiceBusTrigger binding and blob binding, but its not fired, messages are not read from subscription. The app is running ok. Im running functionapps v3 without any problems, the code is copied and…