Many times, you would need to abandon changes in lower environments and prevent them from deploying into higher environments. For example, a script got packaged which drops a column. This will result in loss of data in PROD database. Such a change is not desirable to be released to PROD. In such a case, you would use Datical label to abandon such a change.
- Since you will be using labels, such as "release/1.0.0" to assign changes to a release, you can use a label such as "abandoned" to indicate changes that are abandoned. When changes are deployed as part of a release, you would deploy using a label such as "release/1.0.0 AND !abandoned" (notice the !) so that none of the abandoned changes make it to a release.
- It should be noted that this will require you to fix your lower environments and modify (or remove) changes in order to keep your environments consistent.
- You can do this by bringing a "fix" script and allow Datical to deploy the fix script up until the environment where changes got deployed.
- If the change needs no further modification and it is a candidate for a future release, then that change can sit in the lower environment until such time that it is slotted for a particular release at which point you will need to remove these labels: "abandoned" label and earlier release label ("release/1.0.0"). And apply the correct release label (e.g. "release/2.0.0").
- Here is a simple example of how a label could be applied to changes that are getting abandoned:
Script name | temp_table.sql |
---|---|
Label (initially) | "release/1.0.0" |
Label (after abandoning) | "release/1.0.0,abandoned" |
Label (moving to next release) | "release/2.0.0" |
Steps described below allow you to fix your database environments while still leveraging your automation framework.
It is undesirable to make manual changes to your database environments that are managed by automation.
Note
Note that adding the "abandoned" label to your changesets require you to make changes to your Datical DB project. As such, this activity should always be performed by automation because it requires checking out Datical DB project from SCM, makings changes to it and then pushing changes back into the SCM.
Step-by-step guide
For the purpose of the document, we will assume that the Datical project has the following pipeline and that our faulty script "temp_table.sql
" has been deployed up until the QA environment. We now need to abandon this script so that it no longer deploys to STAGE and PROD environments. We also need to bring a "fix" script to fix changes that were made to REF1, DEV and QA environments.
REF1 | DEV | QA | STAGE | PROD | |
---|---|---|---|---|---|
temp_table.sql | DEPLOYED | DEPLOYED | DEPLOYED | ABANDONED | ABANDONED |
- Instruct Datical to abandon the script "
temp_table.sql
". This will require adding the label "abandoned" to all changesets that generate from this script. You can perform this task in automation, however, the user will need to provide the script name as a parameter. In your automation system (Jenkins, Bamboo, UrbanCode Build, etc.), create a new job which will perform following operations:- Checkout Datical project from your source control (Git, TFS, SVN)
- Run "hammer addLabels" command. This command takes two arguments:
- lookupChangesets - This is the script name which you want to abandon, e.g., "
temp_table.sql
". This will be the user provided argument. - labels - This is the abandon label you want to give to your changesets, e.g., "
abandoned
"- Once you agree on what naming convention to use to abandon changes, this argument can be programmatic (e.g., "release/1.0.0-abandoned") or hard-coded (e.g., "abandoned").
- lookupChangesets - This is the script name which you want to abandon, e.g., "
- Commit and push Datical project back into source control
- Here is the complete sample script with some additional code for before and after status:
- Perform SCM operation so that you can check-in your changes back into SCM ("git branch --set-upstream-to ...")
- "hammer findChangeSets" used to identify labels before and after applying the "addLabels" command (note: use of
REM
and environment variables "%<variableName>%
" is specific to Windows): Perform SCM operation to commit and push the code and provide a relevant commit message ("git commit ..." and "git push ...")
Abandon Changesecho ------------------------------- set PATH=%PATH%;C:\apps\Datical\repl git clone http://user@bitbucket.datical.net/scm/bbu/ddb.git cd ddb git branch --set-upstream-to=origin/master master git status hammer findChangeSets --lookupChangesets="%lookupChangesets%" hammer addLabels --lookupChangesets="%lookupChangesets%" --labels="%labels%" hammer findChangeSets --lookupChangesets="%lookupChangesets%,%labels%" REM add steps to commit Datical project into Git. echo commit new changes back into Bitbucket git add -A git commit -m "Automations:AbandonScript-%lookupChangesets% - build number=%BUILD_NUMBER%" git push -u origin master echo -------------------------------
Here is how your automation job would report your abandoned changesets:
Notice that one changeset was identified with lookupChangets="temp_table.sql". Later, the same changeset was identified when lookupChangesets="temp_table.sql,abandoned"
ahammer findChangeSets --lookupChangesets="temp_table.sql" _______________________ | Change Set ID| Author| |======================| | Temp_Table | amalik| hammer addLabels --lookupChangesets="temp_table.sql" --labels="abandoned" Updating labels for change set Temp_Table hammer findChangeSets --lookupChangesets="temp_table.sql,abandoned" _______________________ | Change Set ID| Author| |======================| | Temp_Table | amalik|
Here is how the abandoned changeset looks like in Datical GUI:
- Now that the "abandoned" label has been added, you want to make sure that you alway deploy using "!
abandoned
" label (notice the "!") with your deploy automation tool. Here is a sample deploy command you would use:hammer deploy STAGE --labels "release/1.0.0 AND !abandoned"
hammer deploy PROD --labels "release/1.0.0 AND !abandoned"
- Setup a directory structure in order to bring a "fix" script to fix changes made by the abandoned script.
Each directory (data_dml, ddl, function, package, packagebody, procedure and sql_direct) will have subdirectories indicating how far in the pipeline do deploy changes. See the table below:
"sql_code" "data_dml" "ddl" "function" "package" "packagebody" "procedure" "sql_direct" All the way to PROD "REF1-only" "until-DEV" "until-QA" "until-STAGE" Top-level directory for sql repository:
Each directory contains identical set of subdirectories - each referring to how far the scripts in those subdirectories will be deployed.
Any script that does not get checked into one of the subdirectories (REF1-only, until-DEV, etc.) will be eligible to be deployed in all database environments in the Datical pipeline, including PROD.
In the screenshot below, the script "
create AAA_TESTA4.sql
" will be deployed to all environments. The resulting changesets will automatically pickup all labels and other flags described in the adjacent metadata.properties file.metadata.properties file in REF1-only subdirectory contains context flag as:
contexts=REF1
metadata.properties file in until-DEV subdirectory contains context flag as:
contexts=REF1,DEV
metadata.properties file in until-QA subdirectory contains context flag as:
contexts=REF1,DEV,QA
metadata.properties file in until-STAGE subdirectory contains context flag as:
contexts=REF1,DEV,QA,STAGE
- Download this zip file which has this directory structure predefined, along with metadata.properties files in each subdirectory.
- Bring your fix script. Use the sql repository's directory structure (as described above) to identify which environments will receive the "fix" script.
- For example, if the abandoned DDL script got deployed until the QA environment, then commit the fix script into the "ddl" > "until-QA" subdirectory.
- Datical's Deployment Packager will pick up the fix script from this directory and realize the list of contexts described in adjacent metadata.properties file, i.e. contexts=REF1,DEV,QA. Therefore, changesets resulting from the fix script will be eligible to deploy in those three environments only.
Related articles