Skip to main content
Skip table of contents

Synchronize repository to disk

The repository sync-to-disk feature supports bi-directional synchronization between the Data Management repository and the file system. This offers fine-grained control over the repository, with support for "promotion" processes, easier backup, and interoperability with version control systems.

  • You can perform synchronization from the command line (using the command-line tool rpdm_sync) or from the repository tree in the Data Management client.

  • You can sync repository objects contained in folders, including macros, projects, automations, data, settings, formulas, and schemas.

  • You can sync the entire repository, starting at the root, or select a single folder containing objects to be synchronized to disk.

The sync process maps these objects to a representation specific to each object type.

Note that while you cannot sync repository archives or Data Management packages, you can sync to and from ZIP archive files.

image-20240322-182203.png

Extension mapping

With repository sync-to-disk , each selected repository folder and object has a one-to-one correspondence to a synchronized disk folder or file. The repository and disk names will usually be identical, with some exceptions where a file name extension is used to indicate object-type:

Object type

File name extension

Project

.dlp

Macro

.dlp

Automation

.dla

Metadata

Repository objects have metadata (type and subtype) which are not present in disk files and folders. Because this metadata is not readily represented in disk files, synchronization creates discrete metadata files at each folder level, which are stored on disk as rpdm_metadata.json. Metadata files are maintained by both the load and save processes. A sync-to-disk process may merge new information into an existing metadata file.

Special folders

By default, the Users, Groups, and Settings repository folders are excluded from sync operations performed on the repository root (unless the operation specifies the folder explicitly).

These folders are critical to Data Management operations, and handling them improperly can cause problems.

You can include these folders in sync operations in the Data Management client, or from the command line:

The Autosave and Automation States folders represent system states rather than configuration, and are never included in sync operations.

Repository sync in the client

You can right-select any folder in the repository tree (including the repository root and special folders like Settings) and choose Synchronize.

image-20240322-182430.png

You can also select the Repository Synchronization button on the Data Management toolbar.

To synchronize the repository

  1. In Data Management, right-click the desired repository folder, and then select Synchronize.

  2. In the Synchronize Repository window, select the desired Operation:

    • Synchronize repository to disk. The resulting directory structure will include only the current version of items under Repository path.

    • Synchronize repository to ZIP. The resulting directory structure will include only the current version of items under Repository path.

    • Synchronize from disk to repository. This will create a new version of existing items, (unless Skip destination items that are newer than source items is selected and the source item is older than the destination item).

    • Synchronize from ZIP to repository. This will create a new version of existing items, (unless Skip destination items that are newer than source items is selected and the source item is older than the destination item).

  3. Select Repository path, and browse to (or specify) the repository path if necessary.

  4. Select Disk path and browse to (or specify) the disk folder. This must be a new empty folder, or a folder that you have previously synchronized to/from. If you are syncing to or from a ZIP archive, include the name of that file.

  5. Select Options to configure advanced sync options:

Option

Description

Delete destination items that do not exist in source

Deletes items from disk if a corresponding item does not exist in the repository. This option is useful when using repository sync with version-controlled objects.

This option is destructive, replacing the contents of the target folder with those of the repository folder. Mistakes can be costly!

Consider using repository sync from the command line in a script to automate the sync if you need this option.

Skip destination items that are newer than source items

Prevents overwriting items in the target that are newer than items in the repository.

This option checks the timestamp of the file on disk. If your disk folder is a version control system (VCS) workspace, the file time will be the last checkout time, not the time of update in the VCS. For this reason, you should not use this option to sync to a VCS workspace. Instead, let the files be overwritten, and review the changes at VCS commit time.

Continue syncing when errors are encountered

Prevents synchronization from stopping on error.

Allow unmanaged disk files

Attempts to infer metadata (object type, subtype, and repository name) for any objects found on disk that not already described by the repository metadata. Select this option to address the error: folder contains items that were not created by a previous repository sync.

Include Users and Groups
Include Settings

These options are available if you specified the repository root as Repository path.

