Removes a tier.
$ maprcli tier remove
-name <tier_name>
[ -cluster <cluster_name> ]| Request Type | POST |
| Request URL | |
| Parameter | Description |
|---|---|
cluster |
The name of the cluster on which to run the command. |
name |
The name of the tier to remove. |
Remove a tier (specified by name):
# /opt/mapr/bin/maprcli tier remove -name testCold -json
{
"timestamp":1521064355911,
"timeofday":"2018-03-14 02:52:35.911 GMT-0700 PM",
"status":"OK",
"total":0,
"data":[
],
"messages":[
"Successfully deleted tier: 'testCold'"
]
}# curl -k -X POST 'https://abc.sj.us:8443/rest/tier/remove?name=testCold' --user mapr:mapr
{"timestamp":1526485963448,"timeofday":"2018-05-16 08:52:43.448 GMT-0700 AM","status":"OK","total":0,"data":[],"messages":["Successfully deleted tier: 'testCold'"]}