3,878 questions
-1
votes
1
answer
348
views
Managed Identity on Databricks - DefaultAzureCredential failed to retrieve a token from the included credentials
I am trying to send a message to a service bus in azure.
But I get following error:
ServiceBusError: Handler failed: DefaultAzureCredential failed to
retrieve a token from the included credentials.
...
-1
votes
1
answer
432
views
Python script to access Azure Service Bus with Managed identity
I want to send a message to a servicebus from Visual Studio Code, in a simple python script. I want to access the service bus using a managed identity (in this case my own user). From visual studio it ...
0
votes
1
answer
87
views
Exception has occurred: UnicodeDecodeError
I have a working Python script receiving messages from Azure Servicebus and saves them to a T-SQL table. The messages comes in a JSON string. However sometimes I'll get the error - 'utf-8' codec can't ...
-1
votes
1
answer
311
views
Use managed identity with azure service bus messaging [closed]
I have been trying to Spring Messaging Azure Service Bus (as described here) with a managed identity. However, I get a bunch of error messages from ChainedTokenCredential, including "Azure ...
0
votes
2
answers
155
views
Azure functions decoding error for IotHub device connection state message schema
I've a Azure function in Python 3.11 and Linux hosting.
It is throwing an error when trigger is service bus queue message,
which is having IoTHub device connection state message with schema like this
...
0
votes
2
answers
529
views
Azure service bus message auto renewal not working
I have a python service which uses azure service bus topic for sending and receiving messages. I am using azure-servicebus==7.12.2.
Max timeout I can set on azure portal is 5 minute, but the ...
1
vote
1
answer
178
views
Message selector in Azure service bus is not working - AMQP
How are you ? Hope you are doing good .
I have faced some technical challenges in Azure service bus and Qpid client .
I am sending JMS message from Jakarta jms and I am using qpid jms client as ...
0
votes
1
answer
785
views
Azure Service Bus - REST API - Sending a message to a Session Enabled Topic/Subscription
I am sending messages to a Azure Service Bus topic using REST API - https://learn.microsoft.com/en-us/rest/api/servicebus/send-message-to-queue.
The messages are getting dead lettered with the reason &...
0
votes
0
answers
146
views
Getting an "Instances of abstract classes cannot be created" exception when receiving state machine initial message
I have been trying to understand an error that MassTransit has been throwing without success. I created a SAGA using Azure Service Bus. When I Start my project everything is initialized fine. But as ...
0
votes
2
answers
2k
views
Scale an Azure Container App by messages in a Service Bus topic subscription?
I'm looking to setup auto scale rules in my Azure container apps, based on messages in an Azure Service Bus Topic by subscriptions.
I do see the documentation on how to setup autoscale based on ...
0
votes
1
answer
338
views
Logic app standard - service bus session problems
I have an azure logic app standard application. This has two workflows; RunBre and StubSatellite.
The desired interaction flow is illustrated in the following diagram:
The RunBre workflow generates a ...
0
votes
1
answer
193
views
How to use SessionId with ServiceBusOutput on Worker Function azure
I am using .NET Isolated Functions
I need to send multiple messages to a queue
So I am using the code below
[Function("process-duplicates")]
public async Task<DispatchedMessages> ...
0
votes
1
answer
82
views
MassTransit with Azure Service Bus joins a SQL Server Transaction Scope and throws errors
I am executing a series of SQL Inserts from a MassTransit Handler. I create a Transaction Scope, so all Inserts pass or fail. Works with zero issues when RabbitMQ is the Bus.
On switching to Azure ...
0
votes
1
answer
156
views
Handling Skipped (Deadletter messages) in Masstransit/Azure Service bus
The scenario we want to protect us from is when deploying several services (microservices application) and a new messages (MessageA) are part of the release. The service that publish the MessageA are ...
0
votes
1
answer
109
views
Add Messages to Service Bus Queue and Return a standard response Http
I am using .NET Isolated Functions
I need to send multiple messages to a queue
So I am using the code below
[Function("process-duplicates")]
public async Task<DispatchedMessages> ...
0
votes
1
answer
760
views
Establish a Connection between Databricks and Azure Service Bus Queue to send messages
I need to connect to Azure Service bus from Databricks (pyspark) in order to send json messages to existing queue
using a service principle or via AAD as auth.
I have tried the below code :
from azure....
0
votes
1
answer
186
views
Why do I need and/or want a CancellationToken for my Azure ServiceBus message?
I'm trying to understand what the CancellationToken is used for and if I need to use it?
If I have this code below, I can cancel it by calling CancelScheduledMessageAsync so what is a ...
1
vote
1
answer
3k
views
How to create a container app scale rule based on a service bus message queue length
I have a azure container app that I want to scale based on a Azure service bus queue.
The app is already configured to process the queue and every instance processes two messages at a time. With ...
0
votes
1
answer
518
views
How to configure Azure Function App to process Service Bus messages in parallel?
I have created an Azure Function App and created a function from a docker image in the Azure Container Registry. The function is triggered by a new message being placed on an Azure Service Bus queue.
...
1
vote
1
answer
747
views
Azure Container Apps job with ServiceBus and managed identity authentication
I am defining an Azure Container Apps job. The job will consume messages from a Service Bus topic subscription. The rule will authenticate using a user assigned identity. The service is defined as ...
0
votes
1
answer
342
views
Azure Service Bus - Differentiating between Messages on the same Topic
I'm relatively new to Azure Service Bus (and message queueing in general), and have run into technical detail that seemed like a simple question but without a solution clearly available online.
The C# ...
1
vote
2
answers
379
views
Deploy filtered metrics on Azure dashboard with Bicep
I'm trying to deploy a dashboard that displays a couple of metrics for a Service Bus Queue in the Azure Portal using Bicep. Creating the tiles itself works fine, but I'm struggling with displaying the ...
0
votes
1
answer
132
views
Azure Service Bus Queue Groups
I would like to get the same functionality as I believe queue groups in Nats provides, but I have to use Azure (Service Bus?) My first question is: is this possible? If so, any pointers greatly ...
0
votes
1
answer
237
views
Processing of a Azure Service Bus Queue, to empty it in one go
I have a Azure Service Bus queue, which possibly wrongly I am using to store ID's for views of a particular item.
Each time a view is received, I send a message to the queue for processing later.
When ...
0
votes
0
answers
52
views
I want to send message to dead letter queue of azure service bus upon message validation fails
upon validation failed like any message field is empty or null directly send to dead letter queue of Azure service bus at first instance (without its maximum Retry.) I tried SurviceBusSenderClient and ...