Questions tagged [azure-servicebus-topics]
660 questions
0
votes
2 answers
Does an azure service bus subscription act like a queue?
This may be a stupid question, but I can't find a definite unambiguous answer by reading the documentation.
This is what I understand from the documentation:
So assume you have a queue, you can send multiple messages to it, and have multiple…

Frederick Grumieaux
- 456
- 4
- 19
0
votes
1 answer
Correct way to process batches using receiveMessages
We are using the @azure/service-bus package to process message batches from multiple topics.
The code we use to take 20 messages from the topic every 2 seconds looks like this.
let isProcessing: boolean = false;
setInterval(async ()…

Steoates
- 3,058
- 5
- 27
- 43
0
votes
1 answer
Incoming messages are dividing among listeners from Azure service bus topic subscription
I am using below code from Microsoft portal for sending and receiving messages from and to Azure service bus topic/Subscription. Code is working fine. Bus when I run 2 instances of receiver code, the messages are getting divided among 2 receivers.…

Balaji211
- 257
- 1
- 5
- 18
0
votes
1 answer
Is there a way to set DeltaBackoff for RetryExponential policy in .NET Core ServiceBus client?
It seems that .NET Standard Azure ServiceBus client library doesn't have exposed possibility to set DeltaBackoff parameter. It was possible before, based on documentation it should be still possible. I see there is an internal constructor which is…

Darjan Bogdan
- 3,780
- 1
- 22
- 31
0
votes
2 answers
How to configure ARM templates and parameter file to create multiple service bus topics across different environments
My repo has different arm templates (azure deploy json files) for two different environments. Each environment has its own service bus namespace. I want to generate the same list of topics for each environment in the arm template.
I want to keep…

Ronnie
- 101
- 5
0
votes
1 answer
ELK logstash connecting with Azure Service Bus
I have set up ELK on a local computer and Logstash get data from stdin without any problems.
I wanted to connect input the Logstash with Azure Service Bus, but I can't find any example how to do it.
Is it possible to connect the two services?

Art Base
- 1,739
- 3
- 15
- 23
0
votes
1 answer
How to create a filter on service bus topic subscription on message property?
I have one topic DemoTopic and having 2 subscriptions 'sub1' and sub2
my message payload is like this
{
"data": [
{
"id": "1",
"name": "a",
"pid": "p1"
},
{
…

Neo
- 15,491
- 59
- 215
- 405
0
votes
1 answer
Azure ServiceBus Topic with multiple Subscribers - Duplicate messages
I have an Azure ServiceBus Topic called "IntegrationEvent" with one subscription called "TestSubscription". I register two subscribers to this subscription that I have CompetingConsumers.
A lot of messages are handled in both subscribers. What do I…

Dani
- 971
- 12
- 31
0
votes
1 answer
If exception occurs is there any way to send message into dead letter topic using c#?
I have azure function app which trigger based on new message into service bus topic. maxdeliverycount=10
But if any exception occurs i want to send message into dead letter topic how to do that?
[FunctionName("ProcessData")]
public static…

Neo
- 15,491
- 59
- 215
- 405
0
votes
1 answer
Azure service bus: is it wise to create a separate topic for every event you broadcast?
I am trying to design the strategy that my organization will employ to create topics, and which messages will go to which one. I am looking at either creating a separate topic for each event, or a single topic to hold messages from all events, and…

Extranomical
- 385
- 1
- 3
- 13
0
votes
1 answer
Azure Service Bus Topic Subscriber receiving messages not in order
I am using azure service bus topic and I have enable session for it's subscription.
With in the my logic app i am inserting data using sql transaction which are coming from topic
I am using topic Subscription(peek-lock) and
in subscriber level…

Thili
- 748
- 1
- 9
- 21
0
votes
1 answer
Rebus listening to pure azure servicebus
In my scenario, I've implemented Rebus (usings azure servicebus) in my application (going to make a PoC using sagas).
Problem is, the topic I'm listening to is azure servicebus only, no fancy pancy.
I'm subscribing to the topic, moving the message…

DannyThunder
- 994
- 1
- 11
- 29
0
votes
1 answer
what is the difference between azure-sb and @azure/service-bus?
I want to create a nodejs Azure Service Bus client to read from a topic, and I want my client to automatically register its subscription.
So @azure/service-bus allows to work with SB normally, yet does not allow to create a subscription. azure-sb…

Kat Lim Ruiz
- 2,425
- 2
- 26
- 32
0
votes
1 answer
Do I need to call TopicClient.CloseAsync() in my ASP.NET Core WebAPI?
I am using the package Microsoft.Azure.ServiceBus. Since I should reuse the TopicClient to get the best use out of AMQP/SBMP, I would be creating it once inside one of my singleton services. However, TopicClient is not IDisposable, It only exposes…

Alex AIT
- 17,361
- 3
- 36
- 73
0
votes
1 answer
Azure topic subscription filter / Subscription Rule
I have created a sample client which listens to a subscription that is attached to a Service-Bus topic. Now whenever a message is posted in that topic, its being captured by the client listening to subscriber. (as documented…

Amit
- 465
- 2
- 6
- 20