Create journals

Deploy Universal Replicator using REST API with 25G iSCSI

Version
Audience
anonymous
Part Number
MK-24VSP1BQ011-00
ft:lastEdition
2026-07-01
  1. Define journals on primary and secondary storage systems.
    Request line:
    POST base-URL/v1/objects/journals
    Example:
    curl -v -H "Accept:application/json" -H "Content-Type:application/json" -H "Authorization:Session <32-character HEX string>" -X POST --data-binary @./journal.json 
    http://<Service_IP_Address_of_VSP_One_Block_20_series>/ConfigurationManager/v1/objects/journals
    journal.json example:
    {
     "journalId": 0,
     "ldevIds": [1102]
    }
    
  2. (Optional) Increase the journal copy speed to reduce copy time; however, doing so may affect I/O performance.
    Request line:
    PATCH base-URL/v1/objects/journals/object-ID
    Example:
    curl -v -H "Accept:application/json" -H "Content-Type:application/json" -H "Authorization:Session <32-character HEX string>" -X PATCH --data-binary @./journal_speed.json 
    http://<Service_IP_Address_of_VSP_One_Block_20_series>/ConfigurationManager/v1/objects/journals/0

    Values for copy speed are:

    L: Low speed (default)

    M: Medium speed

    H: High speed

    journal_speed.json example:
    {
     "mirrorUnit": {
     "muNumber": 0,
     "copyPace": "M"
     }
    }