Why the Best Technical Decision Is Sometimes the Boring One

by Arif Ikhsanudin, Backend Developer

The Exciting Choice That Cost Six Months

A team needed a message queue. Someone had just been to a conference where Kafka was prominently featured. They chose Kafka. The use case was a moderate-volume notification system — maybe 1,000 events per day, five consumer groups, no replay requirements.

Kafka has a steep operational learning curve. The team spent weeks getting the cluster configuration right, debugging consumer group rebalancing issues, figuring out the correct offset management strategy, and handling the operational complexity of a distributed log in a system that simply needed to send emails when something happened. Three engineers spent the better part of a sprint on infrastructure that Amazon SQS would have handled in an afternoon.

The system eventually worked. It worked considerably later than it needed to, and it cost significantly more to operate than the simpler alternative would have.

The Bias Toward Novel

There's a consistent pull in engineering cultures toward choosing newer, more sophisticated technology over simpler, established alternatives. The pull has multiple sources:

CV-driven development: Engineers are hired partly based on the technologies they know. Choosing interesting technology creates learning opportunities. Choosing boring technology doesn't look as good on a resume.

Conference-driven selection: The technologies discussed at conferences and in technical blogs are disproportionately novel and sophisticated. Postgres doesn't have a conference talk. The latest time-series database optimized for IoT workloads does.

Boredom with the familiar: Experienced engineers who know a technology well stop finding it interesting. A new technology with interesting problems to solve is more engaging.

None of these are illegitimate human motivations. All of them are misaligned with the goal of building reliable software quickly.

What "Boring" Technology Actually Provides

Boring technology — PostgreSQL, Redis, RabbitMQ, nginx, plain HTTP/JSON REST APIs — is boring because it has been used extensively, its failure modes are well-documented, and the answers to almost every operational question are findable with a search.

That property has enormous practical value:

Predictable failure modes: When something goes wrong with boring technology, there's a community of people who have seen the same thing and written about it. The time from incident to resolution is dramatically shorter.

Available expertise: Hiring engineers who know boring technology is easier. Onboarding new engineers to a system using boring technology is faster.

Operational maturity: Monitoring integrations, deployment tooling, and operational playbooks for boring technology are available and maintained. Building the same for novel technology is your problem.

Reduced cognitive load: When your infrastructure is not surprising, your cognitive budget for application-level problems is larger. Novel infrastructure problems consume engineering attention that should go toward product problems.

The Cases Where Novel Technology Is Justified

The calculus shifts when:

  • The problem genuinely requires capabilities that established technology doesn't provide. A time-series database for high-throughput sensor data. A graph database for a social network traversal. These are cases where the fit between the problem and the technology is specific enough to justify the operational overhead.
  • The team has deep expertise in the novel technology already. The learning curve cost is already paid.
  • The scale or performance requirements have been outgrown by the boring alternative, and this has been measured, not assumed.

In the absence of one of these conditions, the boring choice is usually correct.

Dan McKinley's Formulation

Dan McKinley's "Choose Boring Technology" essay (2015) remains the most direct articulation of this principle. His framing: every team has a finite "innovation budget" — the capacity to absorb the unknown costs of novel technology. Spending that budget on infrastructure leaves less for product. Spending it on product is usually where the value is.

The advice is not "never use new technology." It's "be deliberate about where you spend your innovation budget, because it's limited."

The Practical Takeaway

The next time your team is evaluating technology choices, add one item to the evaluation criteria: what is the operational cost of choosing this technology, and does the problem we're solving justify that cost? Document the boring alternative explicitly — not as a strawman, but as the real option. Then compare not just capability but operational overhead, hiring difficulty, and time-to-first-value. That comparison often makes the right choice obvious.

Scale Your Backend - Need an Experienced Backend Developer?

We provide backend engineers who join your team as contractors to help build, improve, and scale your backend systems.

We focus on clean backend design, clear documentation, and systems that remain reliable as products grow. Our goal is to strengthen your team and deliver backend systems that are easy to operate and maintain.

We work from our own development environments and support teams across US, EU, and APAC timezones. Our workflow emphasizes documentation and asynchronous collaboration to keep development efficient and focused.

  • Production Backend Experience. Experience building and maintaining backend systems, APIs, and databases used in production.
  • Scalable Architecture. Design backend systems that stay reliable as your product and traffic grow.
  • Contractor Friendly. Flexible engagement for short projects, long-term support, or extra help during releases.
  • Focus on Backend Reliability. Improve API performance, database stability, and overall backend reliability.
  • Documentation-Driven Development. Development guided by clear documentation so teams stay aligned and work efficiently.
  • Domain-Driven Design. Design backend systems around real business processes and product needs.

Tell us about your project

Our offices

  • Copenhagen
    1 Carlsberg Gate
    1260, København, Denmark
  • Magelang
    12 Jalan Bligo
    56485, Magelang, Indonesia

More articles

When Your First Few Months Are Terrible: Staying Motivated

Starting a new job or contract can feel like hitting a wall. The first few months are often messy, confusing, and overwhelming—but that doesn’t mean you’re failing.

Read more

API Versioning Is Not Optional Once You Have Real Users

Once an API has real consumers, every change becomes a contract risk. Versioning is the only reliable way to evolve safely without breaking production systems.

Read more

Why the Best Technical Contractor Is Not Always the One Who Gets Hired

Hiring decisions rarely come down to who is the most technically skilled. They come down to who the client feels most confident about — and those are very different things.

Read more

What a Production-Ready Dockerfile Actually Looks Like

Most Dockerfiles in production tutorials are missing a dozen decisions that matter in real deployments: signal handling, health checks, non-root users, layer ordering, and build reproducibility. Here's what those decisions look like in practice.

Read more