You can associate a tierand/or tiering rule with a new volume or with an already tiering-enabled volume using the Control System, CLI, and the REST API.
$maprcli volume create -name <vol_name> -path <vol_mount_path> -tieringenable true -tiername <tier_name> -tieringrule <rule_name>
For more information, see volume create.$maprcli volume modify -name <vol_name> -tiername <tier_name> -tieringrule <rule_name>
For more information, see volume modify.curl -k -X POST 'https://<host>:8443/rest/volume/create?name=<vol_name>&path=<vol_mount_path>&tieringenable=true&tiername=<tier_name>&tieringrule=<rule_name>' --user mapr:mapr
For more information, see volume create.curl -k -X POST 'https://<host>:8443/rest/volume/modify?name=<vol_name>&tiername=<tier_name>&tieringrule=<rule_name>' --user mapr:mapr
For more information, see volume modify.