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:
parent
a536ff88b9
commit
5cc3e796fd
@ -13,6 +13,7 @@ Release 0.19.0 - Unreleased
|
|||||||
HBASE-994 IPC interfaces with different versions can cause problems
|
HBASE-994 IPC interfaces with different versions can cause problems
|
||||||
HBASE-1028 If key does not exist, return null in getRow rather than an
|
HBASE-1028 If key does not exist, return null in getRow rather than an
|
||||||
empty RowResult
|
empty RowResult
|
||||||
|
HBASE-1134 OOME in HMaster when HBaseRPC is older than 0.19
|
||||||
|
|
||||||
BUG FIXES
|
BUG FIXES
|
||||||
HBASE-891 HRS.validateValuesLength throws IOE, gets caught in the retries
|
HBASE-891 HRS.validateValuesLength throws IOE, gets caught in the retries
|
||||||
|
@ -75,7 +75,8 @@ public abstract class HBaseServer {
|
|||||||
public static final ByteBuffer HEADER = ByteBuffer.wrap("hrpc".getBytes());
|
public static final ByteBuffer HEADER = ByteBuffer.wrap("hrpc".getBytes());
|
||||||
|
|
||||||
// 1 : Introduce ping and server does not throw away RPCs
|
// 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.
|
* How many calls/handler are allowed in the queue.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user