Member since
07-31-2013
1924
Posts
462
Kudos Received
311
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1635 | 07-09-2019 12:53 AM | |
10118 | 06-23-2019 08:37 PM | |
8310 | 06-18-2019 11:28 PM | |
9058 | 05-23-2019 08:46 PM | |
3682 | 05-20-2019 01:14 AM |
05-27-2015
09:40 PM
Thanks Harsh, appreciate it.
... View more
05-19-2015
03:19 AM
1 Kudo
You do not need a SecondaryNameNode in HA. Please delete the role to resolve your issue. You can read the HA Architecture at http://archive.cloudera.com/cdh5/cdh/5/hadoop/hadoop-project-dist/hadoop-hdfs/HDFSHighAvailabilityWithQJM.html#Hardware_resources to further understand how HA works.
... 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
05-06-2015
06:52 AM
Ha, looks like Camus runs local job runner, that is the problem... Need to inform camus that we have yarn here.
... View more
05-04-2015
06:28 AM
The block mapping of block ID <=> DN location is not stored in the fsimage of HDFS, it is just kept in the running NameNode memory. Since the primary work of the block report is to report statuses of availability of each block replica on the DNs, and the checkpoint's work is to persist the namespace and namespace-associative states (such as snapshots, etc.), the checkpoint can be an operation done without problems in parallel as their two information structures will not conflict with one another.
... View more
04-27-2015
11:13 AM
1 Kudo
This is JIRA HUE-2551
The two options currently available are
- kill the coordinator and create a new one
- run the workflow manually after the change.
... View more
04-08-2015
06:10 AM
Thanks! Everything clear now!
... View more
04-02-2015
12:40 AM
Harsh, Sorry to asking you again on this. I am really in a odd situation. lets say I have 100 scripts which will fire from one node via oozie. Then how it will re-direct to other node (load balancing), I have heard about fair scheduler but need your help to undertsand it completely. Will fair scheduler will send the data across all nodes. Please help
... View more
03-31-2015
06:11 AM
Yes, it does. I had already seen that link, but I wanted to make sure that was the way to go as other alternatives are not available. Thanks!
... View more