您的位置:首页 > 其它

Control the Data, Not Just the Code

2015-09-05 09:11 495 查看


Control the Data, Not Just the Code

Chad LaVigne

SouRCE CodE ConTRol And ConTinuouS inTEgRATion are excellent tools for managing the application build and deployment process. Along with source code, schema and data changes are often a significant part of this pro- cess and thus warrant similar controls. If your build and deployment process includes a list of elaborate steps required for data updates, beware. These are the lists that always have you crossing your fingers. They look something like this:

1. Create a list of scripts that need to be run, in order.

2. E-mail scripts to special database person.

3. Database person copies the scripts to a location where they’re executed by a cron job.

4. Check script execution log and pray that all scripts ran successfully since you’re not exactly sure what will happen if you rerun them.

5. Run validation scripts and spot-check the data.

6. Regression test the application and see what blows up.

7. Write scripts to insert missing data and fix blow-ups.

8. Repeat.

OK, so that might be a slight exaggeration but it’s not that far off. Many a proj- ect requires this type of acrobatic workflow for successful database migration.



For some reason the data portion of the migration plan seems to be easily overlooked during architecture planning. As a result, it can become a brittle, manual process that gets bolted on as an afterthought.

This complex web-work creates many opportunities for process breakdown. To make matters worse, bugs caused by schema and data changes don’t always get caught by unit tests as part of the nightly build report. They like to rear their ugly head in a loud, boisterous manner immediately after a build has been migrated. Database problems are usually tedious to reverse by hand and their solutions tend to be more difficult to validate. The value of a completely automated build process that is capable of restoring the database to a known state will never be more evident than when you’re using it to fix an extremely visible issue. If you don’t have the ability to drop the database and restore it to a state that is compatible with a specific build of the application, you are susceptible to the same type of problems you’d have if you couldn’t back out a code change quickly.

Database changes shouldn’t create a ripple in your build’s time-space contin- uum. You need to be able to build the entire application, including the data- base, as one unit. Make data and schema management a seamless part of your automated build and testing process early on and include an undo button; it will pay large dividends. At best it will save hours of painful, high-stress prob- lem solving after a late night blunder. At worst it will give your team the ability to confidently charge forward with refactoring of the data access layer.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: