额 我用的sentry service
现在通过beeline,创建了role并对role进行了授权,但怎么把role和user关联起来呢?
[mw_shl_code=applescript,true]0: jdbc:hive2://hadoop1:10000/default> show grant role admin;
INFO : Compiling command(queryId=hive_20160628160000_c344268d-7dba-4a4c-ac2d-707811351a77): show grant role admin
INFO : Semantic Analysis Completed
INFO : Returning Hive schema: Schema(fieldSchemas:[FieldSchema(name:database, type:string, comment:from deserializer), FieldSchema(name:table, type:string, comment:from deserializer), FieldSchema(name:partition, type:string, comment:from deserializer), FieldSchema(name:column, type:string, comment:from deserializer), FieldSchema(name:principal_name, type:string, comment:from deserializer), FieldSchema(name:principal_type, type:string, comment:from deserializer), FieldSchema(name:privilege, type:string, comment:from deserializer), FieldSchema(name:grant_option, type:boolean, comment:from deserializer), FieldSchema(name:grant_time, type:bigint, comment:from deserializer), FieldSchema(name:grantor, type:string, comment:from deserializer)], properties:null)
INFO : Completed compiling command(queryId=hive_20160628160000_c344268d-7dba-4a4c-ac2d-707811351a77); Time taken: 0.094 seconds
INFO : Executing command(queryId=hive_20160628160000_c344268d-7dba-4a4c-ac2d-707811351a77): show grant role admin
INFO : Starting task [Stage-0:DDL] in serial mode
INFO : Completed executing command(queryId=hive_20160628160000_c344268d-7dba-4a4c-ac2d-707811351a77); Time taken: 0.033 seconds
INFO : OK
+-----------+--------+------------+---------+-----------------+-----------------+------------+---------------+-------------------+----------+--+
| database | table | partition | column | principal_name | principal_type | privilege | grant_option | grant_time | grantor |
+-----------+--------+------------+---------+-----------------+-----------------+------------+---------------+-------------------+----------+--+
| * | | | | admin | ROLE | * | true | 1467097375480000 | -- |
+-----------+--------+------------+---------+-----------------+-----------------+------------+---------------+-------------------+----------+--+
1 row selected (0.16 seconds)[/mw_shl_code]
|