Advertisement · 728 × 90

Posts by Chris Patterson

spot art.
Photo of presenter(s).
text reads: On .NET Live - Error Management in Messaging systems

spot art. Photo of presenter(s). text reads: On .NET Live - Error Management in Messaging systems

Tune in to the session replay of the latest On .NET as we discuss error management in messaging systems.

In this week's episode, Microsoft MVP Irina Scurtu talks about failed messages in RabbitMQ and Azure ServiceBus, in systems that use MassTransit. Drop in. https://msft.it/63326StdbC
#dotNET

9 months ago 7 2 0 0
Preview
v8.5.0 by phatboyg · Pull Request #6013 · MassTransit/MassTransit

MassTransit v8.5.0 just released, updated the AWS SDK to v4.x, uses EF Core v9 for both net8.0/net9.0, and fixes the stalled receive endpoints when RabbitMQ closes the channel due to a consumer timeout.

github.com/MassTransit/...

9 months ago 2 0 0 0
Preview
v8.4.1 by phatboyg · Pull Request #5976 · MassTransit/MassTransit

MassTransit v8.4.1 was just pushed to NuGet, with several fixes, including Job Consumers and recurring job issues. Also added the ability to advance time on the in-memory transport to deliver scheduled messages in unit tests more quickly.
github.com/MassTransit/...

10 months ago 2 0 0 0
The Truth Behind MassTransit Going Commercial
The Truth Behind MassTransit Going Commercial YouTube video by Nick Chapsas

I was interviewed by @nickchapsas.com recently about the announced plans for MassTransit v9, and he just posted the video where I answer a lot of questions about the commercial aspects of the project, the future, and whatever else came up! Check it out!

www.youtube.com/watch?v=xcpg...

11 months ago 3 0 0 0

"We didn't write MassTransit because it was easy, we wrote it because we thought it would be easy." -anon

1 year ago 4 0 0 0

As stated in the announcement Q&A, the source code will likely remain open, only with a license change and additional requirement to purchase a license to use the v9 packages.

1 year ago 0 0 1 0

To follow up on today's announcement, I've updated the site to include a Q&A section with answers to many of the questions brought up today. I want to be clear and transparent, so keep the questions coming.

masstransit.io/introduction...

1 year ago 4 2 0 0
Advertisement

For over 10 years, MassTransit has powered .NET applications worldwide across finance, healthcare, logistics, and government. Now, MT v9 will transition to a commercial model ensuring sustainability, support, and continued innovation. MT v8 remains open-source.

masstransit.io/introduction...

1 year ago 22 9 3 2
Preview
Upgrading An open-source distributed application framework for .NET

MassTransit v8.4.0 is now available! This release introduces anonymous usage telemetry to help us improve the framework based on real-world use (opt-out available), along with a few performance enhancements for SQS and bug fixes.

Read more:
masstransit.io/support/upgr...

1 year ago 0 1 0 0
Preview
MassTransit with Azure Service Bus - Error management MassTransit with Azure Service Bus. MassTransit error management in Azure Service Bus.

Just [Blogged]
irina.codes/masstransit-...

#masstransit #azureservicebus #errormanagement #dotnet

1 year ago 3 2 0 0
Handling MassTransit errors with the Particular Service Platform
Handling MassTransit errors with the Particular Service Platform YouTube video by Chris Patterson

"Handling MassTransit errors with the Particular Service Platform" a collaboration of Particular Software with @phatboyg.com that makes MassTransit and the Particular Platform friends that talk to each other. www.youtube.com/watch?v=h5gc...

1 year ago 4 2 0 0
SE Radio 654: Chris Patterson on MassTransit and Event-Driven Systems – Software Engineering Radio

I had the pleasure of being interviewed on the Software Engineering Radio podcast and the episode is now live on most major apps! We talk at length about distributed systems, MassTransit, and event driven architecture.

se-radio.net/2025/02/se-r...

1 year ago 3 0 0 0
Microsoft Forms

Hey MassTransit users! As an open-source project, your feedback helps shape its future. If you have a moment, please take our survey and share your experience.

forms.office.com/r/R214ZXqYGs

1 year ago 5 7 0 0
Preview
v8.3.5 by phatboyg · Pull Request #5798 · MassTransit/MassTransit

MassTransit v8.3.5 is now available, details are in the pull request. Additional SQL Transport features were added, along with several other fixes and enhancements.

