Questions tagged [azure-servicebus-subscriptions]

182 questions
1
vote
1 answer

Number of messages that can be published to service bus topic at a time

What is the message count limit that can be published to service bus topic at a time using TransactionScopeOption as Suppress.i am publishing message in batches I tried publishing 300 messages in a batch..they got published but- with 400 message…
1
vote
1 answer

How read from 2 Azure Service Buses in different regions and treat it as one

I have nearly identical service buses in 2 separate regions. I am trying to make them be more region agnostic for consuming applications. While looking into things like Azure service bus geo-disaster recovery and message replication and…
1
vote
0 answers

Getting Intermittent "Socket exceptions" when trying to connect the Azure Service bus via Azure Timer function

I am using Microsoft.Azure.ServiceBus nuget package to connect to Azure service bus (pricing tier: standard) via Azure timer trigger function (function triggers in every 2 min). The function is running on a App Plan (Standard S2 1 Instance). The…
1
vote
1 answer

How to add retry options (retry policy) to publisher/subscriber client which uses Azure Service Bus Java SDK?

I'm testing retry options for Azure Service Bus publisher/subscriber client because after a sudden connection failure the client will not retry to send or receive messages. Following is the code for publisher client sendMessage() method and I have…
1
vote
1 answer

Java azure-messaging-servicebus - turn off logs

I am using following library to connect to my Azure Service Bus through Java application com.azure azure-messaging-servicebus 7.2.1 I am able to…
1
vote
1 answer

MassTransit and Azure Service Bus: EnableDeadLetteringOnMessageExpiration for all created subscriptions

We configure MassTransit to use Azure Service Bus in this way: mtConfig.UsingAzureServiceBus((context, busConfig) => { busConfig.Host(new HostSettings { …
1
vote
0 answers

Concurrent request on Elastic Search results null

I'm trying to update documents in the elastic search using C# Nest. I have Azure service bus trigger function which supplies the data to be updated. Below are the steps I'm performing to update document. Get the record from Elastic Search index by…
1
vote
1 answer

MassTransit Azure Service Bus: Changing of Properties (Topics/Subscriptions) are not updated on Azure

We're using MassTransit together with Azure Service Bus and we're facing the following issue: When changing a property e.g. the MaxDeliveryCount on a subscription from 10 to 15: x.UsingAzureServiceBus((context, configurator) => …
1
vote
1 answer

How to filter the Azure Servicebus Topic Subscription based on the dictionary key

I have a Azure Servicebus topie and multiple subscriptions.message will be posted with dictionary type. based on the dictionary key will I be able to filter the message. All the examples are shown based on the hierarchy…
1
vote
1 answer

How can I log subscriptions auto-delete events on the Azure service bus diagnostics logs?

We have an ASP.NET core 2.2 application using Azure Service bus topics and subscriptions. We have configured the auto delete on idle feature on the subscriptions. After an idle time of 10 minutes the subscriptions are automatically deleted by the…
1
vote
1 answer

how to receive N number of messages at time from azure service bus topic subscription

I have one azure service bus topic subscription where messages keeps pump up. Below code is basically receive one message at a time and processing it and relevant result stored into database. I tried to set MaxConcurrentCalls to 10 , but it's…
1
vote
1 answer

Azure Service Bus Deleting specific message from deadletter queue of a subscription

I am using the code below to try to delete a specific message from a deadletter queue of a subscription. I am using PeekBySequenceNumberAsync to get to the specific message. The issue is that that method evidently is not setting a lock token. I am…
evhfla
  • 129
  • 1
  • 7
1
vote
0 answers

Azure service bus (topic) subscription session not closing on request

[edit: I have reformulated and simplified my original question] I am using Azure service bus topic/subscriptions with sessions and I am having issue closing sessions. For background information, my application receives data from a topic subscription…
1
vote
0 answers

Update subscription when active messages in the subscription

I am using latest Azure service bus .Net core apis to manage subscription in a topic. I was trying to Update a subscription using UpdateSubscriptionAsync() API to update the defaultMessageTimeToLive and lockDuration. However when I update the…
Scooby
  • 635
  • 3
  • 9
  • 21
1
vote
1 answer

Azure service bus topic can use for private message

In contrast with Azure Service Bus Queues that allow us to deliver one-to-one, Azure Service Bus Topics allow us to deliver messages one-to-many. This means that we can deliver the same message to multiple clients that are called subscribers. This…
1 2
3
12 13