Questions tagged [azure-servicebus-topics]

660 questions
0
votes
2 answers

Azure Service Bus Topic - Handling duplicate messages in topic queue

We have an azure topic with duplicate message detection property enabled. Because of the above setting, any messages with message ID similar to the previous message for a certain duration of time gets ignored by the azure webjob function. However,…
dks
  • 151
  • 1
  • 13
0
votes
2 answers

Azure Service Bus Topics and Subscriptions with Worker Role

So I've recently gotten the need to use Service Bus Topic and Subscriptions and I've followed many articles and tutorials. I've been able to successfully implement Microsoft's Get started with Service Bus topics and also successfully used Visual…
0
votes
1 answer

Azure Service Bus Topics, Subscription Lost

I'm working with Azure ServiceBus, standard tier. I'm trying to figure out what's happened since a couple of weeks, (it seems it started when bus traffic has increased, maybe 10-15 messages per second). I have automatic creation of subscription…
nemenos
  • 877
  • 1
  • 10
  • 23
0
votes
2 answers

Azure service bus - Session is duplicating messages in delivery to multiple instances

I working on a system in which I need to manage ordered messages throw a service bus. In my company we have everything on Azure cloud and I'm using Azure service bus for messaging. I read about the session and it seems that it could solve my…
OaicStef
  • 167
  • 2
  • 8
0
votes
0 answers

Azure function apps Subscription topic trigger and BLOB

I am new to Azure and checking if anyone can help me on a solution for the below scenario. Payload(json message) is sent to a BLOB storage and its reference id is sent to Servicebus Topic. I know how to work Servicebus topic function app trigger but…
0
votes
1 answer

How can I use the cancellation token Azure Service Bus (SubscriptionClient)

Regarding the cancellation token, how does one use it to cancel a message? If I do not complete the message, does it get cancelled automatically (e.g. retried later when there is a connection)? Do I need to abandon it? Is the cancellation token only…
0
votes
1 answer

Azure topic and sending message over MQTT

Is it possible to send messages to azure to any custom topic via mqtt. All example that I've found so far work with standard topics 'devices/' + hubName + '/messages/events/' 'devices/' + hubName + '/messages/devicebound/#' Btw, I tried to…
amplifier
  • 1,793
  • 1
  • 21
  • 55
0
votes
1 answer

Storing received message in azure

I have a simple message sender in C# public static async Task SendMessageToTopic(string serviceBusConnectionString, string topic, string message) { const int numberOfMessages = 10; topicClient = new TopicClient(serviceBusConnectionString,…
amplifier
  • 1,793
  • 1
  • 21
  • 55
0
votes
0 answers

New events aren't coming from Azure Service Bus with inactive Azure Function

We are using ServiceBus with a couple of topics and want to try with Azure Functions to make a new function that would be configured with incoming service bus binding for specific topic. We also want to try Consumption plan where Azure itself would…
0
votes
1 answer

Fastest way to know if a BrokeredMessage from Topic will be received by a subscription receiver

I work with azure Topics/Subscriptions for a project. And i want to find the fastest solution to know if a BrokeredMessage will be received by 1 subscription at least. I found a basic solution : Before to send the message, i call GetRules method to…
0
votes
1 answer

Azure Event grid with service bus - The attempt to validate the provided endpoint failed

I'm new to Azure. For our use case, we decided to work with Azure Service Bus in conjunction with Event Grid in order to receive messages. I followed the documentation -…
Swati Patil
  • 19
  • 1
  • 8
0
votes
0 answers

Azure Service Bus: Maintain the order of messages while retrieving from multiple topics

I am using Topics in Azure Service Bus as I want to get message in multiple applications for the single event. So imagine my topics in azure service bus are like these: name | subscription count | enable partitioning | …
0
votes
1 answer

Checking connection to Azure Service Bus

I have some code dependent of Azure Service Bus. I've created an endpoint that checks the availability of my Azure Service Bus topic using the following code: var connectionString =…
ThomasArdal
  • 4,999
  • 4
  • 33
  • 73
0
votes
1 answer

Azure Service Bus Topic-with paired or retry

We are using Azure Service Bus Topic in workflow manager (approval process). In any way, we don’t want to lose/duplicate messages when we push messages to service bus topic. Now there are two options. a. Use Retry the only b. Use Paired service…
0
votes
1 answer

Service bus Topic subscription filter

I am working on an project that publish message to a service bus topic. I have two subscriptions on my topic. Is there a way to filter the message that my subscriber will listen? Assuming this is my message text. { "Data" : { "Name": "Johnny…
Ramppy Dumppy
  • 2,667
  • 7
  • 27
  • 37