Questions tagged [azureservicebus]

Microsoft Azure Service Bus provides a hosted, secure, and widely available infrastructure for widespread communication, large-scale event distribution, naming, and service publishing. Endpoints can be located behind network address translation (NAT) boundaries, or bound to frequently-changing, dynamically-assigned IP addresses, or both. Service Bus comes with a 99.9% uptime SLA.

Microsoft Azure Service Bus provides a hosted, secure, and widely available infrastructure for widespread communication, large-scale event distribution, naming, and service publishing. Service Bus provides connectivity options for Windows Communication Foundation (WCF) and other service endpoints – including REST endpoints -- that would otherwise be difficult or impossible to reach. Endpoints can be located behind network address translation (NAT) boundaries, or bound to frequently-changing, dynamically-assigned IP addresses, or both.

Service Bus provides both “relayed” and “brokered” messaging capabilities. In the relayed messaging pattern, the relay service supports direct one-way messaging, request/response messaging, and peer-to-peer messaging. Brokered messaging provides durable, asynchronous messaging components such as Queues, Topics, and Subscriptions, with features that support publish-subscribe and temporal decoupling: senders and receivers do not have to be online at the same time; the messaging infrastructure reliably stores messages until the receiving party is ready to receive them.

Runs anywhere, connects nearly anything

Azure Service Bus is a generic, cloud-based messaging system for connecting just about anything—applications, services, and devices—wherever they are. Connect apps running on Azure, on-premises—or both. You can even use Service Bus to connect household appliances, sensors, and other devices like tablets or phones to a central application or to each other.

Build robust cloud solutions that scale to meet demand

Asynchronous messaging patterns are the architectural cornerstone of reliable and scalable applications. Integrating cloud resources like SQL Azure, Azure Storage, and Azure Websites with Service Bus messaging ensures smooth operation under heavy and variable load with the durability to survive intermittent failures.

Manage message delivery in the cloud

Queues offer simple first in, first out guaranteed message delivery and supports a range of standard protocols (REST, AMQP, WS*) and APIs. Topics deliver messages to multiple subscriptions and fan out message delivery at scale to downstream systems.

Connect on-premises applications to the cloud

Service Bus Relay solves the challenges of communicating between on-premises applications and the outside world by allowing on-premises web services to project public endpoints. Systems can then access these web services, which continue to run on-premises from anywhere on the planet.

3572 questions
1
vote
0 answers

Logic App not scaling to match ServiceBus throughput

I'm currently testing a very simple Logic App, which is triggered when a message is received in a topic subscription (auto-complete), and sends the content as an HTTP request to our server. It was able to handle a small volume, about 20 messages per…
Andrew Williamson
  • 8,299
  • 3
  • 34
  • 62
1
vote
1 answer

Azure Service Bus Event Grid

I am using event grid to trigger an azure function, from message entering the topic it takes 10-15 minutes (no volume 1 message at a time) before event grid picks up the "event" if it ever does and tirggers the function which instantly consumes…
user1552172
  • 614
  • 1
  • 9
  • 27
1
vote
1 answer

What are the steps to migrate from on-premises Windows Service Bus to Azure Service Bus

I have 40+ micro-services using Windows Service Bus 1.1 with lots of Queues/Topics/Subscriptions and messages, and I am going to use Azure Service Bus instead. How can I move all the information and the farm on-premises to Azure?
Hossein Margani
  • 1,056
  • 2
  • 15
  • 35
1
vote
1 answer

How to move error message to Azure dead letter queue using Java?

We are using Azure Service Bus Queues for exchanging messages between different systems. We would like to move the invalid messages to Dead Letter Queue using Java code. I am able to move the messages to the Main queue, but not to dead letter…
1
vote
1 answer

Can I filter an Azure ServiceBusService using node.js SDK?

I have millions of messages in a queue and the first ten million or so are irrelevant. Each message has a sequential ActionId so ideally anything < 10000000 I can just ignore or better yet delete from the queue. What I have so far: let azure =…
imjared
  • 19,492
  • 4
  • 49
  • 72
1
vote
0 answers

Azure Service Bus Unknown Error code ECONNRESET

We are using NodeJS SDK for reading messages, pushing message in ServiceBusQueue in Azure since past few months. We have started facing an exception "ECONNRESET" while reading and pushing message in the SericeBusQueue with the frequency of every 3-4…
Tailor Devendra
  • 449
  • 1
  • 5
  • 16
1
vote
1 answer

ColdFusion pass enum to a Java method

I am using Azure Service Bus to receive the topic subscription messages and I need to pass the field of an enum( com.microsoft.azure.servicebus.ReceiveMode.RECEIVEANDDELETE ) to a method. Any suggestions greatly appreciated!
1
vote
2 answers

Function gets stuck with runtime v2 and service bus topic trigger

I've created a function with runtime v2. The function gets stuck periodically due to out of data in the service bus topic. The function remains down and doesn't work. One way to restore the function back to work is to enter the portal, and look at…
1
vote
1 answer

Azure Event Hub Synchronous Mechanism

I am new to Azure Event hub. As per the examples there is a "Send" method in the Azure Event Hub client which sends the event synchronously, but is there something synchronous in the Receiver end. To implement a Receiver we have to use the Event…
code_blue
  • 523
  • 2
  • 9
  • 19
1
vote
0 answers

Azure Service Bus - Receive messages from two separate subscriptions in parallel

I have a service fabric stateless service that listens to a service bus subscription for messages using this code: Client.OnMessage(receivedMessage => { if (Client.IsClosed) { return; } ProcessMessage(new…
wntrsux
  • 123
  • 1
  • 1
  • 4
1
vote
1 answer

MassTransit + azure service bus consuming custom type messages

I try to consume custome type message by my MassTransit service that subscribes to a azure service bus topic. The messages has custom type and data of message stored is in custom properties. Here is an image of message from azure service bus…
JakubW
  • 55
  • 6
1
vote
0 answers

MassTransit + Azure service bus publish subscribe

I created a service based on MassTransit that subscribes to a topic on azure service bus. Service that publishes messages is not based on MassTransit. When trying to consume messages I get such…
1
vote
2 answers

Logic app and service bus queue not scaling logic app run-instances properly

Hi i have a performance issue regarding Logic Apps and a Azure Service bus queue. So i have a logic app looking like this: (NOTE: The delay is there to simulate a bunch of connectors/actions that take about 2 seconds to run, also i'm using lock…
H4p7ic
  • 1,669
  • 2
  • 32
  • 61
1
vote
1 answer

Re-trigger Azure Function with abandonded Service Bus messages

I have a Service Bus topic that has 400,000 messages pushed to it from an Azure Function. I have a second Azure Function that receives the messages as a trigger. When the 2nd Function ran, it successfully processed 98% of the messages. It left me…
1
vote
1 answer

I'm trying to connect to an Azure service bus queue using PHP and I keep getting this error

Fatal error: Uncaught exception 'GuzzleHttp\Exception\RequestException' with message 'cURL error 1: Protocol "sb" not supported or disabled in libcurl (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)' in …
plank223
  • 29
  • 6