Database Source Control vs. Database Release Automation
''I don’t need a build server; I have source code control,'' said no sane person ever.
Join the DZone community and get the full member experience.
Join For FreeSource control is your single source of the truth. Using a continuous build server with source code control is the first step in Agile Development, Continuous Integration, and Continuous Delivery. When a build is performed, source code is transformed from human-readable text to machine instructions that can be deployed. The source is tagged so that the code is forever tied to a specific application release. You can recreate it at any future time.
Database source control is missing from our database change process today. Sure, maybe we are checking in our database change scripts, maybe we use Toad Team Coding to check-in and check-out database objects for us during development. Once that build is performed, you have an atomic application binary ready for automated deployment and a bunch of SQL scripts. That will not speed your deployment process. You are still tied to a manual database deployment process.
Your challenge is that you cannot determine if a change has been persisted to a database without a manual review process. If you require manual DBA intervention for every change to a database, you will fail and your competitors will win.
I commend companies that use the same source control repository for both application code changes and database code changes. What this does is create database source control: a single source of the truth for what database changes are part of a release. Thus, we will no longer have to wonder what application version goes with what database schema version. (Of course, the converse is true: if you are using different repositories for both the application and database code changes, you will NOT have database source control and thus will not receive these benefits. They must be the same.)
Database Release Automation (DRA) solves this problem for us. Just like Application Release Automation orchestrates and automates previously manual tasks, Database Release Automation enables full stack automation by changing our database schemas safely and quickly without the need for human intervention. Of course, databases are different than application or web servers. We cannot simply blow away our database server and recreate it with a new version of the schema. We would lose our data. Databases have state and evolve over time.
Balancing safety and speed is key; you must have both with Database Release Automation. I recommend, as part of every Database Release Automation tool evaluation, having use cases that test if you can perform a completely automated database deployment. Review your past year’s schema changes and choose the really gnarly, nasty ones to automate. Renaming tables is always a good one. Also, attempt to enforce naming conventions and the like with changes. Look for ones that you know should fail and make sure your DRA tool will catch them.
If your current database change process cannot support lights-out automation, it’s time to look for a complete solution with something more than just source control for the database.
Opinions expressed by DZone contributors are their own.
Trending
-
WireMock: The Ridiculously Easy Way (For Spring Microservices)
-
How to Optimize CPU Performance Through Isolation and System Tuning
-
HashMap Performance Improvements in Java 8
-
Integration Testing Tutorial: A Comprehensive Guide With Examples And Best Practices
Comments