Questions tagged [azure-servicebus-topics]

660 questions
0
votes
1 answer

How do I run an Azure Service Bus Topics subscriber app 24/7 in Azure?

There is an example here that explains on how to send messages and receive messages using Azure Service Bus through a publisher and subscriber application. My questions are about the subscriber application that receives messages: Does registering…
0
votes
1 answer

Sending a message to Azure Service Bus to create a topic from Angular?

I have an Angular JavaScript Client App 1 that adds or deletes 5 to 10 rows from a DB occasionally. I have another POST action in a WebAPI (REST) which processes these rows (these rows come in thousands) to generate a JSON object. Another Angular…
wonderful world
  • 10,969
  • 20
  • 97
  • 194
0
votes
1 answer

Azure service bus messages intermittently unauthorized despite using correct shared access signature values...why?

I have a django application that routinely injects messages into an Azure service bus. I am receiving intermittent errors indicating that its messages are unauthorized. I would say that 95% of messages are successfully authorized, with about 5%…
0
votes
1 answer

Should we close session on Azure service bus subscription client

I am using Azure service bus topic/subscriptions with sessions. I am setting a hardcoded value for the sessionId as I want to control processing of incoming messages. So even if there are more than one eligible subscribers which can process this…
0
votes
1 answer

Reprocess deadletter message from subscription

Suppose u have a topic with multiple subscriptions and u want to resubmit/reprocess a message in the dead-letter queue of one subscription. How would u do that so that only that subscription picks up the message again? Without having all other…
0
votes
0 answers

Forwarding messages published on a topic to a queue using Azure Servicebus and Masstransit

Our product consist of several small application, famously known as a Microservice architecture. These services a hosted in Azure Kubernetes Service(AKS) with a HorizontalPodScaler. This means that we dont control how many instances, or Pods, of an…
0
votes
1 answer

Connect to Topic using Function App's MSI

Is it possible to connect to a Service Bus Topic using App Service Function App's MSI? Any documentations or examples to perform this via ARM Template or .NET SDK (C#) would be helpful.
0
votes
1 answer

Migrating Azure Service Bus Queue to Topic and Subscription

We have created Azure service bus queue and have a azure function - servicebus queue trigger subscribed to it. We now want this queue to convert to Topic as we will need multiple subscription to it. is there a way that we can convert queue to Topic…
0
votes
0 answers

UnAuthorizedError on service bus message send with Node JS

I am getting below error on service bus message send and it is hosted on Docker containers in Kubernetes. Have reviewed the SAS token and it is valid and has "Manage" permissions. using the same token I can send a message in the service bus topic…
H_H
  • 1,460
  • 2
  • 15
  • 30
0
votes
0 answers

Alert when Service Bus [Premium] failover occurs?

If I have a regionally paired Service Bus namespace with an alias, using the Premium SKU... Is there a control plain event or other metric that will indicate a failover has occurred or is occurring? I'd like to be able to configure an alert as part…
0
votes
1 answer

Is the service bus topic lose messages when I send a message without Forward To?

I am new to the Message Queuing, so please correct me if I am mistaken. I have a topic without subscriptions, let's call it "Sender". I have sent a message from my topic "Sender". What is going to happen to this message? I have tried this and I am…
Was
  • 51
  • 1
  • 9
0
votes
1 answer

Is there any way to chunk message while sending message into service bus topic in logic app?

I have a logic app and sedning messages to service bus using service bus connector when a message is more than 1mb i'm getting below error - { "status": 400, "message": "A request has exceeded the maximum message size for…
Neo
  • 15,491
  • 59
  • 215
  • 405
0
votes
2 answers

How to control/reduce throughput in Azure Service Bus

I am looking into Azure service bus topics and subscriptions in our distributed system. I want to control number of messages that can be processed at any given time. Say, we have say 5 nodes in the production and I understand I can specify Maximum…
0
votes
3 answers

Pattern for sending messages to topics when entity state changes

We are using Azure Service Bus to notify subscribers when a certain entity in our application has changed to a certain state. Right now we're doing this right after we call…
0
votes
1 answer

Azure Service Bus Topics, Subscription Rules Deleted

We're using Service Bus Topics as the engine for a pub/sub system. Our logic involves our NodeJS services hooking up to a topic with multiple subscriptions. For each subscription we remove $Default (TrueFilter) and create a CorrelationFilter on…