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

_From @SeanFeldman on December 20, 2016 5:25_ There are scenarios where purging a queue is necessary - Testing scenarios - Removing all messages because they are no longer needed -...

service side
backlog

# Description When sending as a input to the Orchestrator function an ServiceBusReceivedMessage object the deserialization fails with the following code: ``` C# namespace Functions.ExampleFunction { using System.Threading.Tasks; using Azure.Messaging.ServiceBus;...

What's the purpose of [TransactionPartitionKey](https://docs.microsoft.com/en-us/dotnet/api/azure.messaging.servicebus.servicebusreceivedmessage.transactionpartitionkey?view=azure-dotnet)? The documentation is very confusing and not clear. In the past, for send-via/transactional processing, we needed to set the PartitionKey of the outgoing messages to...

documentation
backlog

How many operations/sec can Premium MU handle? I have been recently throttled on Standard tier and I am considering switching to Premium. Our current monthly spent on ServiceBus would justify...

question

Related to the issue https://github.com/Azure/azure-service-bus-dotnet/issues/160 that might require broker side changes (this issue).

service side
feature
backlog
investigate

# Description When an app is running and listening for messages in a topic suscription, if I regenerate the SASKey that the app uses to connect to the suscription, and...

enhancement
feature
backlog

Using Azure monitoring, it's possible to retrieve metrics for a namespace, but not for individual entities. This is needed for message counts reporting w/o abusing `NamespaceManager` and falling back to...

enhancement
feature
backlog

[Documentaiton](https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-messaging-sql-rule-action) doesn't provide sufficient information about what can be done with rule actions. The only documented functions are `newid()` and `property()`. And even these appear in remarks. It should address...

documentation
backlog

```c# var connectionString = Environment.GetEnvironmentVariable("AzureServiceBus.ConnectionString"); var nsm = NamespaceManager.CreateFromConnectionString(connectionString); var desc = new QueueDescription("blah") { ForwardTo = "doesntexist", ForwardDeadLetteredMessagesTo = "doesntexisteither", }; await nsm.CreateQueueAsync(desc).ConfigureAwait(false); ``` Exception thrown: **ArgumentException** ``` The...

enhancement
backlog

# Description I'd like to have an opportunity to divide my topic's metrics based on additional properties (e.g. different app service instances (as well as a business units) use the...

enhancement
service side
backlog
investigate