Questions tagged [azure-servicebus-topics]
660 questions
0
votes
1 answer
Azure ServiceBus Topics and Queues
Good afternoon guys, I'm going through an interesting situation.
I have a topic and this topic has two queues, and in my source code, I'm going to send a message to the topic. But the problem is that in one of the queues, the message should be read…

Miguel Patreze
- 55
- 1
- 7
0
votes
2 answers
Difference between serverWaitTime and operationTimeout in Azure Service Bus SDK/NuGet
I am trying to understand the difference between:
serverWaitTime (in ISessionClient.AcceptMessageSessionAsync(String, TimeSpan))…

Raghu
- 2,859
- 4
- 33
- 65
0
votes
1 answer
Show Azure Service Bus Topic Filters
I am working my way through a great tutorial on using Azure PaaS and have come up with a question.
Here is the tutorial if it helps anybody else (been pretty useful for me)
https://youtu.be/ScJ4VxOmNGs
Is there a way outside of writing a C# program…

Joe Ruder
- 2,122
- 2
- 23
- 52
0
votes
1 answer
in azure logic app submit the message from dead letter queue to topic
IN Azure Service bus topic how the messages are moved from dead letter queue to topic?
whether it will automatically moved to topic or we need to configure the properties of topic in portal or whether there is any other way to do it?(i prefer not…

Arvind A
- 77
- 1
- 10
0
votes
1 answer
Azure Service Bus message abandon and dead letter queue
In Azure Service Bus topic, I am having two subscriptions
subscription1 and subscription2. I am sending one message to topic.
In subscription1 the message got abandoned and in subscription2 the
message got processed. Whether the abandoned message…

Arvind A
- 77
- 1
- 10
0
votes
1 answer
SubscriptionClient with Sessions issue: java.lang.UnsupportedOperationException
Using Azure Service Message Bus Topics and Subscriptions.
Created a Topic aaaa and Subscription zzzsubscription - session aware.
Using the below code to send messages to Topic with Session IDs:
String…

Ashok Goli
- 5,043
- 8
- 38
- 68
0
votes
1 answer
Azure Service Bus Topic: EntityAvailabilityStatus.Limited
What does it mean if EntityAvailabilityStatus is set to Limited? Is it possible to write to or read from a topic in this state?
We have an availability monitor function that tests a service bus topic availability by inspecting the property above.…

mirza
- 1
- 1
0
votes
1 answer
Azure Service Bus IQueueClient.registerSessionHandler: Unable to consume messages continuously from Queue/Topic
Requirement: I need to get all the messages from all the sessions from the queue. registerSessionHandler should consume messages as soon as they appear in the queue.
Issue: the code accepts the messages that are pertaining to one of the session id…

Abhishek Kumar
- 435
- 1
- 6
- 16
0
votes
1 answer
Retrieving Azure Service Bus messages from Topic using a filtered subscription
I'm trying to follow Mark Heath's console application example to retrieve Service Bus topic messages using a filtered subscription. However, I'm not actually able to retrieve the actual filtered messages (Filtered1, Filtered2). The messages do get…

Durward White
- 11
- 3
0
votes
1 answer
For Azure Service Bus using .Net Core 2.0 Library, why is a handler registered by SubscriptionClient.RegisterSessionHandler not picking up messages?
Code registers a Session handler, but in a Topic configured with {SupportOrdering = true} (aka Enforced Ordering), messages that do have a SessionId assigned just sit in the Topic and are not delivered. However, they do deliver, if a regular…

Beans
- 1,159
- 7
- 17
0
votes
1 answer
how to check service bus topic empty or not c#
I wonder is there any way to check service bus topic empty or not
I tried with nuget WindowsAzure.ServiceBus and below sample code.
In this nuget I do not get ITopicClient :(
var topicClient = TopicClient(); // we can not create object
…

Neo
- 15,491
- 59
- 215
- 405
0
votes
1 answer
How to configure WebJob ServiceBusTrigger retry policy
Edit: I will accept Azure configuration related changes as an answer to this question.
I am attempting to setup a retry policy to prevent instantly retrying a message when a 3rd party service is temporarily unavailable.
Currently the job is…

Brett Allen
- 5,297
- 5
- 32
- 62
0
votes
0 answers
Service Bus Namespace and Topic with a Subscription using a SQL Filter
I was trying to deploy as Service Bus Namespace and Topic with a Subscription using a SQL Filter with this example Service Bus Topic Subscription SqlFilter template, I get the Namespace, the Topic, the Subscription and the SQL Filter created well,…

felixmondelo
- 1,324
- 1
- 10
- 19
0
votes
1 answer
Service bus topic to Document Db - Update instead of replace
At https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-documentdb#input-sample-for-single-document
the following binding is given:
{
"name": "inputDocument",
"type": "documentDB",
"databaseName": "MyDatabase",
…

Manohar Reddy Poreddy
- 25,399
- 9
- 157
- 140
0
votes
1 answer
Azure Service Bus getting disabled
We are observing a peculiar issue in one of our service bus. We have topic and subscription setup and a webjob listens to the subscription. However, whenever the webjob runs it disables the topic and we trying to troubleshoot this issue. We have…

Shiju Samuel
- 1,373
- 6
- 22
- 45