I have two AWS EC2 servers behind load balancer and one database with replication...
How do I update Laravel code with no down time? Idea was to remove one server from load balancer and update Laravel code while second server serves the traffic. But If I execute migration, it will change the database and second server will produce errors :/
If you make your migrations right it's doable. You can run old code on a migrated DB if the migrations are only additive, and you haven't changed or deleted something the old code relies on.
Then you can just do one server at a time like this:
Or just use Envoyer. The other question is do you really "need" zero downtime deploys or does it just sound nice to have? Forge can deploy one of my apps in less than 30 seconds.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community