HomeWork with meBlogAboutContact
Cloud
Optimal Deployment Environment for Productivity Boost
Frederik Banke
Frederik Banke
May 25, 2018
5 min

Table Of Contents

01
Production development environment
02
Development server environment
03
Local development environment
04
Setting up the environment with Docker
05
Managing databases
06
Closing comments

Your deployment environment is a tool that should be sharpened to allow maximum productivity. I have seen many developers where their deployment environment is less than optimal, hurting their productivity.

Ranging from, developing directly on production sites. To develop on a shared server. And finally using a local development environment, which I think is the most optimal way to do it.

Developing directly on production is “fast”, but remember the quote

Slow and steady wins the race

If you develop directly in production, the business will be all over you when you break things, and you will break things! So take the time to get a setup that allows you to go fast in the future.

A local development environment has many advantages and with Docker, it is easy to set up. I will show how I handle the setup for my development. Including tip for how you can take advantage of a local development environment.

The first part motivates why setting up a local development environment is a good idea. Feel free to skip directly to how we can handle it with Docker.

Production development environment

It should not require much explaining why it is a bad idea to develop directly in production systems. But I have seen it happen in a few cases for different reasons that might resonate with you.

Different developers

If the customer only requires small changes from time to time in a software product, they do not need continuous employment of the same developer(s). Often it will be a different developer that is contracted from task to task.

Setting up a development environment from scratch by a new developer can be a daunting and time-consuming task. Often the customer will not pay for the time needed to set up a development environment, because it might cost an order of a magnitude more than developing directly on the production system, even if the risk is higher.

Because of time or cost constraint, developing directly on production systems happen more than we want it to. It always carries a high risk to develop directly on a production system.

Small development needs

The production environment is always running because it needs to. If the development needs in a product are small the development environment could get into a state where it does not resemble production anymore, and make developing in that environment impossible. Forcing a developer to make the changes directly to production.

It is just a small fix!

A developer might be tempted to do a small fix in production because it is easier than trying to get the development environment running. A high-risk operation!

Developing on production happens for many different reasons, but it is always a high-risk endeavor.

Development server environment

A development server environment is better than developing directly on production, but it does have severe limitations depending on how the software product is built. We want the setup to resemble the production environment as much as possible. It is often a tradeoff because the cost for an exact copy of production is often too expensive.

Single developer

When a single developer works on a product, a development server can be a good way to handle the development task. A server is independent of the developer’s local machine making it is easier to have a stable environment.

It also gives the deployment process two steps, development and production, the risk of breaking production is much smaller. The business can even test new features before they are released to production. A much better setup than developing directly, on production.

Multiple developers

When using an interpreted programming language like PHP or Python, each file is read at runtime, so it is possible for multiple developers to use the same server at the same time. As long as they do not change the same files they will not override each other’s changes. Better but far from an optimal situation.

The problem arises because in many projects there are a few files that contain code that almost all other components depend on, and when they need to change for multiple developers at the same time they will override each other’s changes. It could be files with dependency injection code or ORM setups or similar, where there are often changes from multiple developers.

I have seen many projects where changes are pushed to the shared environment using FTP. It contains no guards for when files are overridden, causing confusion when the change you just made does not show up in the software.

As the number of developers increases, this causes more and more problems and breaks down eventually.

Be wary of changes to the environment

If you do not take care to track changes to your environment the production and development environment will start to diverge. Change happens all the time.

  • A new version of the database software gets upgraded on production but not to development
  • A config setting is changed on the web server but forgotten in development
  • An operating system upgrade changed a configuration that causes problems on one setup but not the other.
  • And so on.

Each small change cause potential problems if it is not synchronized between the environments.

Local development environment

The final step is to have an environment for each developer that they have exclusive access to. Their own computer.

Running the development locally has many advantages. There is no competition with other developers, no risk of overwriting each other’s changes. Production is unaffected if changes break the product. Debugging is easier to set up. Changes made to files show up instantly.

The problem with configuration management across the environment is still there. Docker can help in this case.

Setting up the environment with Docker

Docker gives us the power to replicate as close to production as possible, with minimal effort.

An added challenge for me is that my production setup runs on Linux and my development machine is a Windows machine. But Docker can help bridge that gap. When changing from a single production setup to production, test, and local development environments, the configuration management challenge increase a lot. Docker can help us manage it while making development a breeze.

So how does development with Docker looks like?

https://youtu.be/5DTWx3tele0

Initially, I only had a production setup, shame on me :-) Production run Docker swarm, and are defined as shown here:

Docker compose

There is no need to run swarm mode in development, there is no need to have load balancing and multiple web servers, and backup is not needed either. To boot the development environment I created a scaled down version of the compose file to deploy using docker-compose:

Docker compose development

It uses the exact same Docker images as production but with a few changed configuration variables. First all unneeded services are removed. The load balancer is skipped and port 80 on the http service is mapped to allow access.

Volumes from the local development environment are mapped. This allows us to change the files in our IDE and see the changes instantly.

The php-fpm service has a few extra settings to allow easier development. In production .php files are read and cached forever. Obviously, we do not want this behavior in production so it is disabled with the setting PHP_VALIDATE_TIMESTAMPS. Error reporting level is also increased and xdebug is enabled.

It allows a development environment that closely resembles the production environment but still allows settings to facilitate debugging.

Managing databases

To be able to run the website locally we need a database dump to seed the local database. I used a backup from the production site. Over time the production database and local database will diverge. To import data into the database I use the command.docker exec patch_db_1 sh -c “mysql -uroot -pxxx < /var/sqldump/lund_fitness.sql”   It executes the mysql command inside the database container which has the sqldump folder mounted. So in this way, we can edit the database file directly in our IDE and import it into the database container.   You could also manipulate the database directly using a database management tool, but that will cause problems if the development machine crashes or we need to onboard a new developer. Using a database dump file that we can commit to the source repository makes this easier.

Closing comments

I hit a few gotchas when setting up the environment.

First, a strange error that the fileserver service script reported strange errors. This happened because of windows line endings, as explained here. It was difficult to diagnose but easy to fix.

It is possible to use environment variables directly inside php.ini files as described here. It makes different settings for development and production easy.


Share

Frederik Banke

Frederik Banke

Code Coach

I teach developers how to improve the code they write. I focus on how they can implement clean code and craftsmanship principles to all aspects of their code.

Expertise

Clean Code
Refactoring
TDD
C#

Social Media

linkedingithubwebsite

Related Posts

GlusterFS to EFS
Switching from GlusterFS to Amazon EFS
April 19, 2019
2 min
© 2024, All Rights Reserved.
Powered By Earl Grey
Icons made by Freepik.com from Flaticon.com

Quick Links

About MeContact

Social Media