HBASE-3847 Turn off DEBUG logging of RPCs in WriteableRPCEngine on TRUNK
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1098861 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
df267ce6e9
commit
7e6f56200e
|
@ -95,6 +95,7 @@ Release 0.91.0 - Unreleased
|
||||||
HBASE-3843 splitLogWorker starts too early (Prakash Khemani)
|
HBASE-3843 splitLogWorker starts too early (Prakash Khemani)
|
||||||
HBASE-3838 RegionCoprocesorHost.preWALRestore throws npe in case there is
|
HBASE-3838 RegionCoprocesorHost.preWALRestore throws npe in case there is
|
||||||
no RegionObserver registered (Himanshu Vashishtha)
|
no RegionObserver registered (Himanshu Vashishtha)
|
||||||
|
HBASE-3847 Turn off DEBUG logging of RPCs in WriteableRPCEngine on TRUNK
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)
|
||||||
|
|
|
@ -37,7 +37,9 @@ import java.lang.reflect.Method;
|
||||||
* {@link org.apache.hadoop.hbase.client.ServerCallable} instance).
|
* {@link org.apache.hadoop.hbase.client.ServerCallable} instance).
|
||||||
*/
|
*/
|
||||||
public class ExecRPCInvoker implements InvocationHandler {
|
public class ExecRPCInvoker implements InvocationHandler {
|
||||||
private static final Log LOG = LogFactory.getLog(ExecRPCInvoker.class);
|
// LOG is NOT in hbase subpackage intentionally so that the default HBase
|
||||||
|
// DEBUG log level does NOT emit RPC-level logging.
|
||||||
|
private static final Log LOG = LogFactory.getLog("org.apache.hadoop.ipc.ExecRPCInvoker");
|
||||||
|
|
||||||
private Configuration conf;
|
private Configuration conf;
|
||||||
private final HConnection connection;
|
private final HConnection connection;
|
||||||
|
|
|
@ -44,7 +44,9 @@ import org.apache.hadoop.conf.*;
|
||||||
|
|
||||||
/** An RpcEngine implementation for Writable data. */
|
/** An RpcEngine implementation for Writable data. */
|
||||||
class WritableRpcEngine implements RpcEngine {
|
class WritableRpcEngine implements RpcEngine {
|
||||||
private static final Log LOG = LogFactory.getLog(HBaseRPC.class);
|
// LOG is NOT in hbase subpackage intentionally so that the default HBase
|
||||||
|
// DEBUG log level does NOT emit RPC-level logging.
|
||||||
|
private static final Log LOG = LogFactory.getLog("org.apache.hadoop.ipc.RPCEngine");
|
||||||
|
|
||||||
/* Cache a client using its socket factory as the hash key */
|
/* Cache a client using its socket factory as the hash key */
|
||||||
static private class ClientCache {
|
static private class ClientCache {
|
||||||
|
|
Loading…
Reference in New Issue