Questions tagged [azure-servicebus-topics]
660 questions
0
votes
1 answer
Connection string to read from one topic and write to another
I'm using azure service bus topics and need to generate connection string which allows for one topic only to write and only to read from second.
I know that I can group both topics into one namespace and generate connection string for this…

IgorekPotworek
- 1,317
- 13
- 33
0
votes
1 answer
Azure Event Hub / Topic / Queue Best Approach
If I have access to Azure Queues, Topics, and Event Hubs which is the best technology to use if I have one producer, and approximately 1000 subscribers? The message size would be less than 30k, and the amount would be no greater than 3000 per day. …
0
votes
0 answers
Azure Service Bus subscription not received all messages in topic
I am following this https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions to learn how to use Service Bus Topic and Subscriptions to receive messages.
It 1st sends 10 messages and then…

Franva
- 6,565
- 23
- 79
- 144
0
votes
1 answer
How to get specified message from Azure Service Bus Topic and then delete it from Topic?
I’m writing functionality for receiving messages from Azure Service Bus Topic and delete the specified message from Topic. Before deleting that message, I need to send that message to other Topic.
static async Task ProcessMessagesAsync(Message…

Pradeep
- 5,101
- 14
- 68
- 140
0
votes
1 answer
Azure service bus topic/subscriptions being deleted
I have at topic/subscription that is being deleted nightly. Using Service Bus Explorer I have set the Days value of "Auto Delete On Idle" to multiple days (for example 5). But overnight it is still being deleted. Has anyone had this issue…

mike w
- 101
- 1
- 10
0
votes
1 answer
How to specify the sender subscription in a message in azure service bus topic subscription?
In azure servicebus I have a topic with a subscription. When this topic recieved a message, the subscription must forward the message to a logging-queue. How can I specify that the forwarded message is from this topic?
I need the name of topic in…

milan-W
- 65
- 1
- 9
0
votes
1 answer
Creating Topic Filter rule via CorrelationFilter with Azure Functions App
I want to create filter rule via CorrelationFilter for subscriptions associated with a Topic, as it is faster than SQLFilter.
The rule: any message that contains a header that equals to a string will go to one subscription, another string will go to…

Pingpong
- 7,681
- 21
- 83
- 209
0
votes
1 answer
Azure Service Bus Topic Else Subscriber
When you send a message to a topic, if there is no subscription with a matching filter, the message gets lost.
How can I avoid this without creating a subscription that basically negates all the existing filters?
I don't want to lose messages, and…

FEST
- 813
- 2
- 14
- 37
0
votes
1 answer
Identify if a message is already read in Azure Service Bus Topic
I have 65k records in Azure Service Bus Topic, while testing, whenever my test application is started, it reads all the 65k records. Can you please help me how can we avoid reading messages that have already read or How can we read only the messages…

Jayanth Kulkarni
- 31
- 3
0
votes
1 answer
Azure service bus topic - subscription message is received. How to find the consumer/client
I have a scenario where an Azure SB subscription message is being received by an unknown consumer/client. We landed in this scenario as we have multiple function apps/logic apps running.
I would like to pause all the consumers/client for that…

Subhasis
- 714
- 3
- 14
- 28
0
votes
1 answer
Message ordering delivery for Queues and Topics/Subscriptions with Azure Service Bus
I am confused with whether or not message ordering delivery is supported by default for Queue and Topic.
It said below FIFO message delivery is supported for Queue. I assume this is the same as message ordering delivery.
Queues offer First In,…

Pingpong
- 7,681
- 21
- 83
- 209
0
votes
1 answer
pass action-sql-expression to a topic subscription
I want to do action-sql-expression command on a subscription. I have this:
az servicebus topic subscription rule create ^
--resource-group %resourcegroup_name% ^
--namespace %namespace_name% ^
--topic-name %topic_name% ^
--subscription-name…

milan-W
- 65
- 1
- 9
0
votes
1 answer
Azure Web Jobs with Service Bus Topic Integration
I have created subscription(s) for some of the existing Azure Service Bus topic(s).
Now i need to create Azure Web Jobs that will process for any new Message arriving at the Topic end. This whole process will be used as part of incremental…

user1941025
- 541
- 6
- 21
0
votes
1 answer
How to read messages from topic using multiple subscribers at a time?
I am working on Azure ServiceBus Topic-Subscriptions. I created one topic and two subscriptions in Service Bus Namespace. In my current application, I am able to send messages to topic after that I receive messages by using subscribers.
But…

Pradeep
- 5,101
- 14
- 68
- 140
0
votes
1 answer
Service Bus Topic to ADLS using Logic App
I'm new to Logic Apps and i have some basic questions. I created the below workflow (1 Trigger + 2 Actions) Where:
1) Reading for any new messages in Azure Service Bus Topic.
2) Then Load the data to Azure Data Lake respective Folders.
With regard…

user1941025
- 541
- 6
- 21