Questions tagged [azure-servicebus-topics]

660 questions
5
votes
1 answer

What is the equivalent of Kafka Table on Azure Service bus?

Kafka has the concept of streams and tables. Streams represent the happening of events whereas tables represent the state. Is there a corresponding entity on the Azure resource? Looked at Event Hubs, Event Grids, Servicebus queues and topics. Can't…
rams
  • 6,381
  • 8
  • 46
  • 65
5
votes
2 answers

Azure function service bus trigger running multiple times

I have added a project in my visual studio solution which is a service bus topic trigger function. I am running application with default code but facing problem. Whenever I am adding message to service bus topic, my trigger executes 5-6 times per…
Rahul Jha
  • 874
  • 1
  • 11
  • 28
5
votes
0 answers

MassTransit approach when existing Azure Service Bus topics and security involved

I am implementing a library for publisher and consumers of events to communicate through Azure Service Bus and I thing MassTransit could be a good option. I am able to work publish multiple events with it, and have several consumers receiving them…
5
votes
3 answers

How to send a message to service bus topic from .net core application

I've created API using .net core application, which is used to send set of properties to the SQL DB and also one copy of the message should be sent to the azure service bus topic. As of now .net core doesn't support service bus. Kindly share your…
Parthi
  • 135
  • 1
  • 3
  • 15
4
votes
3 answers

Migration from Microsoft.Azure.ServiceBus to Azure.Messaging.ServiceBus

I'm trying to update this function to make use of Azure.Messaging.ServiceBus and drop Microsoft.Azure.ServiceBus altogether, however cant seem to find any resources for this. Anybody knows how to send a message to a topic using this package? The…
4
votes
1 answer

How to clone message in Azure.Messaging.ServiceBus, Version=7.1.2.0

How can we achieve cloning message in Azure.Messaging.ServiceBus, Version=7.1.2.0 Earlier it was in Microsoft service bus.
4
votes
2 answers

How can you set up an alert when a message arrives in the Dead letter Queue in Azure Servicebus

I want to create an alert in Azure when a message hits the dead letter queue in azure servicebus , I checked the monitoring and cant see an option for when a "NEW" message arrives in the queue. Also is there any way of viewing the DeadLetterQueues…
itye1970
  • 1,654
  • 7
  • 31
  • 62
4
votes
3 answers

What are the disadvantages of an azure service bus topic with only one subscription compared to a queue

I'm currently studding Azure Service Bus and I didn't understand the real benefits of a Queue compared to a Topic with a single Subscription. I see that in both cases it's possible to create different applications in listening to the single queue…
4
votes
1 answer

Calling .Complete or .DeadLetter on BrokeredMessage with Azure Functions ServiceBus triggered functions

I'm working with a Service Bus queue triggered function. When we manually (and crucially immediately) DeadLetter the BrokeredMessage, it does indeed go to the dead letter queue. However, the runtime reports the following error: The lock supplied is…
Alex
  • 37,502
  • 51
  • 204
  • 332
4
votes
5 answers

How to add filters to Topic's subscription in Azure Service Bus

i want add filter for subscription so that different actions are performed on different types of event. How do i add filters to it. Should it be added before sending to topic or it can be done in azure portal?
Ankit Raonka
  • 6,429
  • 10
  • 35
  • 54
4
votes
0 answers

Azure ServiceBus high amount of server errors in metrics

We are using Azure Service Bus in the West Europe region. When I looked in our metrics to investigate a duplicating issue, I noticed that we have a high amount of "server errors". It's nearly 50% of the requests it seems. Now there is not a lot of…
4
votes
1 answer

Azure service bus: Use functions vs service fabric vs web job?

I am considering three ways to to build a service bus topic listener: Azure functions: https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-service-bus Service fabric:…
4
votes
2 answers

Sending message to azure service bus as a string using azure logic app

I am sending a message to a service bus topic using the logic app action "Send Message". When reading it in a console application, if i do this: SubscriptionClient subClient = SubscriptionClient.CreateFromConnectionString(connstr, topicName,…
4
votes
3 answers

Getting Message Stats in Azure Service Bus

I am writing a utility to monitor our Azure Service Bus Topics and Subscriptions. I can get the Topic details, such as name, queued message count and dead-letter message count, but I would like to get the number of messages that have been…
4
votes
1 answer

Where is the Log for Azure Service Bus Topic Subscriptions Messages Sent/Delivered?

After searching in vain... where can I see a log/list of which Azure Service Bus Messages (content?) have been sent to a given Topic+Subscription and which ones have been delivered? Do I have to activate a special feature? If so, which? New or…
GGleGrand
  • 1,565
  • 1
  • 20
  • 45
1 2
3
43 44