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

Getting MessageLockLost exception on brokered message even though lock was not expired

I have implemented a service bus trigger, my sample code is as below. public static async Task Run([ServiceBusTrigger("myqueue", Connection = "myservicebus:cs")]BrokeredMessage myQueueItem, TraceWriter log) { try { …
0
votes
1 answer

Convert QueueClient.Create to MessagingFactory.CreateQueueClient

Trying to convert an implementation using the .net library from using QueueClient.Create to the MessagingFactory.CreateQueueClient to be able to better control the BatchFlushInterval as well as to allowing the use of multiple factories over multiple…
lucuma
  • 18,247
  • 4
  • 66
  • 91
0
votes
1 answer

Azure Service bus Queue creation in C# does not set EnablePartioning or size?

I have the code below for creating a queue in Azure service Bus var cs = azureServiceBusConnectionString; var namespaceManager = NamespaceManager.CreateFromConnectionString(cs); if (namespaceManager.QueueExists(queueName)) …
Paul
  • 2,773
  • 7
  • 41
  • 96
0
votes
1 answer

Fastest way to know if a BrokeredMessage from Topic will be received by a subscription receiver

I work with azure Topics/Subscriptions for a project. And i want to find the fastest solution to know if a BrokeredMessage will be received by 1 subscription at least. I found a basic solution : Before to send the message, i call GetRules method to…
0
votes
1 answer

Testing an Azure Function Service Bus Trigger in the Portal with a Brokered Message

I've created an Azure Function that is using a Service Bus queue trigger to run. It's also using a BrokeredMessage as the queue item parameter because I need to get some data out of the custom User Properties of the message. public async static Task…
Steven
  • 18,761
  • 70
  • 194
  • 296
0
votes
0 answers

Azure Service Bus - must add fake message before send the real one - why?

I'm facing a strange issue, and I ran out of the possible causes. The scenario is Fetch incoming message from queue Process it and then add new message to another queue but the thing is, if I finish the long running task for the incoming message,…
Tony
  • 12,405
  • 36
  • 126
  • 226
0
votes
0 answers

Azure Service Bus: Maintain the order of messages while retrieving from multiple topics

I am using Topics in Azure Service Bus as I want to get message in multiple applications for the single event. So imagine my topics in azure service bus are like these: name | subscription count | enable partitioning | …
0
votes
1 answer

Azure ServiceBus Topics and Queues

Good afternoon guys, I'm going through an interesting situation. I have a topic and this topic has two queues, and in my source code, I'm going to send a message to the topic. But the problem is that in one of the queues, the message should be read…
0
votes
2 answers

Difference between serverWaitTime and operationTimeout in Azure Service Bus SDK/NuGet

I am trying to understand the difference between: serverWaitTime (in ISessionClient.AcceptMessageSessionAsync(String, TimeSpan))…
0
votes
1 answer

Azure Service Bus , receive one message at a time HOW?

Can someone please help how to modify this code to receive only one message at a time? Private Sub Button_SEND_Click(sender As Object, e As EventArgs) Handles Button_SEND.Click Dim client As QueueClient =…
0
votes
0 answers

Windows Service Bus Connection string for IIS

I use in house windows service bus setup on my VM and configure 1 service bus and 2 queue into the same When I am try to access them from Visual studio its work fine I used SAS authentication , following is my connection…
0
votes
1 answer

SubscriptionClient with Sessions issue: java.lang.UnsupportedOperationException

Using Azure Service Message Bus Topics and Subscriptions. Created a Topic aaaa and Subscription zzzsubscription - session aware. Using the below code to send messages to Topic with Session IDs: String…
0
votes
1 answer

Azure Service Bus IQueueClient.registerSessionHandler: Unable to consume messages continuously from Queue/Topic

Requirement: I need to get all the messages from all the sessions from the queue. registerSessionHandler should consume messages as soon as they appear in the queue. Issue: the code accepts the messages that are pertaining to one of the session id…
0
votes
1 answer

Azure Service Bus Queue: Load Balancing Capability

I'm doing research on Azure service bus queue load balancing. I've found that "As the load increases, more worker processes can be added to read from the queue." Does it mean that I need implement code to auto scale the worker roles, or service bus…
Jay
  • 133
  • 2
  • 13
0
votes
2 answers

ETIMEDOUT on Azure Service Bus with amqp

We are using the amqp10 package for nodejs to receive messages from a queue on azure's service bus. We are sometimes getting an error { Error: read ETIMEDOUT at _errnoException (util.js:1022:11) at TLSWrap.onread (net.js:615:25) code: 'ETIMEDOUT',…
njLT
  • 464
  • 6
  • 21