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

Cant create queue

For a test I created a free tier IoT Hub and basic service bus. But when I click on the "+ Queue" and fill out all the fields; setting name, size (1gb), message to to live (14 days, default), lock duration (30 seconds, default) and only "Enable…
fUrious
  • 434
  • 5
  • 14
5
votes
1 answer

Azure Service Bus queue message handling

So I have an azure function acting as a queue trigger that calls an internally hosted API. There doesn't seem to be a definitive answer online on how to handle a message that could not be processed due to issues other than being poisonous. An…
5
votes
2 answers

Azure Function - Throttle the Service bus triggering

I am currently evaluating the use of a service bus and azure function to trigger some work that needs to be done via a downstream api call. It is all pretty standard except that I don't have a good handle on what happens when the downstream system…
lucuma
  • 18,247
  • 4
  • 66
  • 91
5
votes
0 answers

Azure Service Bus Queues AutoRenewTimeout produces a "SessionLockLostException" on '.Complete()'

I have an Azure Service Bus Queue. It's configured with: Requires Duplicate Detection: true Requires Session: true Enable Partitions: false Max Delivery Count: 10 Lock Duration: 1 minute Batch Operations Enabled: true Deadletter on Expiration…
user310988
5
votes
1 answer

Send message to azure queue Microsoft.ServiceBus.Messaging.MessagingEntityNotFoundException

I'm trying to follow along with this tutorial https://azure.microsoft.com/en-us/documentation/articles/service-bus-dotnet-multi-tier-app-using-service-bus-queues/ on azure queues but I opted for using an MVC app instead of the web role. I have…
helpdevelop
  • 141
  • 1
  • 6
5
votes
1 answer

Azure SB paired namespace - How does syphon work?

I was reading about paired namespaces on Azure Service Bus and plan to implement it in a system as a kind of failover for my queues (also planning partitioning). As I understand, the syphon is simply my usual receivers that I set up with…
user2413912
  • 579
  • 6
  • 19
5
votes
1 answer

Azure SB queues sends messages to disabled dead letter queue

Why does my Azure Service Bus queues send messages to the dead letter sub queue when it's not enabled? Right from the beginning I made sure expired messages wouldn't be moved to the dead letter queue (or so I thought). In Visual Studio Server…
5
votes
2 answers

Azure Service Bus messages not being received

I am sending a message from web role to worker role. Earlier these messages were received properly and instantly but now out of nowhere some messages are not being received, even though the content of all messages are same. Like if i send one…
Bitsian
  • 2,238
  • 5
  • 37
  • 72
4
votes
1 answer

Azure Service Bus Session FIFO - How Should Consumers Handle Processing Errors?

Please would you suggest how to handle consumer errors in an Azure Service Bus subscription set up to ensure FIFO processing using a session IDs? (See…
4
votes
2 answers

Azure Function (Service Bus Trigger) Not Getting started when a new message comes into the service bus queue

Created an Azure Function which is a service bus triggered in Visual Studio and published to Azure from Visual Studio. Whenever a message goes to queue, the function is running fine from local when manually run. But the expectation is the function…
Ramdas Metla
  • 133
  • 3
  • 10
4
votes
1 answer

Get active message count with the new Azure.messaging.servicebus

Is there any option to retrieve the Active Message Count of a queue using the new Azure.messaging.servicebus package? With the old Microsoft.azure.servicebus you could use ManagementClient that exposes GetQueueRuntimeInfoAsync(String,…
4
votes
1 answer

How to clone message in Azure.Messaging.ServiceBus, Version=7.1.2.0

How can we achieve cloning message in Azure.Messaging.ServiceBus, Version=7.1.2.0 Earlier it was in Microsoft service bus.
4
votes
1 answer

How can Kubernetes Load balance consume queue message (SQS or other) and pass it to pod?

I am planing on using AWS SQS to receive messages from server and then instantly have Kubernetes Load Balancer consume them and pass each message to one of the pods. My biggest concern is in which way can Load Balancer be triggered by AWS SQS. Is…
4
votes
1 answer

Connection to Azure Service Bus using Java Spring Application - Timeout

I have written a client which tries to connect to Azure service bus. As soon as the server starts up i get the below errors and i receive no messages present at the queue. I tried replacing the sb protocol with amqpwss, but it dint…
4
votes
0 answers

How to resolve dependency issues with C# script csx file in visual studio code?

I am trying to create an azure function program with a service bus queue trigger template using a csx file. But I am having issues resolving dependencies. To be honest, i am very confused about the project structure that is mentioned in [this doc]…