Questions tagged [servicebus]

Windows Service Bus is both an on-premises and Windows Azure hosted service. Service Bus provides brokered, durable messaging facilities with pub/sub as well as relay services connecting on-premises systems to the cloud.

Windows Service Bus is both an on-premises and Windows Azure hosted service. Service Bus provides brokered, durable messaging facilities with pub/sub as well as relay services connecting on-premises systems to the cloud.

1047 questions
11
votes
2 answers

Azure Service Bus: What is a request and a message?

Our Application is using Azure service bus for messaging purpose. We created few topics and subscribers. We will send around 500 messages per day, but in the graph it shows hundreds of thousands of requests for 500 messages. Our billing price is…
10
votes
2 answers

Enterprise Service Bus Terminology

Can anyone explain at a beginner-intermediate level the terminology of "bus", "transport" and "endpoint" in the context of an enterprise service bus? I'm a C# developer with a few years experience now, but only just starting working with an ESB. It…
Neil Barnwell
  • 41,080
  • 29
  • 148
  • 220
10
votes
1 answer

Azure ServiceBus: wait until all subscribers processed a message

My scenario is that I'm planning to create a ServiceBus topic with multiple (unknown) number of subscribers. They can use topic filters, so won't process each message from the topic. I need for a given message (Id) to wait until all handlers have…
Sasha
  • 8,537
  • 4
  • 49
  • 76
10
votes
3 answers

How do you support FIFO message ordering with Azure Service Bus partitioned queues/topics?

I assume that the trade off of using partitioned queues and topics, is that the message ordering is no longer guaranteed. As the messages are by default sent round-robin to each of the fragments/partitions, then it would mean the message ordering is…
Geoff Smith
  • 585
  • 1
  • 5
  • 14
10
votes
7 answers

Alternatives to NServiceBus that doesn't use MSMQ

I think the title sums it all .... We have a .NET 2.0 system trying to implement a distributed pub/ sub model. I came across NServiceBus, RhinoBus and MassTransit. Unfortunately, these are MSMQ based. I am tasked to figure out pub/ sub alternatives…
G33kKahuna
  • 1,730
  • 7
  • 24
  • 39
9
votes
4 answers

azure service bus queue read bulk message using nodejs

I want to fetch messages in bulk from azure service bus queues using node js azure package, Now i am able to fetch message using set-interval.is there any other way to fetch messages in bulk.
9
votes
1 answer

Is Azure Service Bus message pump really event-driven?

So we've been looking into the Azure Service Bus recently and we're a bit confused as to whether we should use an infinite loop to poll the queue/subscription or whether we should use the OnMessage callback/message pump functionality. What is going…
Andy Furniss
  • 3,814
  • 6
  • 31
  • 56
9
votes
3 answers

Azure Service Bus Queue Extremely Slow

This evening we were observing extremely slow queuing time. Our trace data told us that the line await queueClient.SendAsync(message); was taking 45-60 seconds. This was happening for two queues which had been around for a long time. They hardly…
HaukiDog
  • 121
  • 1
  • 5
9
votes
3 answers

Auto-expire orphaned Subscription (Azure ServiceBus Messaging SubscriptionClient)

The scenario I have in mind is this: Service Bus is used for instance-to-instance communication, so a Subscription is unique per service instance. The end result is that if an instance does not shut down gracefully, its subscription does not get…
Andrei
  • 1,015
  • 1
  • 11
  • 19
9
votes
4 answers

Azure Service Bus BrokeredMessage has already been consumed?

I'm having an intermittent problem with the Azure Service bus. Sporadically, placing a message on the bus causes the following exception: TYPE: InvalidOperationException MESSAGE: The operation cannot be performed because the brokered message…
Nik Pinski
  • 317
  • 3
  • 9
8
votes
4 answers

How to move a service bus messge to deadletter in service bus queue trigger function

How can we move a service bus queue message to the dead letter through service bus queue trigger function
jaas
  • 131
  • 1
  • 5
8
votes
1 answer

Scale Service Fabric based on service bus queue size

I have a set of stateless services These services are connected to service bus Each service looks at 3 specific service bus queues What I would like to do is to add the number of messages on across these queues If the total is above a specific…
Paul
  • 2,773
  • 7
  • 41
  • 96
8
votes
3 answers

Deserializing ServiceBus content in Azure Logic App

I'm trying to read the content body of a message in an Azure Logic App, but I'm not having much success. I have seen a lot of suggestions which say that the body is base64 encoded, and suggest using the following to…
Andrew Williamson
  • 8,299
  • 3
  • 34
  • 62
8
votes
4 answers

Service Bus for Windows Server - The API Version is not Supported

I'm considering developing an app to run on-premise and off-premise and was hoping to use the Service Bus to communicate between services. I have 2 problems: My corporate network is blocking access to my Azure endpoint so I can't use my genuine…
Maxitone
  • 83
  • 1
  • 6
8
votes
1 answer

Why does BrokeredMessage.RenewLock() only renew the lock for a few seconds?

I've got a BrokeredMessageContext class which uses a Timer to periodically check and renew the lock on a BrokeredMessage instance in case the process that handles this message runs for longer than expected. It renews the lock by calling the…
Øyvind
  • 1,600
  • 1
  • 14
  • 33
1 2
3
69 70