Member since
07-31-2013
1924
Posts
462
Kudos Received
311
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1969 | 07-09-2019 12:53 AM | |
| 11879 | 06-23-2019 08:37 PM | |
| 9146 | 06-18-2019 11:28 PM | |
| 10133 | 05-23-2019 08:46 PM | |
| 4579 | 05-20-2019 01:14 AM |
08-25-2015
11:42 PM
You are unfortunately impacted by a limitation described at: https://issues.apache.org/jira/browse/HDFS-5796 You will need to use a custom filter class to avoid this (i.e. to auth browsers separately from regular WebHDFS auth access, probably by checking UserAgent strings/etc.), by implementing a sub-class of https://github.com/cloudera/hadoop-common/blob/cdh5.4.4-release/hadoop-common-project/hadoop-auth/src/main/java/org/apache/hadoop/security/authentication/server/AltKerberosAuthenticationHandler.java Note that you can instead also opt to use the Hue File Browser, which is also more feature-rich in comparison.
... View more
08-25-2015
10:50 PM
You can attempt to increase your jute.maxbuffer Java System Property on the ZK servers to a value higher than 2-3 GB (in bytes) to overcome this. It appears a very large record was somehow placed into your ZK by an application, which appears to have then caused this issue.
... View more
08-24-2015
10:33 PM
Thanks for taking the time to update the case. If it did resolve your issue, please do mention the steps taken and mark the thread as resolved, so it helps others with similar errors when they land here!
... View more
08-23-2015
06:27 AM
What version of HBase libraries is your application referencing? It seems like an old one, not matching the cluster ones.
... View more
08-15-2015
12:25 AM
1 Kudo
How exactly are you invoking your Java application? Is /etc/hbase/conf/ directory on the classpath? If the failure you're quoting is from within the Reducer task log, then ensure you don't do a "new Configuration()"/"HBaseConfiguration.create()" anywhere inside the Reducer class, but instead reuse context.getConfiguration() to obtain the standard job configuration which will carry the ZK properties.
... View more
08-11-2015
06:17 AM
Check http://stackoverflow.com/a/14540272 perhaps, which includes an example.
... View more
08-11-2015
05:16 AM
It just means that when the split offset (starting point) is 0, i.e. start of file, we read the first line. Otherwise (non-zero offsets/starting point/mid-points of file) we arbitrarily skip the first line, because we know that the previous split's reader reads always an extra line at the end. Does this help?
... View more
08-11-2015
04:29 AM
What part of it was not clear specifically? Could you quote, so it can be explained further?
... View more
08-11-2015
02:38 AM
Please read http://wiki.apache.org/hadoop/HadoopMapReduce
... View more
08-10-2015
07:15 PM
Do the binaries change job-to-job, or are they static? If they do not change, you could benefit from the new feature of proper-shared resource caches: https://issues.apache.org/jira/browse/YARN-1492 Otherwise, compression is your answer. The APIs allow you to add "archives" (zips) which will automatically be unwrapped at the attempt's root, when localising. Have you also profiled which part is worrying to you more? Is it the initial upload-to-HDFS period, or the localising (per NM) period instead?
... View more