These folders are critical to Data Management operations, and handling them improperly can cause problems.

  1. Select Preview to view a list of actions that will be taken.

  2. Select Synchronize to start the sync operation.

Repository sync from the command line

While synchronizing the Data Management repository from the the repository tree displayed in the Data Management client is easy and intuitive, there may be times when you want to perform synchronization from the command line. Run the rpdm_sync command with the -help option to display a summary of the available options.

Syntax

rpdm_sync: -repo=folder -disk=folder <command> [<connect>] [<login>] [options]

Parameters

Usage

-repo=folder

(Required) Repository folder to be synchronized.

-disk=diskLocation

(Required) Disk folder or ZIP file path corresponding to repository folder. Must be a new empty folder, or a folder that you have previously synchronized to/from. It may be any of the following forms:

local:///path/to/diskLocation or local:///D:/path/to/diskLocation
An absolute path to a local location (a location on the computer where rpdm_sync is being run).

path/to/diskLocation
A relative path to a local location.

/path/to/folder or D:/path/to/diskLocation
An absolute path to a location on the Data Management server host.

file:///path/to/diskLocation
An absolute path to a location on the Data Management server host.

Command

-save

Synchronize from repository to disk. The resulting directory structure will include only the current version of items under the selected path.
Exactly one of -save or -load must be specified.

-load

Synchronize from disk to repository. This operation will create a new version of existing items (unless -skipNewer is enabled and the source item is older than the destination item).
Exactly one of -save or -load must be specified.

Connect

-server=address[:port]

Connect to a site server at the specified address instead of localhost; port is optional.

-connect=plain

Force a plain TCP connection.

-connect=ssl

Force a secure TCP connection.

Login

-login=login

Login with the specified user name. Defaults to Administrator if not specified.

-password=password

Login with the specified password. Defaults to Administrator if not specified.

-keyfile=filename

Login using the specified keyfile, which contains an encrypted password.

Options

-test

Only report the actions that would be taken.

-skipNewer

Do not overwrite target files/objects with a newer timestamp than the source.

-delete

Delete target items when the corresponding source item is missing.

-package

Force creation of a package instead of a folder in the repository. Generally used only by the Data Management installer.

-includeUsersGroups

When syncing the root of the repository, include Users and Groups folders.

These folders are critical to Data Management operations, and handling them improperly can cause problems.

-includeSettings

When syncing the root of the repository, include the Settings folder.

This folder is critical to Data Management operations, and handling it improperly can cause problems.

-continueOnError

When errors are encountered syncing to repository, do not abort sync.

-inferMetadata

Infer metadata for objects encountered on disk that are not described by metadata.

-zipped

Disk path is a compressed ZIP file.

Command-line sync examples

Synchronize to disk

The following command performs a "preview" of a save from repository to disk:

BASH
$ rpdm_sync -save -repo=/Samples/COBOL -disk=f:/temp/synctest -test
Create f:\temp\synctest
Create f:\temp\synctest\AmsReceiptComplex.dlp
Create f:\temp\synctest\AmsReceiptMulti.dlp
Create f:\temp\synctest\AmsReceiptSingle.dlp
Create f:\temp\synctest\Data
Create f:\temp\synctest\Data\copybook.txt
Create f:\temp\synctest\Data\data.txt

Let's run the same command, but eliminate the -test option and define the disk folder as local, which means that it will work even if the rpdm_sync command is run on a remote system:

BASH
$ rpdm_sync -save -repo=/Samples/COBOL -disk=local:///f:/temp/synctest 
Package Samples/COBOL
Package Samples/COBOL/AmsReceiptComplex 
Package Samples/COBOL/AmsReceiptMulti 
Package Samples/COBOL/AmsReceiptSingle 
Package Samples/COBOL/Data 
Package Samples/COBOL/Data/copybook.txt 
Package Samples/COBOL/Data/data.txt 
Create f:\temp\synctest 
Create f:\temp\synctest\AmsReceiptComplex.dlp 
Create f:\temp\synctest\AmsReceiptMulti.dlp 
Create f:\temp\synctest\AmsReceiptSingle.dlp 
Create f:\temp\synctest\Data 
Create f:\temp\synctest\Data\copybook.txt 
Create f:\temp\synctest\Data\data.txt

