DEV Community

Discussion on: From Rails to Elixir: Safe Rewrites with NOOP Deployments

Collapse
 
chadfennell profile image
Chad M Fennell

Nice - I'm on a similar path, working through some of these problems. I had only just begun to look at deployment strategies and so far I am liking the simple Ansible approach that you outline the best for my little side project. I love Docker / Kube, but it's a big deal to get it all set-up correctly.

For background jobs, I've been poking at: github.com/sorentwo/oban. So far, I am really impressed. I was a Sidekiq user and loved that system, but I really appreciate that Oban removes the Redis dependency. I need durability more than blistering fast I/O, so it feels like a good trade-off for my needs.

Good Luck!