IndexedTable delete fails when used in conjunction with RowLock()
-----------------------------------------------------------------

                 Key: HBASE-1869
                 URL: https://issues.apache.org/jira/browse/HBASE-1869
             Project: Hadoop HBase
          Issue Type: Bug
          Components: contrib
    Affects Versions: 0.20.0
         Environment: Ubunto 9.04 Desktop under VmWare Fusion, Java 1.6.0_16
            Reporter: Keith Thomas


Created the following test in TestIndexedTable,

  public void testLockedRowDelete() throws IOException {
    writeInitalRows();
    // Delete the first row;
    byte[] row = PerformanceEvaluation.format(0);
    RowLock lock = table.lockRow(row);
    table.delete(new Delete(row, HConstants.LATEST_TIMESTAMP, lock));
    table.unlockRow(lock);    

    assertRowDeleted(NUM_ROWS - 1);  
  }
}

which fails and throws the following exception,

java.io.IOException: java.io.IOException: Invalid row lock
        at 
org.apache.hadoop.hbase.regionserver.HRegion.getLock(HRegion.java:1621)
        at 
org.apache.hadoop.hbase.regionserver.HRegion.delete(HRegion.java:1094)
        at 
org.apache.hadoop.hbase.regionserver.tableindexed.IndexedRegion.delete(IndexedRegion.java:269)
        at 
org.apache.hadoop.hbase.regionserver.HRegionServer.delete(HRegionServer.java:2014)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.hadoop.hbase.ipc.HBaseRPC$Server.call(HBaseRPC.java:648)
        at 
org.apache.hadoop.hbase.ipc.HBaseServer$Handler.run(HBaseServer.java:915)

Patch coded, jus going through final testing and packaging. Will attach shortly.

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

Reply via email to