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

N+1 Queries in Rails — How I Find and Fix Them for Good

N+1 queries are the most common Rails performance problem and the most consistently underestimated. Here is a systematic approach to finding them, fixing them correctly, and preventing them from coming back.

Read more

Spring Boot API Rate Limiting — rack-attack Equivalent in Java

Rate limiting protects APIs from abuse, enforces fair usage, and prevents accidental runaway clients from taking down infrastructure. Here is how to implement per-user, per-IP, and per-endpoint rate limiting in Spring Boot with Bucket4j and Redis.

Read more

When Big Tech Owns Your Local Talent Pool — How Dublin Startups Hire Backend Engineers

You offered the role to your top candidate on Friday. On Monday she emailed to say Google matched. You never heard from her again.

Read more

CAP Theorem Is Not Just Interview Knowledge. It Affects Real Decisions.

The CAP Theorem gets rehearsed for system design interviews and then forgotten. That is a mistake — the tradeoffs it describes show up in every distributed system you build or operate.

Read more