azure-service-bus icon indicating copy to clipboard operation
azure-service-bus copied to clipboard

☁️ Azure Service Bus service issue tracking and samples

Results 196 azure-service-bus issues
Sort by recently updated
recently updated
newest added

This is a superset of #6 As of today, queues and topics allow 260 characters maximum name length. Subscriptions and rules are limited to 50. 1. What's the reason for...

enhancement
backlog
investigate

Can we have a feature of rate limiting the processing for the messages in the subscriber? Like I have applied a rate limit 5 messages per sec on my queue...

# Description Is there an ability (or planned) to define custom domain name for a service bus endpoint? For example instead of connecting to this endpoint `sb://mysb.servicebus.windows.net...` I would like...

Trying to get an understanding of what the local development story is. RabbitMQ for example can be installed on a dev machine, or run as a Docker container. If I...

feature
backlog

Hi, I'm using ServiceBus queue with maxConcurrentCalls enabled (setted to 100 actually) through AMQP connections. Sometimes, i'm just getting MessageLockLostException on some messages. I do know that this issue usually...

feature
backlog

# Description I create a Peek client for my queue: ``` ServiceBusReceiverClient peekClient = new ServiceBusClientBuilder() .connectionString(conString) .receiver() .queueName(myQueue) .buildClient(); ``` and retrieve the messages: ``` ServiceBusReceivedMessage m = null;...

enhancement
backlog

# Description Organizations grow and evolve. Having all internal systems using the same service bus namespace is not ideal and causes a lot of pain (number of entities limitation, provisioning...

feature
backlog

Hi, I was hoping someone could point me in the right direction. My team would like to get the count of the queues, subscriptions, and dead letter sub-queues that we...

backlog
investigate

When setting up a forwarding queue using the following code ```c# var connectionString = Environment.GetEnvironmentVariable("AzureServiceBus_ConnectionString"); var client = new ManagementClient(connectionString); var queueDescription = new QueueDescription("MainQ") { RequiresSession = true };...

enhancement
backlog

Hello, I'm planning to use service bus queue as the event handler for EventGrid. However, I cannot use a queue with session support enabled. Can you provide any ETA for...

backlog
investigate