NOTICE: hbase-2.1.1 and 2.0.3 have a memory leak

2018-12-05 Thread Stack
We are working on replacements. Only 2.1.1 and 2.0.3 are effected. Earlier releases are fine. Please avoid downloading these releases in the meantime. Yours, S P.S. For detail, see HBASE-21551

Re: HBase Get Encounters java.lang.IndexOutOfBoundsException

2018-12-05 Thread William Shen
In addition, when running hbase hfile -f -p, kv pairs were printed until the program hit the following exception: Exception in thread "main" java.lang.RuntimeException: Unknown code 65 at org.apache.hadoop.hbase.KeyValue$Type.codeToType(KeyValue.java:259) at

Re: HBase Get Encounters java.lang.IndexOutOfBoundsException

2018-12-05 Thread William Shen
Thank you Stack. I was able to isolate the specific Hfile causing the exception. Do you mind teaching me how to play with the file standalone? I am not sure if I know how to do that. Thanks! On Wed, Dec 5, 2018 at 1:04 PM Stack wrote: > Looks like bug in FastDiffDeltaEncoder triggered by

Re: HBase Get Encounters java.lang.IndexOutOfBoundsException

2018-12-05 Thread Stack
Looks like bug in FastDiffDeltaEncoder triggered by whatever the current form of the target file. Can you figure which file it is (going by the Get coordinates?). I suppose the compactor is running into the same problem (was thinking a major compaction might get you over this hump). You could make

HBase Get Encounters java.lang.IndexOutOfBoundsException

2018-12-05 Thread William Shen
Hi there, We've recently encountered issue retrieving data from our HBase cluster, and have not had much luck troubleshooting the issue. We narrowed down our issue to a single GET, which appears to be caused by FastDiffDeltaEncoder.java running into java.lang.IndexOutOfBoundsException. Has anyone