github.com/MassTransit/...

1 year ago 2 1 0 0
Advertisement

Europe is a huge MassTransit market, along with Australia and Asia. Definitely a lot of use in the US, and many consulting companies use it as well for customer application builds. The number of paying support customers is not surprisingly a fairly low percentage overall.

1 year ago 1 0 1 0
Upgrading An open-source distributed application framework for .NET

There are some updates coming in MassTransit v8.3.5, which I've pointed out in the upgrade notes. Please try out the pre-release packages and provide any feedback necessary: masstransit.io/support/upgr...

1 year ago 1 0 0 0
Post image

When you try something, and it just works... #dotnet

1 year ago 3 0 0 0

MassTransit v8.3.3 is now available, and includes a number of fixes related to the RabbitMQ.Client v7 migration. The reconnection problems appear to the resolved with this version. If you are using v8.3.2 with RabbitMQ, you should upgrade immediately to v8.3.3.

1 year ago 2 1 0 0
Transactional Outbox It is common that a service may need to combine database writes with publishing events and/or sending commands. And in this scenario, it is usually desirable to do this atomically in a transaction. Ho...

Same, the bus outbox (similar to transactional session in NSB) uses the same IPublishEndpoint/ISendEndpointProvider used to publish/send messages outside of a consumer from the MassTransit mediator or MediatR (within the same container scope). masstransit.io/documentatio...

1 year ago 0 0 0 0
RabbitMQ Client v7 Master · Issue #5705 · MassTransit/MassTransit This is a master issue tracking all the issues related to the upgrade to the RabbitMQ.Client v7. The issue may be MassTransit related, or somehow related to the v7 client itself, so this isn't putt...

There are some odd behaviors that I'm investigating related to the RabbitMQ.Client v7. If you're using RabbitMQ and don't urgently need to be on the latest client, I'd suggest staying on MassTransit v8.3.1 until they're sorted out. The issues are being tracked on GitHub: github.com/MassTransit/...

1 year ago 1 1 0 0

But the idea of providing a synchronous facade on top of what is by nature an asynchronous operation seems like a hack, and very specific to the app model (UI vs background, etc.) - this is why ConfigureAwait and SynchronizationContext's are such a pain to manage within the library code itself.

1 year ago 1 0 1 0

I'm actually in favor of the new asynchronous API's they've created, as long as they work as expected. I'm seeing issues with MT v8.3.2 likely related to connection/channel management and notifications with disconnects and the way the thread pool is used/limited. I'm ready to engage their team on it

1 year ago 2 0 1 0

For those going home to visit family this weekend:

• Samsung calls it Auto Motion Plus
• LG calls it TruMotion
• Sony calls it Motionflow
• Roku calls it Action Smoothing
• Google TV calls it Motion Enhancement
• Vizio calls it Smooth Motion Effect.

1 year ago 17696 5943 422 710

Are there many people actually using those older EF libraries with any current builds of anything? Most of the people I know using MassTransit with older builds are actually using older/unsupported builds of MassTransit as well. Many seem to take "we aren't upgrading" as a wholesale statement.

1 year ago 2 0 1 0
Advertisement
v8.3.2 by phatboyg · Pull Request #5675 · MassTransit/MassTransit

MassTransit v8.3.2 is now available with the all new RabbitMQ v7 client. Support for net6.0 has also been dropped, and net9.0 has been added as an additional target framework.

github.com/MassTransit/...

1 year ago 5 0 0 0
Post image

We are beyond excited to announce the Service Bus local emulator! This has been the most requested feature for Service Bus, and today is the day.

You can find the official announcement at techcommunity.microsoft.com/blog/messagi....

1 year ago 86 35 2 9
Preview
MassTransit 8.3.2-develop.2118 MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.

Initial pre-release build of MassTransit including net9.0 support is now available:
www.nuget.org/packages/Mas...

1 year ago 1 1 0 0

MassTransit v8.3.1 is the last version supporting net6.0 (which goes end of live November 12th, 2024). Future versions will support net8.0 with net9.0 being added once it has been tested.

1 year ago 1 1 0 0

Amazon: The customer checkout should be painless and fast
Enterprise Software: Customers should submit requests via git push

1 year ago 1 0 0 0

Mr. Blue Sky.
Mr. Blue. Sky.

1 year ago 4 0 1 0