Questions tagged [azure-servicebus-queues]

Windows Azure Service Bus Queue, questions regarding relay, topics and queues

Windows Azure Service Bus Queues are a set of cloud-based, message-oriented-middleware technologies. These “brokered” messaging capabilities can be thought of as asynchronous, or decoupled messaging features that support publish-subscribe, temporal decoupling, and load balancing scenarios using the Service Bus messaging fabric. Decoupled communication has many advantages; for example, clients and servers can connect as needed and perform their operations in an asynchronous fashion.

Service Bus Relay offers the ability to publish a WCF endpoint in the cloud, acting as a bridge to bypass firewalls, allowing duplex operations.

1015 questions
0
votes
1 answer

Queue contains 2 Active Messages, But ReceiveBatch and Receive return null

I am trying to write some unit tests to verify all of my queue operations are working as expected, but I have run into the strangest situation: I have the following code in my [TestInitialize] method: var ns =…
Nathan Tregillus
  • 6,006
  • 3
  • 52
  • 91
0
votes
1 answer

Azure IoTHub ServiceBus to Cloud to Device messages?

Is it possible to add Azure Service Bus to queue Cloud to Device messages? When I receive messages I have to be sure that all messages are in the same order that they came to IoTHub. I couldn't find if standard queue in IoTHub provides it. Second…
0
votes
1 answer

latency calculation of service bus queue

we have the several component in the application which communicate via service bus queue and topics. We wanted to build the analytics on top of it using the angular JS. We wanted to show the queue length and average time of latency at every min and…
0
votes
1 answer

Modify Azure Service Bus Message set with ScheduledEnqueueTimeUtc

Can a queue message in Azure Service Bus that has been set with ScheduledEnqueueTimeUtc be modified or deleted before its enqueued datetime? In some cases I need to change or delete a message submitted for future delivery.
JeffC
  • 97
  • 8
0
votes
1 answer

What is Service Bus's equivalent to MSMQ's CanRead?

I am converting an application which used MSMQ to use an interface with adapters than can handle either MSMQ or Service Bus (either on-prem or Azure versions) queues. One of the application's usages of MSMQ was a configuration inspector feature to…
DannyMeister
  • 1,281
  • 1
  • 12
  • 21
0
votes
1 answer

Duplicate detection window on Azure Service Bus Queue

I have an Azure Service Bus Queue with duplicate detection enabled. The default time window for the duplicate history is 10 minutes, which I would like to change. However whenever I do this within the Azure portal it seemingly accepts the change…
tobycoleman
  • 1,664
  • 1
  • 18
  • 34
0
votes
4 answers

Azure Service Bus Queue

I like to add azure service bus to one my projects. And the project does a few different tasks: sending email, processing orders, sending invoices etc. What I am keen to know is, do I create seperate queues to process all these different tasks ? I…
Libin Joseph
  • 7,070
  • 5
  • 29
  • 52
0
votes
2 answers

What is the order of messages delivered by QueueClient.Receive()

In which order does QueueClient.Receive() deliver messages? I have been running some tests and what I can see a few of the messages (top-most ones I guess) are delivered over and over again if you don't Complete() them. Is there a way to force it…
Gökhan Kurt
  • 531
  • 5
  • 13
0
votes
1 answer

MassTransit and MaxConcurrentCalls not behaving as expected?

I'm using MassTransit as my messaging framework, running on top of Azure Service Bus. I'm running MassTransit from inside a WebJob (although I don't think that matters) Now I'm trying to get MassTransit to process multiple messages at the same time,…
0
votes
1 answer

MassTransit on Azure Service Bus throws MessageSizeExceededException

I'm using MassTransit to send and receive microservice commands. It sends and receives fine when I run it locally (connecting to the Azure Service Bus instance remotely). E.g. I send a command from a local console application to the remote…
hofnarwillie
  • 3,563
  • 10
  • 49
  • 73
0
votes
1 answer

Azure Service Bus timeout exception with NancyFX

I have a NancyFX API, and when one of the endpoints is hit, I need to kick of a longer running asynchonous task that's decoupled from the endpoint itself. So I'm trying to use a Azure Service Bus queue. I'm successfully writing a message to the…
Dan
  • 5,692
  • 3
  • 35
  • 66
0
votes
0 answers

Azure ServiceBus sendQueueMessage REALLY slow

I'm using a simple node.js script to send a message to a service bus. It suddenly seems to have slowed down to the point where a single operation is taking 16 seconds. Anyone have any thoughts on that? I can't seem to find anything on Azure that…
Darren
  • 1,071
  • 1
  • 15
  • 39
0
votes
1 answer

What is the difference between the ServiceBus/ServiceBusTrigger methodology compared to that of using QueueClient, when using Azure Bus Service?

So I'm currently trying to get a Azure Bus Service to work in which I create a Queue and then a message is put on the queue and then received else where, and some code is ran using the data the message passed through. I've got everything set up and…
0
votes
1 answer

Fair Queuing of Publishers in Azure Service Bus

I am looking for a way to manage streams of messages from multiple publishers. A contrived example is this. Each of my publishers are submitting jobs that can be broken into smaller components that can be processed in any order. Each component takes…
Sudsy
  • 931
  • 7
  • 16
0
votes
2 answers

Making a request response queue with Azure Java SDK

I'm trying to implement something similar to https://code.msdn.microsoft.com/Brokered-Messaging-Request-0ce8fcaf#content in Java, but can't find functionality from the Service Bus Java SDK to match the QueueClient.AcceptMessageSession used in the…