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

Logic App - Cannot find (NotFound) queue with slashes in the name

I am trying to have a Service Bus queue trigger my flow in Logic App. I have used service Bus queue trigger and passed the queue name that is 'test/test' - I am trying to have it work for queues with slashes in the name. It does not work, I receive…
1
vote
1 answer

Azure WebJob Service Bus requeue message infront of the queue on error

I have a WebJob getting messages from Service bus which is working fine. If the webjob fails to finish or throws exception the message is sent back in the queue which is fine in itself. I have set MaxDequeueCount to 10 and it is not a problem if it…
1
vote
1 answer

Combine 65000 small xml files in blobs storage and copy them into data lake as big CSV files

I have around 65000 small xml files (around 1 to 3 kb per file) per hour in Azure blob storage. Its telemetry data and will be there in blob each hour. I want to combine them all and create big xml files(hourly one file or so) and convert that into…
1
vote
2 answers

Microsoft.Azure.ServiceBus .net standard - How To Batch Receive

I am looking to migrate some work that uses Microsoft.ServiceBus over to Microsoft.Azure.ServiceBus. This is so that we can target .net standard. The previous code uses ReceiveBatchAsync in order to retrieve multiple messages within a single…
Mark W
  • 705
  • 1
  • 9
  • 20
1
vote
2 answers

Scalable Request Response pattern using Azure Service Bus

We are evaluating "Azure service bus" to use between web server and app server for request response pattern. We are planning to have two queues: Request Queue Response Queue Webserver will push a message to request queue and subscribe to response…
Pragmatic
  • 3,093
  • 4
  • 33
  • 62
1
vote
1 answer

Receive information about a topic subscription on Azure Service Bus

I have a subscription to a topic using filters in Azure Service Bus develop with Python 3.x and when I wait the information sent to that topic (information that pass the filter) I can not receive it. I need to create a daemon that is always…
1
vote
1 answer

Control queue concurrency by tenant in multi-tenancy system

I have a multi-tenancy system and need to guarantee FIFO (first-in-first-out) processing of queued messages by tenant, i.e. each tenant would get its own MaxConcurrentCalls = 1. To be done in Azure and technology not fixed. I know this could be…
Benjamin E.
  • 5,042
  • 5
  • 38
  • 65
1
vote
1 answer

Getting IotHub DeviceId with azure functions

I have setup routing to a Service Bus Queue using Azure IoT Hub. I followed this tutorial to get it working: https://azure.microsoft.com/en-gb/blog/how-to-use-azure-functions-with-iot-hub-message-routing/. In my function I am trying to get the…
1
vote
2 answers

How to send scheduled message to Azure Service Bus with JMS

Azure Service Bus has capability to send scheduled messages. Sending scheduled messageses with AMQP protocol described here:…
qwazer
  • 7,174
  • 7
  • 44
  • 69
1
vote
0 answers

Event Hub message distribution

We are using IoT Hub for ingesting device data. We currently are making use of 10 partitions to process messages. Running 5 workers would therefore have each instance processing 2 partitions. What we have found is if a device connects and offloads…
1
vote
2 answers

Java Azure SB Connection with SAS token

ServiceBusConfiguration.configureWithSASAuthentication(config.getSbNamespace(), "RootManageSharedAccessKey", SAS_KEY, ".servicebus.windows.net"); ServiceBusContract service = ServiceBusService.create(); service.getTopic(topicID); This code snippet…
DDovzhenko
  • 1,295
  • 1
  • 15
  • 34
1
vote
2 answers

send message to azure service bus queue from web api

I am trying to get started with Azure Service Bus queues. following this article https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-dotnet-get-started-with-queues the only difference is that I am trying to do this from within…
1
vote
2 answers

Output multiple Brokered Messages to an Azure Service Bus Topic(s) with Azure Functions

Is there a way you output multiple Brokered Messages to an Azure Service Bus in Azure Functions? by default you can output a single Brokered Message but not multiple. Currently using the SDK to do this but wondered if there is a way you can do this…
1
vote
1 answer

Restrictions on creation of ACS namespace - Jun 30

As per this blog https://azure.microsoft.com/en-us/blog/acs-access-control-service-namespace-creation-restriction/ creation of new ACS enabled Service Bus namespace is restricted from Jun 30 2017. However, I am able to create them using powershell…
ALK
  • 11
  • 1
1
vote
1 answer

Azure Service Bus Shared Access Signature

We're looking to limit the power our projects have over manipulating our Azure Service Bus. Currently all projects have visibility of all topics and queues, is there a way for a single service bus to have multiple shared access keys which give…
Nick Spicer
  • 2,279
  • 3
  • 21
  • 26
1 2 3
99
100