This is a little case study from an upcoming book I'm writing with Manning about software rewrites. I think it stands on its own and figured you'd appreciate the lessons learned. Maybe share a "oof been there" laugh.
Here goes 👇
At $dayjob, we have a backend service that only a parent could love. Except I don't. None of us do.
Ownership changes hands like a hot potato – everyone's eager to get it off their hands. Our team had it first and not a single tear was shed when another team took over. When we got it back, they didn't even blink. We all make it better, but mistakes were made.
We'll call this service calendar-service because that's what it does – deal with provider calendars. It was our first truly micro micro-service.
The good idea
Calendar-service was our attempt to build a service that encapsulates a 3rd party API for managing provider calendars. It's part of the rewrite case study from chapter 3. The old implementation smeared through our backend like peanut butter and we figured keeping it all in one place would be easier to work with.
The plan was simple:
- extract the calendar domain out of our monolith
- encapsulate and abstractify the new 3rd party service
- have one place that handles calendars
- keep business details out of calendar-service
- keep calendar details out of everything else
The result would be a service that can answer questions like "Is this provider available at time X?", "Who is this provider meeting with at time Y?", "What providers are available in the next N days?", "When are providers available?", "How does a recurring appointment behave?".
We gave the service a separate database to enforce separation and made sure it uses opaque IDs for patients and providers. Calendar-service would treat them as a meaningless string, our monolith would understand the details.
This worked okay. It's in production, it's fast, reliable, and runs a large portion of our system.
The mistakes
Everybody struggles when they first jump into calendar-service. New team members are confused, new teams have no idea what's going on, and the team who built it struggles after stepping away for a few months. Something is wrong.
Like I said, mistakes were made.
Separate database
The first problem is that separate database, an industry best practice for micro-services. The approach works great to enforce separation of concerns, but we weren't ready organizationally.
It's hell during onboarding, frustrates our platform team, poorly supported in local dev tooling, and causes confusion when things don't Just Work. Every new engineer goes through the "Hey this doesn't work and the error looks weird?" question followed by a veteran going "... OH YEAH! Separate database, here's a doc".
Contextual overhead right there.
Mix of slices
The next problem is that we used a mix of vertical and horizontal slices to organize the code.
There's an api/v1/paths
directory, which contains route definitions using file-based routing. Each exported function represents an HTTP verb and implements a controller.
But there's also a services
directory – api/v1/services
– which tries to follow the vertical slice paradigm. Every file in there is supposed to implement and fully contain an entity from our business domain, but also not quite?
This is confusing because:
- it implies the implementation depends on
api/v1
- it contains a mix of abstraction levels
2.1.
api/v1/services/<entity>
files for domain entities 2.2.api/v1/services/db
file to wrap the DB 2.3api/v1/services/API
file to wrap the 3rd party API - there's a
src/models
directory also, what's that for? - "services" liberally import functions from one another
- we have a global
@services
import that refers toapi/v1/services
Plus there's another utils/API
file that is ... yet another wrapper for the 3rd party API? Primarily used by the rich wrapper in api/v1/services/API
, but also many others. You never quite know which is appropriate.
This mix of abstraction levels makes for a confusing codebase that's hard for newcomers to approach.
Leaky abstractions
But you could fix that by moving some code around. Move vertical services outside api/v1
, better organize the horizontal layers, etc. The real problem is leaky abstractions.
Our dear calendar-service re-implements the 3rd party API almost word for word. Uses many of the same routes, calls entities by the same names, and barely hides any of the complexity.
This lack of abstraction bleeds through the whole implementation in a beautiful example of lasagna code – a change in one layer requires a change in all layers. External types bleed through to internal concerns, services (entities) all know deep details about one another, and control flow zig-zags around like a labyrinth.
If you want to work on any part of calendar-service, you have to understand:
- the 3rd party API
- Teta's business context
- the arbitrary-looking entity domain separations
- the ill-defined boundary between inside and outside parts of the code
That's a lot of context to keep track of.
The not-mistakes
My favorite part of calendar-service is the file-based routing. If you know the API that's called, you know where to find the code. That makes all the difference in an otherwise impenetrable codebase.
Once there, you'll find https://www.openapis.org[OpenAPI documentation] right next to the controller definition. Verbose descriptions explain the API you're looking at, specs define what parameters it supports and what kind of objects it returns. Wonderful.
When exploring, you'll find the codebase is chock full of long comments explaining why code looks the way it does. Like when strange timestamp math adds timezone support to a 3rd party API that otherwise doesn't care.
The lesson
Forcing a square peg into a round hole is hard.
You can't magic away the complexity of fitting together two business domains that don't like each other. A 3rd party provider that thinks of calendars one way talking to a client that has a different view.
The result is a service that leaks abstractions, knows a little too much about either side, and breaks programmer brains for breakfast.
BUT the whole rest of our system doesn't need to care about any of this. The mess is self-contained. Great success 💪
Cheers,
~Swizec
Continue reading about A backend service nobody can grok
Semantically similar articles hand-picked by GPT-4
- Immutability isn't free
- 90% of performance is data access patterns
- Better tooling won't fix your API
- What microservices are for
- The day I crashed production 4 times
Learned something new?
Read more Software Engineering Lessons from Production
I write articles with real insight into the career and skills of a modern software engineer. "Raw and honest from the heart!" as one reader described them. Fueled by lessons learned over 20 years of building production code for side-projects, small businesses, and hyper growth startups. Both successful and not.
Subscribe below 👇
Software Engineering Lessons from Production
Join Swizec's Newsletter and get insightful emails 💌 on mindsets, tactics, and technical skills for your career. Real lessons from building production software. No bullshit.
"Man, love your simple writing! Yours is the only newsletter I open and only blog that I give a fuck to read & scroll till the end. And wow always take away lessons with me. Inspiring! And very relatable. 👌"
Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.
Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.
Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help 👉 swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.
Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers 👉 ServerlessHandbook.dev
Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization
Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections
Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog
Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com
By the way, just in case no one has told you it yet today: I love and appreciate you for who you are ❤️