Selecting an Existing Schedule to Associate with a Volume

Explains how to associate an existing schedule with a volume using the Control System, the CLI, or the REST API.

Selecting an Existing Schedule Using the Control System

Procedure

  1. Log in to the Control System and go to Summary tab in the volume details page.
  2. Click the (associated with the type of schedule in the Schedules pane) to display the Edit Schedules window.
  3. Review the name and detail of each schedule and select a schedule from the list.
  4. Click Save Changes to associate the schedule with the volume.

Selecting an Existing Schedule Using the CLI and REST API

About this task

You can associate a schedule with a volume using the schedule parameter when creating or editing a volume. For example:
maprcli volume create -name <volName> -path <mountPath> -schedule <scheduleID>
maprcli volume modify -name <volName> -schedule <scheduleID>
You can associate a schedule with a volume using the schedule parameter when creating or editing a volume. Send a request of type POST. For example:
curl -k -X POST 'https://<hostname>:8443/rest/volume/create?name=<volName>&path=<volPath>&schedule=<scheduleID>' --user mapr:mapr
curl -k -X POST 'https://<hostname>:8443/rest/volume/modify?name=<volName>&schedule=<scheduleID>' --user mapr:mapr
For the complete list of all required and optional parameters, see volume create and volume modify.