You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Bryan Duxbury (JIRA)" <ji...@apache.org> on 2008/02/29 22:00:56 UTC

[jira] Resolved: (HBASE-9) Mysterious ArrayOutOfBoundsException in HTable.commit

     [ https://issues.apache.org/jira/browse/HBASE-9?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bryan Duxbury resolved HBASE-9.
-------------------------------

    Resolution: Cannot Reproduce

This problem hasn't been mentioned since originally reported. Resolving as Cannot Reproduce. If it ever shows up again, we can reopen.

> Mysterious ArrayOutOfBoundsException in HTable.commit
> -----------------------------------------------------
>
>                 Key: HBASE-9
>                 URL: https://issues.apache.org/jira/browse/HBASE-9
>             Project: Hadoop HBase
>          Issue Type: Bug
>          Components: client
>            Reporter: Michael Bieniosek
>            Priority: Trivial
>
> I got this exception using a post-0.15.0 hbase trunk:
> Caused by: java.io.IOException: java.io.IOException: java.lang.ArrayIndexOutOfBoundsException
> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
> 	at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
> 	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
> 	at java.lang.reflect.Constructor.newInstance(Unknown Source)
> 	at org.apache.hadoop.hbase.RemoteExceptionHandler.decodeRemoteException(RemoteExceptionHandler.java:82)
> 	at org.apache.hadoop.hbase.HTable.commit(HTable.java:904)
> 	at org.apache.hadoop.hbase.HTable.commit(HTable.java:875)
> 	at xxx.PutHbase$HbaseUploader.writeHbaseNoRetry(PutHbase.java:107)
> Where writeHbaseNoRetry looks like:
>     private void writeHbaseNoRetry(HTable table, String column, String row, File contents) throws IOException {
>       long lockid = table.startUpdate(new Text(row));
>       try {
>         table.put(lockid, new Text(column), FileUtil.readFile(contents));
>         table.commit(lockid);
>       } finally {
>         table.abort(lockid);
>       }
>     }
> I found this in my error logs -- it is rare, and I am not sure how to reproduce it.  Contents could be 1kb-100kb long.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.