table cf colperm deleteDeletes the Access Control Expressions (ACEs) for a specified column. Deletion cannot be undone.
i_montoya tries to write data to columns
col1 and col2 in column family
cf1. HPE Ezmeral Data Fabric Database checks whether i_montoya has write
permission on cf1 AND col1 AND col2.
If i_montoya does not have all three permissions, HPE Ezmeral Data Fabric Database returns an
error that says access for the write is denied.If this user were to try to read from
the same two columns, HPE Ezmeral Data Fabric Database would simply not return the data. If the user tried to
read from those two columns and additional columns on which he had read permissions,
the results would contain the data for those additional columns but exclude the data
for col1 and col2.
To run this command, your user ID must have the following permissions:
readAce and writeAce on the volumelookupdir on directories in the pathadminaccessperm on the tablemapr user is not treated as a superuser.
HPE Ezmeral Data Fabric Database does not allow the mapr user to
run this command unless that user is given the relevant permission or permissions with
access-control expressions.maprcli table cf colperm delete
-path <path>
-cfname <column-family name>
-name <column name>
curl -k -X POST
'http[s]://<host>:<port>/rest/table/cf/colperm/delete?path=<path>&cfname=<name>&name=<name>'
-u <username>:<password>
mapr user is not treated as a superuser.
HPE Ezmeral Data Fabric Database does not allow the mapr user to
run this command unless that user is given the relevant permission or permissions with
access-control expressions.|
Parameter |
Description |
|---|---|
|
path |
The path to the table.
|
|
cfname |
The name of the column family in which the column is located. |
| name | The name of the column that you want to delete the ACEs for. |
Deletes ACEs for column col1 in table mytable and column
family cf1:
maprcli table cf colperm delete -path /mytable -cfname cf1 -name col1
curl -k -X POST \
'https://r1n1.sj.us:8443/rest/table/cf/colperm/delete?path=%2Fmytable&cfname=cf1&name=col1' \
-u mapr:mapr