Relative Content

Tag Archive for masstransit

Register ReceiveEndpoint with RoutingKey at runtime

I created solution for mass document processing where single document processing time is about 10-30s long.
When It will be processed using one queue, when one client post 100 docs to queue, second client with one doc will be wait for result too long.
So I modified topology to direct exchanges with client ID as routingKey, and it works fine.
But, when I need to enable another client ID I must restart service.
So I looking for solution to do:

Register ReceiveEndpoint with RoutingKey at runtime

I created solution for mass document processing where single document processing time is about 10-30s long.
When It will be processed using one queue, when one client post 100 docs to queue, second client with one doc will be wait for result too long.
So I modified topology to direct exchanges with client ID as routingKey, and it works fine.
But, when I need to enable another client ID I must restart service.
So I looking for solution to do:

Register ReceiveEndpoint with RoutingKey at runtime

I created solution for mass document processing where single document processing time is about 10-30s long.
When It will be processed using one queue, when one client post 100 docs to queue, second client with one doc will be wait for result too long.
So I modified topology to direct exchanges with client ID as routingKey, and it works fine.
But, when I need to enable another client ID I must restart service.
So I looking for solution to do:

Handling old legacy message with MassTransit

I have an existing email service implementation that listens on an Azure Service Bus and uses the native library Azure.Messaging.ServiceBus.
I need now to add a separate processing for other kind of email and I would like to handle the message with MassTransit as I’ve done for other portion of the infrastructure we have.