masstransit Questions
0
In scenarios where you want to share a Azure Service Bus namespace (to save cost etc), it's helpful to be able to explicitly set queue and topic names rather than rely on MassTransit conventions. W...
Giliana asked 21/8, 2019 at 14:24
1
Solved
What is the difference between ConcurrencyLimit and PrefetchCount in masstransit? and what is the optimize configuration for them.
Garganey asked 29/7, 2019 at 17:5
3
Solved
I am studying MassTransit and ASP.NET Core, dependancy injection and successfully implemented something that works. I plan to use the Kestrel web server.
So I had to configure my ASP.NET core proj...
Mariselamarish asked 12/2, 2018 at 7:11
1
Solved
I created a MassTransit quickstart program to interact with my localhost RabbitMQ:
namespace ConsoleApp1
{
public static class Program
{
public class YourMessage
{
public string Text { get; s...
Bromleigh asked 9/5, 2019 at 16:54
1
Solved
RabbitMQ seems to have two properties that are very similar, and I don't entirely understand the difference. ConversationId and CorrelationId.
My use case is as follows. I have a website that gene...
Zoellick asked 21/3, 2019 at 16:42
1
Solved
I have some message consumers that take dependencies through the constructor, and I would like to cover them in unit tests. Does MassTransit's test harness provide a way to register consumers with ...
Briar asked 14/3, 2019 at 18:0
1
Common advice for microservice architecture is to avoid sharing message classes between the microservices. MassTransit heavily relies on .NET type information when sending / receiving the messages...
Kook asked 13/3, 2019 at 16:48
1
Solved
I'm new to Mass Transit and I would like to understand if it can helps with my scenario.
I'm building a sample application implemented with a CQRS event sourcing architecture and I need a service b...
Mantelet asked 5/3, 2019 at 19:47
1
According to the MassTransit creators, having class-based inheritance is not considered as good practice - https://masstransittemp.readthedocs.io/en/latest/overview/inheritance.html
I honestly can...
Hopper asked 23/2, 2019 at 13:5
1
Solved
I'm exploring my options when introducing Azure Service Bus with MassTransit in a multi-tenant system.
Basically the system consists of several services which some of them are tenant specific whil...
Audiophile asked 3/2, 2019 at 21:19
2
Solved
I am working on the app using .NET Core 2 and MassTransit 4(dev).
Mass Transit requires parameterless constructor for consumers.
I need to use e.g. logger, dbContext etc in my consumers and I woul...
Letta asked 23/12, 2017 at 16:33
3
Solved
I've been looking at MassTransit for a couple of weeks now and I'm curious about the possibilities. However, I don't seem to be able to get the concepts quite right.
Expected behaviour
I wanted ...
Exhortative asked 10/5, 2015 at 2:50
0
I'm trying to understand MassTransit configuration in conjunction with Azure Service Bus.
At configuration time there're 2 methods with overloads: SubscriptionEndpoint<T> and RecieveEndpoint...
Allenaallenby asked 29/11, 2018 at 19:19
2
Solved
I am successfully using MassTransit for a silly sample application where I publish an message (an event) from a Publisher console application and I receive it at two different consumers which are a...
Aguste asked 14/10, 2018 at 17:8
0
Every once in a while, I start to see the following exception. I'm not sure how to fix it, or why does the app think it's stopping. The only way to fix it is to restart the app. What is the best pr...
Baluchistan asked 15/10, 2018 at 12:54
1
Solved
I have just used MassTransit in my project, .Net core2.0. It is great but there are some concerns:
That is different between Publish vs Send. In my scenario, I have one email service to send emai...
Amphetamine asked 22/7, 2018 at 15:44
1
Solved
I am using RabbitMQ 3.0.3 version. The service was working fine for last 4-5 years. Recently some updates patches were installed on the server and the Service stopped responding. This is what is ha...
Belle asked 5/7, 2018 at 15:25
1
Solved
I am trying to implement a simple example/demo for a state machine using Automatonymous with RabbitMQ. Unfortunately I could not find one to rebuild / learn from (I found the ShoppingWeb, but in my...
Cursive asked 18/5, 2018 at 12:16
1
Solved
I am looking for a way for each consumer instance to receive a message that is published to RabbitMQ via MassTransit. The scenario would be, we have multiple microservices that need to invalidate a...
Warman asked 3/4, 2018 at 22:39
1
Solved
I saw a question & its answer below;
https://stackoverflow.com/a/46128844/7419921
Although I understood that I cannot do anything for the error queue via MassTransit, what should I handle the...
Dallapiccola asked 23/2, 2018 at 16:34
3
Jimmy Boagard describes a McDonalds fast food chain here comparing it to a scatter gather pattern.
Workflow image stolen from above article:
Initial Implementation Thoughts:
To have a common i...
Slade asked 7/11, 2015 at 5:39
1
Solved
I am trying to understand different methods used in messaging between services.
Let us say that I have a scenario where I need first service to notify the other that a user has asked for product c...
Benefic asked 22/11, 2017 at 5:47
1
Solved
I'd like to know best practices for consuming messages. I've read MassTransit docs and I've searching about this but I don't get to come to any conclusion.
I have one api (hosting a bus instance) ...
Avra asked 20/10, 2017 at 9:58
1
Solved
I would rather have a separate CommandBus and EventBus and also ICommandHandler<TCommand> and IEventHandler<TCommand> so that an OrderEventHandler class looks like:
public class ...
Vinitavinn asked 11/9, 2017 at 10:59
1
Solved
I am using Mastransit 3.5.0 with RabbitMq. If queue consumers throws exception, its is handled by default MoveExceptionToTransportFilter and moved to _error queue. For _error queue I have seperate ...
Laue asked 9/9, 2017 at 8:8
© 2022 - 2024 — McMap. All rights reserved.