Hive Sentry Problem while granting roles to a group

0 votes

Hi. I am trying to grant a role to a group using the below command:

GRANT ROLE student TO GROUP student-group;

But this is giving an error. It says it cannot grant role because of some syntax error. I have checked the syntax and it is right. I don't understand what the problem is. 

May 31, 2019 in Big Data Hadoop by Karan
953 views

1 answer to this question.

0 votes

The group name you are trying to assign the role to is 'student-group'. Sentry allows granting roles to groups whose name is alphanumeric and the only special character allowed is an underscore (_). Because you have a hyphen (-). If there are any special characters apart from an underscore then you have to use backticks (`) as follows:

GRANT ROLE student TO GROUP `student-group`;

P.S.: It would have been better if you had shared the error log. It would have been easy to analyze.

answered May 31, 2019 by Jimmy

Related Questions In Big Data Hadoop

0 votes
3 answers

How to connect Spark to a remote Hive server?

JDBC is not required here. Create a hive ...READ MORE

answered Mar 8, 2019 in Big Data Hadoop by Vijay Dixon
• 190 points
12,154 views
0 votes
1 answer

Hadoop Hive: How to skip the first line of csv while loading in hive table?

You can try this: CREATE TABLE temp ...READ MORE

answered Nov 8, 2018 in Big Data Hadoop by Omkar
• 69,210 points
8,450 views
0 votes
1 answer

Hadoop Hive: How to split a single row into multiple rows?

Try this SELECT ID1, Sub FROM tableName lateral view ...READ MORE

answered Nov 14, 2018 in Big Data Hadoop by Omkar
• 69,210 points
8,611 views
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,612 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,212 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
104,868 views
–1 vote
1 answer

Hadoop dfs -ls command?

In your case there is no difference ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by kurt_cobain
• 9,390 points
4,291 views
0 votes
1 answer

Hive: Granting roles to groups

You can use the GRANT ROLE statement ...READ MORE

answered May 31, 2019 in Big Data Hadoop by Roshni
1,493 views
0 votes
1 answer

How to convert a string to timestamp with milliseconds in Hive?

 concatenation of substrings using the following code: select ...READ MORE

answered Oct 31, 2018 in Big Data Hadoop by Neha
• 6,300 points
18,690 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP