Get started with update sets
Summarize
Summary of Get started with update sets
Update sets in ServiceNow enable customers to capture, track, and move customizations and application changes across instances. They are ideal for storing changes to base systems or installed applications and producing files for export. However, update sets should not be used to install applications; instead, customers should use the application repository or ServiceNow Store for installation and updates.
Show less
When to Use Update Sets
- Good for: Storing and applying specific versions of applications, deploying patches or changes, and exporting configurations.
- Not suitable for: Installing applications (use the application repository or ServiceNow Store instead).
- Considerations: For team development, publish applications only from a parent instance. Update sets store prior application versions, while the application repository manages the latest versions automatically.
Planning the Update Process
To avoid errors and performance issues, establish a standard process for moving update sets:
- Ensure source and target instances are on the same ServiceNow version to maintain compatibility.
- Limit changes to a single update set for small to medium tasks to simplify review, reduce conflicts, and speed up previews and commits.
- Confirm that base system records share matching
sysidfields by cloning production instances for non-production environments. - Define a clear migration path (e.g., development → test → production) and avoid migrating the same update set from multiple sources.
- Schedule update set commits to production during off-business hours to prevent temporary performance degradation.
- Use clear naming conventions that include references to problem tickets and sequence numbers to coordinate multiple developers and ensure correct application order.
- Understand which customizations are tracked, which dictionary changes are valid, and which can be reversed after application.
- Always verify the correct update set is selected before making changes.
Best Practices for Working with Update Sets
- Never delete update sets to avoid overwriting updated records in future migrations.
- Avoid including the
systemidfromldapserverconfigrecords in update sets, as these IDs differ across instances. - Do not back out or modify the Default update set to prevent system damage.
- Do not manually change the update set assignment on records; instead, switch to the correct update set, make a trivial change to the record, save it, then back out that change and save again to ensure proper tracking.
- Mark update sets as Complete only when fully ready for migration, and avoid reverting their status back to In Progress. Use additional update sets for ongoing changes and commit them in creation order.
- Use the Merge Update Sets tool to combine update sets instead of manual merging, which compares files and selects the newest versions.
- If issues arise after committing an update set in testing, resolve problems in a new update set, migrate both sets to production, and commit them sequentially.
- Always preview update sets before committing to verify changes.
- Set completed update sets on production instances to Ignore to prevent reapplication during instance cloning.
- Maintain a manual to-do list of post-update set tasks such as manual changes or data loads.
- Make incremental changes and verify each step to reduce risk and complexity.
- Note that updates cannot span multiple domains (e.g., global and TOP) within a single update set.
Next Steps
To begin using update sets, create and select the desired update set as current before making customizations. Follow the outlined best practices and planning steps to ensure smooth migrations and maintain instance stability.
Because update sets make changes to an instance, review this information to avoid errors and performance issues. Learn how to plan the update process and avoid common mistakes.
When to use update sets
| Deployment option | Good for | Future considerations |
|---|---|---|
| Update Sets | Storing changes to a base system or installed application. Storing and applying a particular version of an application. Producing a file for export. |
You can manually create update sets to store a particular application
version. Use update sets to deploy patches or changes to installed applications. Note: Don’t use update sets to install applications. Instead, use the application repository or the ServiceNow Store to install applications. |
| Application Repository | Installing and updating applications on all company instances.
Automatically managing application update sets. Restricting access to applications to the same company. Deploying completed applications to end users. |
Consider uploading an application to the ServiceNow Store to share it with other users. Allows installation of and update to the latest application version only. Use update sets to store prior application versions. Note: If used with team development, publish applications only from a parent
instance. |
Plan the update process
- Check that both instances are on the same version. Customizations may not work if they rely on code that has changed between versions.
- Determine the changes to make in a single update set. Complete your update sets as you finish small to medium-sized tasks. As update sets get larger, it becomes harder to review them, takes longer to identify changes within them, increases the risk of conflicts with other update sets, and takes more time to preview and commit them. This is especially true if the update sets contain schema changes or revisions to large workflows or if the set has to be backed out.
- Confirm that all base system records have matching sys_id fields. Some base system records are created on an instance after provisioning and don’t match between different instances, leading to problems with update sets.
The best way to avoid this issue is to:
- Provision production and non-production instances.
- Clone the production instance onto the non-production instance.
- Identify a common path for update sets to move from instance to instance and maintain that model. Never migrate the same update set from multiple sources. Move update sets from dev to test and then from test to production.
- Plan for when to commit the update sets to production. Avoid committing an update set to a production instance during business hours. The instance may perform more slowly while the update set applies. Rest assured, this slower performance is temporary.
- Make sure update set names are clear. Create a naming convention to coordinate changes from multiple developers and to reference when committing the changes to another instance.
- If update sets are being generated as fixes for problems, consider including the problem ticket in the name (for example, PR10005 - Duplicate Email Issues Fix).
- If you need more than one update set to address a problem, include a sequence number in the naming convention. Doing so helps ensure that update sets are applied in the order that they were created (for example, PR10005 - Duplicate Email Issues Fix and PR10005.2 - Duplicate Email Issues Fix).
- Understand the following about update sets:
- What records are generated.
- Which customizations are tracked.
- Which dictionary changes are valid.
- Which customizations can be backed out (reversed) after applied.
- Before making any customizations, double-check that the correct update set is selected.
Working with update sets
- Don’t delete update sets. If an update set is deleted, any updated records may be overwritten in the next update.
- Don’t include the system_id field from the ldap_server_config record in an update set. An update set from a working configuration points to the wrong system_id node for the target instance and doesn’t work.
- Don’t back out the Default update set. This action damages the system.
- Never change the Update Set field value (update_set) in a
Customer Update record (sys_update_xml). If a customization is made in the wrong update
set, take the following action:
- Switch to the desired update set.
- Modify the object (record) that was originally changed. You can make a trivial change, such as adding a field.
- Save the record.
- Back out the change just performed, and then save the record again.
This action ensures that the latest version of the object is included in the desired update set and prevents duplicate updates for the same object in a single update set.
- Don’t mark an update set as Complete until it’s ready to migrate. After an update set is complete, don’t change it back to In progress. Instead, create another update set for the rest of the changes, and make sure to commit them together in the order that they were created. Naming conventions may help in this case (for example, Performance Enhancements and Performance Enhancements 2).
- Don’t manually merge updates into an update set. Use the Merge Update Sets module. This tool compares duplicate files between update sets and selects the newest version.
- If a committed update set has a problem in the test instance, build the fix in another update set in the development instance. Commit this set to the test instance, and then make sure both sets are migrated to the production instance and committed in the order they were made.
- Always preview an update set before committing it.
- Set completed update set on the production instance to Ignore. This state ensures the update set isn’t reapplied when cloning the instance.
- Keep a to-do list of manual changes and data loads that must be completed after an update set is applied.
- Don’t make too many changes at one time. Verify that the correct changes have been made incrementally.
- You can’t change a single update to update across multiple domains (that is, global and TOP domains). This function isn’t supported in the ServiceNow AI Platform.
To create an update set see Create and select an update set as the current set.