• The REPL: Issue 54 - February 2019

    Move fast and migrate things: how we automated migrations in Postgres

    Vineet Gopal from Benchling writes an interesting post about their approach to running migrations on highly-contested databases in production. A new concept for me was that they automatically retry migrations that fail due to lock timeouts. This reduces the number of failed deployments and manual intervention steps.

    Rescue from errors with a grace

    In this post Paweł Dąbrowski shows how to leverage Ruby’s value equality (===) method, and overriding the default functionality in custom exceptions. The results is cleaner exception handling code.

    Distributed Phoenix Chat with PubSub PG2 adapter

    Alvise Susmel writes in detail how to use Phoenix Chat PubSub implementation using the pg2 library. The result a distributed, multi-node chat service that does not have an external dependency to a separate system (like Redis).

    Read on →

  • Dragons in benchmark-ips

    My go-to tool for analyzing ruby performance is benchmark-ips. It’s an enhancement to Ruby’s own stdlib tool Benchmark. It’s easy to use, and reports meaningful information by default.

    Read on →

  • The REPL: Issue 53 - January 2019

    Detecting Agile BS

    I don’t know what I like more about this guide: The fact that it calls BS a lot of what is gospel for many in the software industry, the fact that it’s published by the Department of Defense, or the power-point-y graphics.

    Distributed Transactions: The Icebergs of Microservices

    In this article, Graham Lea explains many potential pitfalls with distributed transactions, and general advice on how to avoid them in the first place, or deal with them effectively when must.

    The solution to distributed transactions in microservices is simply to avoid them like the plague.

    Our Software Dependency Problem

    Russ Cox writes about software dependencies, and goes into great detail of what dependencies are and what risks they bring into software projects. I found myself nodding in agreement throughout the post. The need to have a good policy towards updating project dependencies has been a pet-peeve of mine for a while.

    Read on →

  • Don't Rescue RuntimeError

    I came across some code recently that attempted a long series of steps, and on failure issued a notification. Something functionally similar to:

    Read on →

  • The REPL: Issue 53 - December 2018

    Scaling engineering organizations

    Raylene Yung at Stripe writes a detailed post about how to scale engineering organizations. Although in my current role I am not a hiring manager, I find these types of posts very useful for future reference and to see what hiring looks like from the other side. Understanding the system allows you to use it for your benefit.

    PostgresSQL: Implicit vs. explicit joins

    Hans-Jürgen Schönig writes an excellent technical explanation of implicit vs. explicit joins in Postgres. It mostly jives with my experience: For the most part, the query planner will ensure that the performance is the same. When writing SQL directly, I prefer to use explicit joins. I believe they are more readable.

    Read on →