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
6
votes
1 answer

Azure Service Bus Subscriber Deadletter

I've looked everywhere for information on this but can't seem to find what i'm looking for. I've got an azure topic, with one subscription. The handler for the subscription failed some messages, they've been put on the deadletter queue. I can access…
Jamez
  • 1,559
  • 1
  • 15
  • 26
6
votes
1 answer

How should I set rebus up for one producer and many consumers

I am going through the samples and reading the docs but I am still not sure of how to configure rebus for my scenario (or that using the bus is a good fit). I have one producer of Tasks to do, lets say ImportOrder and CalculateOrderPrice I want to…
Jon
  • 561
  • 4
  • 14
6
votes
1 answer

ServiceBus RetryExponential Property Meanings

I'm having a hard time understanding the RetryExponential class that is used in conjunction with QueueClients (and I assume SubscriptionClients as well). The properties are listed here, but I don't think my interpretation of their descriptions is…
Paul
  • 1,590
  • 5
  • 20
  • 41
6
votes
1 answer

Azure Service Bus Queue Count

I have a service bus Q and from the Azure portal I can more or less see how many entries the service bus Q contains. How can I get this count using their management API? I have perused the docs but have been unsuccessful in finding an answer.
Mike W
  • 559
  • 8
  • 20
6
votes
2 answers

Azure ServiceBus & async - To be, or not to be?

I'm running Service Bus on Azure, pumping about 10-100 messages per second. Recently I've switched to .net 4.5 and all excited refactored all the code to have 'async' and 'await' at least twice in each line to make sure it's done 'properly' :) Now…
user1275154
  • 1,120
  • 1
  • 12
  • 24
6
votes
4 answers

Microsoft Service Bus on a Windows Workgroup

I just started playing with Microsoft Service Bus. Now my personal challenge is that I'm doing this after hours, on my own time, etc, which means I am using VMs and Non-Domain pcs. These guys are all workgroup. I've had pretty decent success,…
Nick Jacobs
  • 579
  • 2
  • 9
  • 29
6
votes
2 answers

Azure Service Bus Queue ScheduledEnqueueTimeUtc Delayed

I am encountering an odd problem. I have a cloud service A that puts messages into a service bus queue for another cloud service B to read. Cloud service B can take about a second to process what it needs to do, then it puts a message back into a…
Brad Johnson
  • 91
  • 1
  • 7
6
votes
0 answers

Autoscaling azure roles based on Service Bus queue length

Autoscaling Application Block from Microsoft Enterprise Library (WASABi) is a nice piece of software and it allows to change number of instances of your role based on the length of Storage Account Queue. Can I use Service Bus Queue instead of…
Ana Deer
  • 71
  • 1
  • 6
6
votes
2 answers

Azure Service Bus speed

When I try sending 1000 simple messages to my Azure Service Bus queue from a simple console application (not in debug mode), it takes 90 seconds with http mode. With standard nettcp mode it takes 70 seconds. Is the speed everyone else gets also? I…
Martin
  • 1,521
  • 3
  • 18
  • 35
5
votes
3 answers

Service Bus Message Properties in Azure Functions?

I've seen some older posts on this topic, but nothing up-to-date and related to the newer Service Bus and Azure Functions stacks, so thought I'd ask the question again. On an Azure Function using a Service Bus Trigger, is there a way to access the…
FactoryOptimizr
  • 306
  • 3
  • 13
5
votes
1 answer

Test of sending & receiving message for Azure Service Bus Queue

I would like to write an integration test checking connection of the Python script with Azure Service Bus queue. The test should: send a message to a queue, confirm that the message landed in the queue. The test looks like this: import…
5
votes
2 answers

Message bus and Message queue understanding

I would like to know if my understanding of Message Bus and Message Queue workings is correct. First thing first, I need to clear the naming, a service bus is used interchangeably with message bus? It is a publisher-subscriber type of system where…
user9124444
5
votes
1 answer

Is it possible to map a custom domain (Via C Name or A Record) to an azure event hub

Would it be possible to map a url to point to an instance of the azure event hub? Could I add a CNAME to a domain and point to sb://.servicebus.windows.net I think that A Records map to a static IP address, and as there doesn't seem to be an option…
Mark McGookin
  • 932
  • 1
  • 16
  • 39
5
votes
3 answers

Azure service bus - Read messages sent by .NET Core 2 with BrokeredMessage.GetBody

I am using .NET Core 2 for an application which needs to put a message on the Service bus and read by a legacy .NET 4.6 receiver. The receiver listens to messages from other legacy applications as well. Legacy sender: UserData obj = new…
lohiarahul
  • 1,432
  • 3
  • 22
  • 35
5
votes
1 answer

Azure WebJob concurrency when using ServiceBusTrigger

I have been using Azure Storage Queues to feed a WebJob, using the QueueTrigger attribute. I configure my QueueTrigger to dequeue a number of items for concurrent processing, like this: public static void Main() { JobHostConfiguration config =…