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
2 answers

FaultException during sending messages to ServiceBus queue in a batch

I am trying to send a couple of messages to a service bus queue in a batch. I am doing it by using SendBatch method of QueueClient. I am getting a FaultException during this operation: Batching brokered messages with distinct SessionId,…
1
vote
2 answers

Different readers on same service bus queue?

Lets say we have 4 different kind of messages: Type1, Type2, Type3 and Type 4. We have a service bus queue with sessions because of nessesaty of FIFO functionality. We also have two message writers. First message writer takes care of creating…
Timsen
  • 4,066
  • 10
  • 59
  • 117
1
vote
1 answer

Check if Azure Service Bus topic is full

Is there any way to (programmatically) find out, using TopicClient class, if an Azure Service Bus Topic is full before sending message to it?
Marko
  • 141
  • 1
  • 8
1
vote
1 answer

Document message vs message enrichment

I am working on an enterprise system in which I want to replicate data from one bounded context (source) into another bc (destination). I definitely want to store the data in the destination bc, rather than fetch it when required as the volume of…
user644698
  • 209
  • 2
  • 12
1
vote
0 answers

Can SQL filtering on azure service bus cause the messages to be delivered out of order?

I have used a SQL filter on one of the subscriptions for a topic. I can see the messages coming in the subscription without any filter are in correct order but messages are being received out of order for the subscription which has SQL filter on it.…
Shivanki
  • 11
  • 1
1
vote
0 answers

Logic App ServiceBus trigger error : This messaging entity has already been closed, aborted, or disposed

Since yesterday morning, one of our Logic App in charge of reading messages from a ServiceBus Subscription is failing. The trigger failed with this error : "This messaging entity has already been closed, aborted, or disposed.". Messages are still in…
David GROSPELIER
  • 772
  • 1
  • 9
  • 35
1
vote
2 answers

Azure ServiceBus SAS key for a subscription

I have the following architecture: 1 topic where a publisher publishes messages and 3 subscriptions. All messages are dispatched in the 3 subscriptions thanks to a "1=1" rule. The 3 subscriptions are created to provide the message published to 3…
David GROSPELIER
  • 772
  • 1
  • 9
  • 35
1
vote
1 answer

Azure function goes idle when running in Consumption Plan with ServiceBus Queue trigger

I have also asked this question in the MSDN Azure forums, but have not received any guidance as to why my function goes idle. I have an Azure function running on a Consumption plan that goes idle (i.e. does not respond to new messages on the…
Heather_E
  • 13
  • 5
1
vote
2 answers

BrokeredMessage being disposed after await

I'm trying to use a service bus Azure function, where I accept a BrokeredMessage, then perform http requests, and then afterward decide whether to complete, abandon, or dead letter the message. But I've been finding the BrokeredMessage is being…
step5
  • 11
  • 1
  • 2
1
vote
1 answer

Picking only the latest messages in azure service bus queues based on the multiple messages with same message id

We are working on a scenario where user requests for generating some documents (through a web app) and these requests ( a message) are sent to azure service bus queue which when processed will result in generating a document.A user can make…
Jags
  • 772
  • 7
  • 17
1
vote
1 answer

Configuring WSO2 4.8.1 with Azure ServiceBus Queue

Here's my scenario: I've configured a messageStore in my WSO2 esb 4.8.1 as follow:
gladix
  • 302
  • 2
  • 11
1
vote
1 answer

Consume Service Bus or Eventhub ASPNET.CORE Web?

Is there any traditional approach to consume Service Bus or EventHub messages from an ASPNET.CORE Web? Unless you start your own thread or long running task, I can't seem to find any information regarding this.
1
vote
2 answers

Azure Service Bus Filter Not Applied When Defined in ARM Template

I have defined below a fragment of an ARM template which creates a service bus topic, subscription, and rule/filter. The rule is applied along with the topic and subscription, but the value of the filter is 1=1. Why would the expression not be…
Don Lockhart
  • 894
  • 5
  • 12
1
vote
2 answers

scheduled queue property in Python SDK for Service Bus Queue

We are using Azure service bus in our development where we need to use a schedulequeue property of service bus. We found how to use implement it using C# but, how do we use the property in Python SDK for Service Bus Queue?
Tailor Devendra
  • 449
  • 1
  • 5
  • 16
1
vote
1 answer

Azure Service Bus Topic subscription with dynamic sql filter query

I am trying to use Azure service bus to pass messages between multiple azure functions. I am creating topic and subscription in code. But not sure how to add filter query from code. I want to filter messages by id . e.g SqlFilter($"'id' ='{id}'")…
1 2 3
99
100