Questions tagged [azure-servicebus-topics]

660 questions
0
votes
1 answer

How to check specific record exist in azure service bus topic

How do i to check specific record exist in azure service bus topic. In my case, multiple client enter record into service bus topic so i need to validate the existing record. If not record exist in topic than enter the record. i need to validate…
0
votes
1 answer

How to get better performance with Azure ServiceBus Standard plan

I don't manage to get over 14 msg/second with the Azure ServiceBus Standard Plan. I'm running some benchmark tests with the Azure-Sample tool that I found in this question: The test is done with a ServiceBus resource with a single Queue and all…
0
votes
2 answers

Get message count from azure SubscriptionClient with python

I am new to azure SubscriptionClient, I am trying to get the total message count from azure SubscriptionClient with python.
0
votes
1 answer

Microservice retrieving OrderId from an Azure service bus topic

I am trying to understand Azure service bus which I intend to use in a current project. I am completely new to this. Here is the scenario. There are two microservices. Microservice A - Writes order details to a database and also writes OrderId to…
Baba
  • 2,059
  • 8
  • 48
  • 81
0
votes
3 answers

Logic app completing a message in a service bus topic subscription with sessions does not release the lock

I have an topic subscription on a service bus in Azure with a lock duration of 30 seconds and sessions enabled. I'm using a logic app to take messages of the topic using peak-lock because I care about the order messages are processed. I want to…
0
votes
1 answer

Timeout exceptions when invoking RegisterMessageHandler on SubscriptionClient

I'm trying to invoke the RegisterMessageHandler method on a SubscriptionClient instance running in Android. After 20 seconds or so of publishing a message to a specific topic (via an automated test), I receive several timeout exceptions in my…
0
votes
1 answer

ReceiveAsync from Azure Service Bus topic without a body

I'm creating a consumer of an Azure Service Bus topic (subscription) that does nothing but store some statistics. The messages sent to the topic contains a rather large body, that is handled by another consumer on a second subscription on the same…
0
votes
1 answer

Consuming messages from Azure Service bus in multiple processes

I'm developing a system based on Azure Service Bus for quick fire-and-forget through an API and async processing of a lot of messages by background services through a topic. In the context of this question, the topic has a single subscription, why…
0
votes
2 answers

subscriptionClient.AbandonAsync vs subscriptionClient.closeAsync

what is difference between subscriptionClient.AbandonAsync vs subscriptionClient.closeAsync. i need to check whether topic exist in subscriptionClient or not. I can not use azure management client because of some limitation
0
votes
1 answer

Azure Servicebus Topic Subscription competing consumers affected by PrefetchCount

When using an Azure ServiceBus Topic Subcription with multiple competing consumers, I can only get consumers to round-robin when the SubscriptionClient's PrefetchCount not set. When specifying any PrefetchCount > 1, then under low load, the first…
Ive
  • 457
  • 5
  • 19
0
votes
1 answer

Streaming device data from IoThub in one organization(Org/Client A) to IoThub in entirely different organization(Org/Client B)

I am trying to clone my device data and stream the device data to another IoThub in an entirely different organization, the organization here I mean a different vendor cloud. Trial: I have tried routing the messages to service bus topics from my…
0
votes
1 answer

How to handle cancellation token in azure service bus topic receiver?

I have a scenario in which I am calling RegisterMessageHandler of SubscriptionClient class of Azure Service Bus library. Basically I am using trigger based approach while receiving the messages from Service Bus in one of my services in Service…
0
votes
2 answers

Cannot access a disposed object. Object name: 'tlsxyz'

I'm facing a random error when sending message from an Azure function to an Azure Service Bus (Standard) Topic. the message error is: Cannot access a disposed object. Object name: 'tls2576'., Stacktrace : at…
0
votes
1 answer

Azure bus security

In my solution, consumer of the messages on the Azure service bus is .net based application & we are implementing security aspects using AAD service principals by configuring app id & secret in consumer application app.config and it working fine, no…
0
votes
1 answer

Sending message to a specific group of subscriber in azure service bus topic with masstransit

I'm new to azure service bus and masstransit. I'm looking for a solution to a specific situation. I have a azure service bus topic with multiple subscribers. Subscriber will receive message based on filters. I've created the topic and subscriber…