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

azure service bus message reappear timeout

If I have a service bus brokered message receiver configured. and it fails for any reason. I call on it message.abandon(); however this means the message will be back again in the queue/subscription. can i configure a timeout after which the same…
Mandar Jogalekar
  • 3,199
  • 7
  • 44
  • 85
0
votes
1 answer

Stateful or Stateless service for processing servicebus queues

I have a Session enabled Azure servicebus queue. I need some form of service that can read from the queue and process them and save the result (in memory for later retrieval). We are using azure servicefabric in our current architecture. I got few…
0
votes
1 answer

Azure Functions fails to receive Azure Queue messages [.net Core 2.0]

When I updated my Azure Functions project to .net core 2.0, it started failing to trigger upon a message on my Queue. TranslatorAPI.cs public static class TranslatorAPI { [FunctionName("TranslatorAPI")] public static void…
0
votes
1 answer

Azure functions with service bus: Unable to "complete" and access properties of a brokered message

This is my working code in a console app: Writer (working code): static void Main(string[] args) { Console.WriteLine("Starting.."); string connectionString =…
90abyss
  • 7,037
  • 19
  • 63
  • 94
0
votes
1 answer

MassTransit temporary queue pile up

(See also MassTransit AzureServiceBus generated queues) I'm configuring a bus with the following using MassTransit 4.0 with AzureServiceBus for transport: Bus.Factory.CreateUsingAzureServiceBus(cfg => { IServiceBusHost host = cfg.Host( …
0
votes
1 answer

Azure Service Bus Queue BrokeredMessage throws “SessionLockLostException” on 'RenewLock ()'

I use Azure Service Bus Queue to receive message and start a long running activity which can last from couple of minutes to couple of hours. During the activity a separate thread renews lock each 30 secs until activity is complete. On…
0
votes
1 answer

Dot net core webjob -> ServiceBus consumer

I have created a very simple publisher and subscriber solution using this tutorial. I want to host the subscriber into azure as continuously executing webjob which consumes all the event sent out to particular topic. Subscriber is a simple dotnet…
0
votes
1 answer

auto-scale vms are not picking up jobs in azure scalesets?

I have a scaleset in azure which will run docker containers inside by grabbing messages from service bus queue. When I spin up the scale-set it is running containers and grabbing messages from queue but when it met the threshold it is scaling vms…
0
votes
1 answer

How to specify a specific queue to a WebJob listener

This is one of those questions that I feel like I've solved in the past, but I don't seem to be able to atm. I have a WebJob, and I simply want to listen for a message in a queue: public static void ProcessQueueMessage( …
Paul Michaels
  • 16,185
  • 43
  • 146
  • 269
0
votes
0 answers

Azure bus service trigger function not working with my named function

I created a service bus queue azure function and I named the project PostEventEmailFunction. Then I named function and the .cs file PostEventEmail.cs which has the function named the same 'PostEventEmail' but the function doesn't get triggered by a…
chuckd
  • 13,460
  • 29
  • 152
  • 331
0
votes
1 answer

Request response two-way Service Bus

I have two questions. I need to implement two way communication between clients and Functions and I am wondering if I should implement their communication using Service Bus or should the clients simply make an Http request to the Azure…
Nandolcs
  • 393
  • 4
  • 11
0
votes
1 answer

How do i know or confirm that Azure service bus received the brokered message?

I am persisting my domain events to my db. I have a webjob which reads those events and then forwards them to the proper queue/topic and then marks the message as IsForwarded in the db. My question is does TopicClient.Send() and QueueClient.Send()…
0
votes
1 answer

Azure Service Bus queue with priority AND Handling docker containers to process the queue messages

I have a question regarding service bus queue mechanism. I have to set up docker containers to run different python scripts. Each scripts does one specific image analysis process. Some of them are clustered. Now my problem is: 1) Python scripts…
sss
  • 81
  • 1
  • 2
  • 11
0
votes
1 answer

Azure Service Bus message retry on TaskCancelationException

I'm using QueueClient message pump with AutoComplete option. When there is an exception thrown from the callback the message is retried and finally deadlettered. Unfortunately when TaskCancelationException or OperationCanceledException is thrown…
85rainbow
  • 11
  • 1
  • 2
0
votes
1 answer

Azure service bus messages stuck in scheduled queue even after scheduled en-queue time

I am trying to schedule messages in azure service bus and few messages are getting stuck in scheduled queue and never returned to active queue even after reaching ScheduledEnqueueTimeUtc The code for sending scheduled BrokeredMessage is very…