Questions tagged [service-bus]
The service-bus tag has no summary.
40 questions
0 votes
1 answer
100 views
.NET - Communication between services and Power BI
I have the following problem which I don't know much about. I have a ServiceA that returns customer data on transactions and a ServiceB that has reports, also my environment uses Power BI from ...
1 vote
2 answers
690 views
How to do integration testing with ServiceBus?
Generally speaking, the basic flow is: http triggered service method puts request on service bus service bus triggered method executes request and in this specific scenario: method from 2) sends ...
-1 votes
1 answer
224 views
Design of system pushing data to multiple systems
I have a ASP.NET Core backend (with Azure Service Bus) and a Blazor Server frontend. The purpose of the backend and the frontend is to trigger manual and automatic pushing of single data points (...
0 votes
2 answers
745 views
Azure Function SQL polling Vs Service Bus. How reliable is Service bus? Does it ever fail?
I have scheduling requirements where I place all my schedules in SQL db and then use the azure function every minute to read that database. When the schedule is met, I then perform a durable function ...
1 vote
1 answer
326 views
Implemeting a distributed n-Producers/1-Consumer service for critical-mission system
I am trying to implement a distributed version of multi-producer/1-consumer for a critical-mission system. I'm looking for good alternatives to the current approach based on RDBMS. The problem The ...
4 votes
2 answers
2k views
Using distributed locks in microservice environment
I'm developing distributed system and trying to use best practices of microservice architecture. I was faced with a situation when I think I need something like distributed locks. Since I have not so ...
0 votes
1 answer
999 views
Dealing with eventual consistency when persisting and publishing events
Currently working on a DDD application that is using event sourcing with redis as my main persistence store. So unfortunately I do not have built in rollbacks should something fail. The application is ...
1 vote
2 answers
2k views
Best way to sync data from one database to another
Let's say I have my web shop and database have multiple tables like Products, Product prices and similar. I'm selling my software solution to my affiliate partner. He gets its database, it window ...