The messages tell us that first the server is packaging the content for the remote changes, and then that the changes are being made to local disk.

If we run the command again:

BASH
$ rpdm_sync -save -repo=/Samples/COBOL -disk=local:///f:/temp/synctest 
Skip f:\temp\synctest
Skip f:\temp\synctest\AmsReceiptComplex.dlp 
Skip f:\temp\synctest\AmsReceiptMulti.dlp 
Skip f:\temp\synctest\AmsReceiptSingle.dlp 
Skip f:\temp\synctest\Data 
Skip f:\temp\synctest\Data\copybook.txt 
Skip f:\temp\synctest\Data\data.txt

no further changes are made.

Open the repository project /Samples/COBOL/AmsReceiptSingle in Data Management, make a change to an annotation, save the project, and then run the command again:

BASH
$ rpdm_sync -save -repo=/Samples/COBOL -disk=local:///f:/temp/synctest 
Skip f:\temp\synctest Skip f:\temp\synctest\AmsReceiptComplex.dlp 
Skip f:\temp\synctest\AmsReceiptMulti.dlp 
Update f:\temp\synctest\AmsReceiptSingle.dlp
Skip f:\temp\synctest\Data 
Skip f:\temp\synctest\Data\copybook.txt 
Skip f:\temp\synctest\Data\data.txt

Synchronize from disk

Continuing with the above example, use a text editor to edit the file f:/temp/synctest/Data/copybook.txt, adding a blank line to the end and then saving the file.

Running the following command will preview the changes that would be made to update the repository:

BASH
$ rpdm_sync -load -repo=/Samples/COBOL -disk=local:///f:/temp/synctest -test
Skip Samples/COBOL 
Skip Samples/COBOL/AmsReceiptComplex 
Skip Samples/COBOL/AmsReceiptMulti 
Skip Samples/COBOL/AmsReceiptSingle 
Skip Samples/COBOL/Data 
Update Samples/COBOL/Data/copybook.txt from f:\temp\synctest\Data\copybook.txt 
Skip Samples/COBOL/Data/data.txt

Delete the file f:/temp/synctest/Data/copybook.txt from disk and run the command again, adding the -delete option:

BASH
$ rpdm_sync -load -delete -repo=/Samples/COBOL -disk=local:///f:/temp/synctest -test
Skip Samples/COBOL 
Skip Samples/COBOL/AmsReceiptComplex 
Skip Samples/COBOL/AmsReceiptMulti 
Skip Samples/COBOL/AmsReceiptSingle 
Skip Samples/COBOL/Data 
Skip Samples/COBOL/Data/data.txt

Synchronization and version control

Since Data Management synchronization operations update their targets when there is a change, you can set up interoperability with a version control system (VCS) by defining the disk folder as the workspace folder for a VCS such as Subversion or git.

Prerequisites

Before you use Data Management with a VCS:

  1. Create or choose a VCS repository.

  2. Check-out or clone the VCS repository to a disk workspace folder.

  3. Designate a sub-folder within the workspace folder (or the entire workspace folder if the VCS repository is dedicated to Data Management) to hold the Data Management objects.

  4. Decide which folder or folders within Data Management will be checked into the VCS.

Add objects to version control

Once version control system (VCS) prerequisites have been met, you're ready to add Data Management objects to version control.

To add Data Management objects to version control in the client

  1. In your version control system (VCS), create or select a branch for your Data Management objects.

  2. In Data Management, right-click the repository folder you want to check into the VCS, and select Synchronize.

  3. In the Synchronize Repository window, select Operation and then choose Synchronize to Disk.

  4. Select Repository path, and browse to (or specify) the repository path if necessary.

  5. Select Destination path and browse to (or specify) the target disk folder in your VCS workspace.

  6. Optionally, select Preview to view a list of actions that will be taken.

  7. Select Start to start the sync operation.

  8. In your VCS, add and check-in the new Data Management objects.

