Member since
09-29-2015
36
Posts
26
Kudos Received
10
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2254 | 11-07-2018 12:45 AM | |
1094 | 11-07-2018 12:22 AM | |
3187 | 03-15-2018 03:55 PM | |
4312 | 02-27-2018 09:51 PM | |
3819 | 12-29-2016 06:50 PM |
03-31-2017
07:18 AM
1 Kudo
In addition to HBase tables, Atlas data is stored in 3 Solr collections as well: vertex_index, edge_index and fulltext_index.These need to be backed up as well.
... View more
02-15-2017
10:19 PM
I think Hive folks should look into this one. CC: @Eugene Koifman, @Wei Zheng
... View more
12-29-2016
06:50 PM
1 Kudo
I was able to create a policy successfully with the command-line in your post. There should be some log in one of these files: xa_portal.log, catalina.out, most recent access_log*.log. Can you check again? This error could be due to incorrect JSON as well - if this is the cause, error details should be in catalina.out.
... View more
12-23-2016
08:08 PM
Can you take look at xa_portal.log to troubleshoot further? If you can send details of the REST API call made and the response, it can help find the root cause.
... View more
12-22-2016
08:11 PM
Fix in RANGER-1175 may not be present in the sandbox. Can you try the following workaround, to get the fix in the sandbox? 1. cd /usr/hdp/current/ranger-admin/ews 2. mv webapp/scripts/views/policies/RangerPolicyForm.js webapp/scripts/views/policies/RangerPolicyForm.js.saved 3. curl https://raw.githubusercontent.com/apache/incubator-ranger/ranger-0.6/security-admin/src/main/webapp/scripts/views/policies/RangerPolicyForm.js > webapp/scripts/views/policies/RangerPolicyForm.js After this, please clear your browser cache and try. Hope this helps.
... View more
12-22-2016
02:27 AM
3 Kudos
Which version of Ranger do you use? This looks like the issue fixed in https://issues.apache.org/jira/browse/RANGER-1175. @mehul.parikh
... View more
12-18-2016
08:07 PM
1 Kudo
>> Hive view cannot be used to authorize using Ranger. This is not true. Ranger Hive policies don't distinguish between Hive tables and views. You can simply provide view name in Ranger policy instead of table name.
... View more
12-18-2016
07:59 PM
1 Kudo
if row-level filter/column-masking is enabled on a table for a user, that user will not be allowed to perform any update operations (like insert, delete) on the table. This is to prevent such users from updating rows/columns that they don't have permissions for.
... View more
12-02-2016
07:56 AM
>> If we use different permissions (like create-database), which resource will we define it on ? We can't define it on the table level. There is no restriction on the permissions that can be specified on a specific resource. Following policies can be used for your usecases. Please review. 1. To permit creation of databases named like testdb*:
resource: { database=testdb*; schema=*; table=* }; permission: [ create-database ] 2. To permit creation of schemas under database db1:
resource: { database=db1; schema=*; table=* }; permission: [ create-schema ] 3. To permit creation of tables under database=db1; schema=schema1:
resource: { database=db1; schema=schema1; table=* }; permission: [ create-table ]
... View more
- « Previous
-
- 1
- 2
- Next »