ONYX - 9.1 - Usage

Designer and Connect Format Rollback

De MappingDoc
Cette page est une version traduite de la page ONYX:9.1:Utilisation:Rollback des formats Designer et Connect et la traduction est complétée à 95 %.

Les traductions désuètes sont identifiées ainsi.
Autres langues :
English • ‎français

Introduction

Mapping 9.1 and higher includes a graphical interface to rollback Designer and Connect formats to a previous version. Using this feature, the user can easily restore a previous version of a Designer or Connect format in production.

Requirements

Mapping Onyx 10.2.5 or higher (Partially available since V9.1 but with limited access)

How it works

Configuration

Five new parameters are available now in the mapping.conf :

  1. [VERSIONING_TOGGLE]: Activate the rollback features.
  2. [FORMAT_REPOSITORY_DIR_FULLPATH]: give the path of the folder containing all the different versions.
  3. [VERSIONING_LIMIT_DURATION]: Gives the retention period of the formats (in days). The versions older than this values will be deleted during the next importation.
  4. [VERSIONING_QUOTA_PER_PROJECT]: Gives the number of versions maximum per project.
  5. [VERSIONING_QUOTA_GLOBAL]: Gives the maximum number of version all projects included.

<block name="EXPERT PATH">

    <group> 
       <element>
          ...
          <info name="[FORMAT_REPOSITORY_DIR_FULLPATH]">/apps/mapping/map400/repository</info>
          ...		
       </element>
    </group>
 </block>
...
<block name="OTHERS">
    <group>
        <element>
            ...
            <info name="[VERSIONING_TOGGLE]">YES</info>
            <info name="[VERSIONING_LIMIT_DURATION]">5</info>
            <info name="VERSIONING_QUOTA_PER_PROJECT]">10</info>
            <info name="[VERSIONING_QUOTA_GLOBAL]">30</info>        
            ...
        </element>
    </group>
</block>

This entry is created automatically when Mapping 10.2.5 is installed and behond.

Their default values are :

  1. [VERSIONING_TOGGLE]: NO
  2. [FORMAT_REPOSITORY_DIR_FULLPATH]: /apps/mapping/map400/repository.
  3. [VERSIONING_LIMIT_DURATION]:  : No limit or 0
  4. [VERSIONING_QUOTA_PER_PROJECT]: No limit or 0
  5. [VERSIONING_QUOTA_GLOBAL]: No limit or 0


The "repository" folder is also created automatically.

Interface

Format versioning is available for Designer and Connect.

Designer Formats

In Mapping 9.1 and higher, go to Designer Formats Management:

In the Mapping menu, click on:
  1. Designer Formats Management
  2. Formats Management

The list of all available Designer formats is displayed.

OX S VERSIONING1.jpg

There you can manage the different versions of each given format by clicking on the i icon at the end of the line of icons.

The window below is displayed presenting all versions and the history of versions used:

OX S VERSIONING2.jpg

1 : Format
2 : Format version number
3 : User who last imported the format or used the rollback feature (always set to Auto
4 : Comment written during last rollback (Always set to manual rollback)
5 : Date and time the version was activated for the last time
6 : Date and time until which the version was last active
7 : Rollback button

V4 version rollback:

In this example, we want to restore version V4 by clicking on the Rollback button:

OX S VERSIONING3.jpg

This is the result:

OX S VERSIONING4.jpg

Version 4 of the format is activated.


Note: You can have a view of all formats and all versions. To do so, open the Formats History sub-menu under Designer Formats Management

OX S VERSIONING5.jpg

Connect Formats

Connect formats work the same as Designer formats. Please check the Designer formats section above.

Command Line

You can also manage format versions from the command line using the mapobjectversioncontrol binary.

Example:

// Save project KUHN with sequence 20 currently in production
mapobjectversioncontrol backup "KUHN" "00020"
// Restore project KUHN wit sequence 10 as it was in production on 27 April
mapobjectversioncontrol restore "2019-04-27T23:59:59.000Z" "KUHN" "00010"
// List of projects where different versions are available
mapobjectversioncontrol list

All actions that have an impact on the repository are versioned automatically.

Soon you will be able to restore using the version number like this:

 mapobjectversioncontrol restore "KUHN" "00010" v3

Special Case

Existing Formats

If there are existing formats in the environment (created through copying the contents of the MAP400 folder from an environment where there is no versioning system, or when upgrading from a version older than 9.1), version V0 of each format will not be saved in the versioning mechanism.

As a result, when importing the next version V1 of the format, version V1 will be saved but V0 will be lost.

To prevent this, before importing version V1, run the command below:

/apps/mapping/bin/mapobjectversioncontrol backup "format" "sequence"

This will create an entry for version V0 in the versioning system. The version will then be available in the Rollback management interface.