Member since
06-19-2014
78
Posts
2
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4624 | 04-05-2016 12:07 AM |
03-06-2019
01:58 AM
Hello @prabhat10, For understanding scenario write, as per your description following is the assumption: Assuming, node1 host = cm1 haproxy and hs2 are on same host If above assumptions are right and assuming your environment have not option but to keep haproxy and hs2 on different hosts then change the thrift ports. Hope that helps.
... View more
11-04-2018
11:49 PM
I want to ask where to find the document of sentry API .
I try to read the source code of sentry,however ,I can’t get the point .
I don’t know how to call the apache sentry API for priviledge in my app.
who can help me?
... View more
07-18-2016
08:09 AM
Thanks @Romainr for reply. Is there any other way to fix apart from changing the db..?
... View more
06-30-2015
09:19 AM
I have options to add another directory but I don't know if that will skip default setting or still I will need to change default.
... View more
05-13-2015
09:12 AM
I think that the whole point of Sentry, Hive owns the data and guarantees fine grain permissions to the user submitting jobs. As Hive needs to own the data, the jobs are submitted as Hive.
... View more
05-11-2015
08:44 PM
If you cannot get the admins to provide your app with a near-infinite ticket lifetime, you need to instead loop the login process via a daemon thread, such as via this thread snippet as an example: private void runLoginAndRenewalThread(final Configuration conf) throws IOException { // Do a blocking login first SecurityUtil.login(conf, KEYTAB_CONF, KEYTAB_USER); // Spawn the relogin thread next Thread reloginThread = new Thread() { @Override public void run() { while (true) { try { SecurityUtil.login(conf, KEYTAB_CONF, KEYTAB_USER); Thread.sleep(ELEVEN_MINUTES); } catch (IOException e) { e.printStackTrace(); interrupt(); } catch (InterruptedException e) { e.printStackTrace(); interrupt(); } } } }; reloginThread.setDaemon(true); reloginThread.start(); }
... View more
11-06-2014
11:17 AM
Impala is part of CDH 5. So to upgrade impala, you upgrade all of CDH. You don't upgrade CDH "first". That's the only step. Be sure to follow the Cloudera Manager documentation for upgrades, as CDH5.2 has special upgrade steps. First upgrade Cloudera Manager: http://www.cloudera.com/content/cloudera/en/documentation/core/latest/topics/cm_ag_upgrading_cm.html Then upgrade CDH: http://www.cloudera.com/content/cloudera/en/documentation/core/latest/topics/cm_mc_upgrade_to_cdh52.html
... View more
09-20-2014
11:14 PM
Hi Harsh, Should we do same for Oozie node also for KT renewal role?
... View more
06-27-2014
04:34 AM
I had deployed JCE. It does not work.The cluster has 4 nodes,hosts: 172.20.0.11 namenode11.yeahmobi.com namenode11 172.20.0.12 datanode12.yeahmobi.com datanode12 172.20.0.13 datanode13.yeahmobi.com datanode13 172.20.0.14 datanode14.yeahmobi.com datanode14 I guess,maybe I missed some configurations. I had Enable Authentication for HTTP Web-Consoles,if want to access webUI(eg:namenode:50070) from a windows client,what should I do? Should I do Integrating Hadoop Security with Alternate Authentication? http://www.cloudera.com/content/cloudera-content/cloudera-docs/CDH5/latest/CDH5-Security-Guide/cdh5sg_hadoop_security_alternate_authen_integrate.html
... View more