Questions tagged [azure-servicebus-subscriptions]

182 questions
0
votes
2 answers

Move a message to subscription deadletter for failed HTTP request

I've been looking for resources but I can't seem to find what I need.. I have an Azure function with a Service Bus trigger. From this, I make an HTTP call with one of the values found in the Service Bus message. An additional requirement for me is…
0
votes
1 answer

How to send and receive message to the topic of Azure Service bus in Ruby

How to integrate Azure Service Bus in my Ruby Application to send and receive message from a topic?
0
votes
1 answer

Azure Service Bus | Enable Session | Session does not receive

I have a requirement to process the same set of messages together and for this, I was trying Azure Service Bus Sessions Enabled feature. To test this, I created a very simple application, a message is submitted successfully in a queue, however,…
0
votes
1 answer

How Can I Review All Azure Service Bus Subscriptions Forwarding to a Specific Queue

Given an Azure Service Bus to which I have access and in which I can see all queues, topics, and topic subscriptions, is there an easy way in which I can see all subscriptions forwarding messages to a given queue? Is my only recourse to write code…
0
votes
1 answer

Azure service bus, Auto forwarding does not wait to message completed

I want to use the auto-forwarding feature of the Azure service bus. I have a topic called "trip" and has a subscription called "test". I have set the auto-forwarding enabled and set to forward the message to another Topic called "trip_elaborated".…
0
votes
1 answer

Receive messages from Azure Service Bus via Subscription

I referred this to receive messages from my Azure Service bus via subscription I am able to receive the messages, but I am continuously receiving the messages until I manually terminate the program I have a timeout option and want to receive…
0
votes
2 answers

Can ServiceBusProcessorClient receive deferred message or not?

I am trying to use ServiceBusProcessorClient from Azure Service Bus messaging jar (azure-messaging-servicebus-7.1.0). I have seen defer API on ServiceBusReceivedMessageContext . But did not see any API to retrieve deferred message. …
0
votes
0 answers

Azure Service Bus Topic missing data across subcriptions

I am facing a weird scenario where I have an SB topic and it has two subscriptions Sub1 and Sub1. I have two listeners for each of the Subscriptions (no other listeners apart from mine) Sub1 => Listener1 Sub2 => Listener2 Have been seeing issues…
0
votes
2 answers

how to send a message to azure service bus Topic (subscription using) Logic app send message connector?

I have a Azure service bus Topic with two subscriptions. I want to send a message to topic from logic app using send message connector. How to send the message to a specific subscription. Now it takes only topic name and does not have property to…
0
votes
1 answer

Non-durable JMS subscription on Azure Service Bus topic

I'm trying to create non durable topic subscriptions on Azure Service Bus with JMS. This feature has been recently made available for premium service bus tier. I'm using Spring Boot and using Spring JMS, and I subscribe to the topic with…
0
votes
1 answer

Passing multiple values to Azure Service Bus topic subscription action rule

I need to find a way to add several custom actions to an Azure Service Bus topic subscription rule SQL action. Azure CLI only allows one - and the forthcoming will replace the existing (anyway, I haven't found a way to pass more than 1 argument): az…
0
votes
2 answers

Azure Logic App - Service Bus Trigger only firing on polling recurrence

I have an Azure Service Bus Namespace, containing 8 topics, each with at least one subscription. There are generally two Logic Apps,the first extracting data from our database every half hour (at 15 and 45 past the hour) and placing it onto the…
0
votes
1 answer

How can one listen to an Azure Service Bus topic continuously?

I am running a service using Flask that, when a message is published on a topic, needs to trigger some code. I am unsure how to create the subscription name and all that, but I think I can hack at it. What I really don't know is how to be constantly…
0
votes
1 answer

How to set TTL on ServiceBus ManagementClient CreateSubscriptionAsync

When I create a subscription as follows the TTL is defaulted to 10675199 days var client = new ManagementClient(connStr); if (!await client.SubscriptionExistsAsync(topicName, subscriptionName)) { // TODO: this has an unlimited TTL, which needs…
Mark Cooper
  • 6,738
  • 5
  • 54
  • 92
0
votes
1 answer

How to manage Topics and the publishing of events/messages in Azure Service Bus?

Initially I thought you could see a Topic as a Microservice. For example you could have the following Topics: OrderTopic InvoiceTopic When an application publishes an "event" like: ProductOrderedEvent, that all Topics interested in this event…