To add Data Management objects to version control using the command line

  1. In your version control system (VCS), create or select a branch for your Data Management objects.

  2. Run rpdm_sync from the command line:

rpdm_sync -save -repo=repofolder -disk=diskfolder

In your VCS, add and check-in the new Data Management objects.

Work on version-controlled objects

Once you have added Data Management objects to your version control system (VCS), you can use Data Management's synchronization feature to access those version-controlled objects. The workflow is:

  1. Get the latest from your VCS.

  2. Sync changes from disk to Data Management.

  3. Work in Data Management.

  4. Sync changes from Data Management to disk.

  5. Commit changes to the VCS.

To work on version-controlled Data Management objects in the client

  1. In your version control system (VCS), select the repository and branch containing your Data Management objects, and then get the latest updates from your VCS (for example, git pull).

  2. Create a new branch in the VCS to contain the changes you are about to make.

  3. If the Data Management repository folder containing the Data Management objects does not yet exist, create it.

  4. In Data Management, right-click the repository folder and select Synchronize.

  5. In the Synchronize Repository window, select Operation and then choose Synchronize from Disk.

  6. Select Repository path, and browse to (or specify) the repository path if necessary.

  7. Select Disk path and browse to the source disk folder in your VCS workspace.

  8. Optionally, select Delete destination items that do not exist in source to track deletions that occurred in the VCS.

  9. Optionally, select Preview to view a list of actions that will be taken.

  10. Select Start to start the sync operation.

  11. Do your work in Data Management, creating and changing items in the repository folder.

  12. In Data Management, right-click the repository folder you want to check into the VCS, and select Synchronize.

  13. In the Synchronize Repository window, select Operation and then choose Synchronize to Disk.

  14. Select Repository path, and browse to (or specify) the repository path if necessary.

  15. Select Disk path and browse to the source disk folder in your VCS workspace.

  16. Optionally, select Delete destination items that do not exist in source to track deletions you made in the repository.

  17. Optionally, select Preview to view a list of actions that will be taken.

  18. Select Start to start the sync operation.

  19. In your VCS, add and check in new or changed Data Management objects.

  20. Merge your changes with the base branch in the VCS.

To work on version-controlled Data Management objects using the command line

  1. In your version control system (VCS), select the repository and branch containing your Data Management objects, and then get the latest updates from your VCS (for example, git pull).

  2. Create a new branch in the VCS to contain the changes you are about to make.

  3. Run the rpdm_sync command from the command line. The -delete is optional but recommended to track deletions made in the VCS:

rpdm_sync -load -repo=folder -disk=folder -delete -test

  1. View the the previewed list of actions. If it is acceptable, run the command again without the -test option.

  2. Do your work in Data Management, creating and changing items in the repository folder.

  3. Run the rpdm_sync command from the command line. The -delete is optional but recommended to track deletions you made in the repository.

rpdm_sync -save -repo=folder -disk=folder -delete -test

  1. View the the previewed list of actions. If it is acceptable, run the command again without the -test option.

  2. In your VCS, add and check in new or changed Data Management objects. You should carefully review changes in your VCS before committing.

  3. Merge your changes with the base branch in the VCS.

Limitations and workarounds

Data Management's synchronization operations cannot detect potential collisions and ambiguities in the change sequence. This may cause problems under the following scenarios:

Simultaneous change

If you and another user of the version control system (VCS) simultaneously change the same item in the same branch, Data Management's sync will not detect this, and the procedure described in Work on version-controlled objects will not detect a conflict during VCS check-in, because your changes will simply be deemed "the latest" and will overwrite.

Workaround: Always create a new branch when you start work destined for the VCS

Merge conflict

If you encounter a conflict when merging your VCS branch back to the base branch, a standard merge editor like kdiff3 may not be sufficient to edit the complex XML structure of an Data Management project.

Workaround: Perform whatever merging you can in the merge editor, then use Data Management to simultaneously open the "mine", "theirs", and "merged" versions of the project. Manually copy/paste changes to the merged version and save it.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.