Version 6 (modified by 9 years ago) ( diff ) | ,
---|
Upgrades BluePrint
Goal
Target user: System Administrator of a production system (or the IT operations manager)
Goal: This is one part of making operations a big fan of our software: Make it very easy for them to upgrade.
Upgrade Issues
The current process is manual: UserGuidelines/Admin/Upgrade
For other software, people are used to automatic upgrades. Even the (very complex) Windows operating system auto-upgrades. What can make an Eden upgrade problematic? There are two types of changes that are visible to the sysadmin or user:
- Structural changes: These are changes that affect data structure and file layout.
- Database schema changes
- Directory structure changes
- Configuration process and parameter changes
- Functional changes: These are changes that would alter the site behavior or layout, in non-trivial ways. This would affect users, and might require retraining.
These issues would be present even if the site were running an unmodified version of Eden using a supplied template. If the site has made modifications to the code, even in a template, and those modifications conflict with changes in the upgrade, then the two sets of modifications need to be reconciled. Note configuration changes are expected, and need to be supported in the normal case above.
Expected issues beyond the above, that can arise if the site has code modifications, are:
- An API change may require the site to alter their code to use the modified API.
- Alteration by the site of code outside of the site's template may lead to merge conflicts.
- If both the site and upgrade have database schema changes, then those changes need to be reconciled and merged.
Of these issues, the most potentially destructive is a database schema change, as without proper preparation, running the upgraded version of Eden can lead to data loss. The Web2py migration does not understand changes such as renaming a column -- that is interpreted as deleting a column and adding a new one. This can happen regardless of whether the site has made any changes whatsoever in their code. Also, requiring the sysadmin to investigate the upgrade's schema changes, and write scripts to convert their database, is a significant burden. Addressing database migration is thus likely to be the largest reduction in upgrade effort.
Support for upgrades can proceed in stages:
- Deal with the case in which there are no significant site code changes. That is, changes are limited to configuration and relatively cosmetic UI changes.
- Assume additional changes are confined to the site's template, but may include use of a now-deprecated or altered API.
- Deal with site database schema changes.
- Consider what can be done to ease conflict resolution in UI code.
- Likewise, for conflict resolution in model and controller code, beyond schemas.
Some potential conflicts may be avoided up front by convincing sites not to alter framework code, and to avoid directly editing models and controllers. For changes that may be of benefit to other users, encourage sites to make their changes generic and contribute them back to the main repository.
Here, we consider the first stage, in which the upgrade issues are due to changes in Eden rather than in site changes. Since directory layout changes are rare, this can be deferred until such a change is planned, unless there are sites deferring upgrades due to previous directory reorganizations.
Configuration Changes
The site may have modifications to models/000_config.py, or they may have changes in their template's config() function in config.py. These are problematic as they are Python code. Obtaining the site's settings.* values would require parsing the files in some manner. An alternative is to replace the current Python code for configuration settings by a consolidated format such as a JSON or XML structure, or by a standard type of configuration file used in other Python products. Options (which may be somewhat dated) are described here: BluePrint/Update