Oskar Dudycz

Pragmatic about programming

A few notes on migrating storage library

2023-12-07 oskar dudyczCoding Life

cover

I’m feeling like a surgeon in recent days. Who knew that changing the connection management in storage library would be a delicate thing to do? I did, but it’s still an intriguing feeling.

Most people say: “you won’t gonna change database ever!” but other things might happen that bring almost the same complexity. Examples?

We created Weasel some time ago, a spin-off that maintains the schema for Marten and Wolverine. Initially, we wanted to offload the Marten codebase and reduce coupling. We also hoped that it may be a first step to support other databases in the future.

And that happened to some degree. Wolverine supports not only Postgres but also MSSQL. What’s more, it’s supporting not only Marten but also EntityFramework.

Adding a new database or storage library to an existing, big codebase is similar in complexity to switching a database. And that may also happen to your business application.

Even if you don’t, then libraries evolve and change conventions. For example, Npgsql (the PostgreSQL provider in a .NET world) changed conventions on connection management. Initially, it was a static configuration; now, you can set up individual data sources with different configurations.

And that’s a change for good. That’s the right direction the Npgsql team went, but making that switch is delicate. And that’s what I’m doing right now. Thus, surgeon-like feeling.

Of course, we could ignore and use the old way until it’s fully obsolete. But then we’d need to change much more as our code will grow in that time, and we’d need to do it in a rush.

Also, we’d get much stronger pressure from our users, as the new features may be only available in the new way. And that’s already happening, as to benefit from the new Microsoft tool Aspire, we need to use the new data source way.

We could just switch classes and call it a day. That still wouldn’t be simple, but it would be at least faster. Yet, that’d be a half-assed solution, as we’d not benefit from the new features. Plus, trying to put your legs on different sides of the canyon is a recipe for disaster. Usually, the library creators assume that you go either one way or another, so choosing both can push you to nasty edge cases. Those are those that you usually find after production deployment.

You may think that meh, not my problem. You may be right, but this may also happen to you. Even if you use ORM, it may change its conventions and become obsolete; others will supersede that.

Should you then wrap your tooling? Nope, because you will end with the lowest common denominator and neglect the change.

As always the magic is that there’s no magic, the only solution is cautious evaluation and managing your dependencies. Keep them up to date, observe trends and predict how they may impact your solution. Plan what you do about them, and define strategy and tactics.

Don’t assume that it won’t ever happen as those are famous last words.

And hey, if you’re feeling from time to time as a surgeon doing an operation on an open heart, that’s fine.

Somebody’s Gotta Do It.

Cheers!

Oskar

p.s. Ukraine is still under brutal Russian invasion. A lot of Ukrainian people are hurt, without shelter and need help. You can help in various ways, for instance, directly helping refugees, spreading awareness, putting pressure on your local government or companies. You can also support Ukraine by donating e.g. to Red Cross, Ukraine humanitarian organisation or donate Ambulances for Ukraine.

👋 If you found this article helpful and want to get notification about the next one, subscribe to Architecture Weekly.

✉️ Join over 5000 subscribers, get the best resources to boost your skills, and stay updated with Software Architecture trends!

Loading...
Event-Driven by Oskar Dudycz
Oskar Dudycz For over 15 years, I have been creating IT systems close to the business. I started my career when StackOverflow didn't exist yet. I am a programmer, technical leader, architect. I like to create well-thought-out systems, tools and frameworks that are used in production and make people's lives easier. I believe Event Sourcing, CQRS, and in general, Event-Driven Architectures are a good foundation by which this can be achieved.