(Re)Introducing mirrord

Posted May 30, 2022 by Eyal Bukchin - 3 Min Read

The Dev Loop (or: know your enemy)

Imagine youā€™re a backend developer at post series B SaaS soonicorn. Youā€™ve spent half a sprint adding a new feature to your microservice. Youā€™ve thoroughly researched possible inputs and database states and built an elaborate test suite. Your code was mercilessly reviewed by two of your teammates. Finally, the tests pass, the pull request is approved, and as a final verification, you deploy your new code to the staging environmentā€¦

Where it crashes almost immediately. Turns out you forgot to test some obscure configuration, or some complex database state that would only ever occur on a mature, complex environment - like staging, and unlike your local machine. So you roll the service back on staging, fix the bug, write some more tests, get it reviewed again, build the code, deploy it to stagingā€¦ and it crashes again. While you were fixing the bug, your teammate deployed a new version of some other microservice - except they’re not as thorough a tester as you are, and the new version is broken, so you canā€™t test your own service. You wait for them to roll their service back to a working version, the sprint is long over, and youā€™ve started on your next feature during your downtime so now youā€™re dividing your focus between two things.

The worst part being that you know itā€™s going to happen again next sprint.

mirrord (or: how you win)

Iā€™ve encountered some variation of the dev loop at every startup Iā€™ve ever worked in, and itā€™s this pain exactly that weā€™re trying to solve with mirrord. mirrord runs in two places - on your local development machine, and in your staging environment. By wrapping your local process and hooking system calls, it lets you plug your process non-invasively into that serviceā€™s instance on the staging environment. Simply put, mirrord lets you run a local process in the context of your cloud service. This means you can test your code on staging, without actually deploying it there. Not only does it save you the hassle of deployment every time you make a change, but it also keeps the staging environment free from untested versions, and constantly usable for everyone else in the organization.

Getting Started (and: other practical info)

Today weā€™re releasing mirrord 2.0 , which supports incoming traffic. That means whatever traffic reaches your service in staging is duplicated by mirrord and sent to your local process. Weā€™ll soon be adding support for outgoing traffic, file access, and environment variables - everything needed for your local process to ā€œthinkā€ itā€™s running on the staging environment. All you need to run mirrord is kubectl access to your staging environment1. You can use it as either a CLI tool, or an extension for VS Code (IntelliJ support is on the way). Try it out here , and let us know what you think at [email protected] , or in our repo!


  1. note that mirrord doesnā€™t install anything persistent in your Kubernetes cluster. It runs a job that self-deletes when mirrord terminates. ↩︎

Your subscription could not be saved. Please try again.
Your subscription has been successful.

sign up to our blog post for updates and news

profile.png

Eyal Bukchin

CTO & Co-founder @ MetalBear.

You may also like...

Metal-who?