You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2018/08/01 18:03:33 UTC

hbase git commit: HBASE-20794 add INFO level log to createTable operation

Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 7bb867788 -> a6d557869


HBASE-20794 add INFO level log to createTable operation


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/a6d55786
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a6d55786
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a6d55786

Branch: refs/heads/branch-2.0
Commit: a6d557869f03437d62eac816393f646e7187b118
Parents: 7bb8677
Author: Xu Cang <xc...@salesforce.com>
Authored: Mon Jul 23 14:18:32 2018 -0700
Committer: Michael Stack <st...@apache.org>
Committed: Wed Aug 1 11:02:44 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hbase/master/MasterRpcServices.java     | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/a6d55786/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java
index 6acfee5..780ee81 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterRpcServices.java
@@ -590,6 +590,8 @@ public class MasterRpcServices extends RSRpcServices
     try {
       long procId =
           master.createTable(tableDescriptor, splitKeys, req.getNonceGroup(), req.getNonce());
+      LOG.info(master.getClientIdAuditPrefix() + " procedure request for creating table: " +
+              req.getTableSchema().getTableName() + " procId is: " + procId);
       return CreateTableResponse.newBuilder().setProcId(procId).build();
     } catch (IOException ioe) {
       throw new ServiceException(ioe);