HBASE-1134 OOME in HMaster when HBaseRPC is older than 0.19

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@735381 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jean-Daniel Cryans 2009-01-18 03:18:11 +00:00
parent a536ff88b9
commit 5cc3e796fd
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ Release 0.19.0 - Unreleased
HBASE-994 IPC interfaces with different versions can cause problems
HBASE-1028 If key does not exist, return null in getRow rather than an
empty RowResult
HBASE-1134 OOME in HMaster when HBaseRPC is older than 0.19
BUG FIXES
HBASE-891 HRS.validateValuesLength throws IOE, gets caught in the retries

View File

@ -75,7 +75,8 @@ public abstract class HBaseServer {
public static final ByteBuffer HEADER = ByteBuffer.wrap("hrpc".getBytes());
// 1 : Introduce ping and server does not throw away RPCs
public static final byte CURRENT_VERSION = 2;
// 3 : RPC was refactored in 0.19
public static final byte CURRENT_VERSION = 3;
/**
* How many calls/handler are allowed in the queue.