Repository: incubator-impala Updated Branches: refs/heads/master bf29ec53c -> 80f0c5ae8
Reduce log spew from rpcz_store.cc The sampled RPC call statement has been filing the log. Let's dial down its log level. This particularly impacts Impala as its default log level is 1. If it turns out that this log statement is useful for Kudu deployment, we can consider doing this change in Impala only. Testing done: ctest -R rpc-test; Built debug and release builds; Change-Id: I8efe68be0ae7f9ab05937d5c81fb53a709a881f1 Reviewed-on: http://gerrit.cloudera.org:8080/8273 Reviewed-by: Todd Lipcon <[email protected]> Tested-by: Kudu Jenkins Reviewed-on: http://gerrit.cloudera.org:8080/8285 Reviewed-by: Dan Hecht <[email protected]> Tested-by: Impala Public Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/80f0c5ae Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/80f0c5ae Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/80f0c5ae Branch: refs/heads/master Commit: 80f0c5ae820efeb9e3714cf844e856b264ed291d Parents: bf29ec5 Author: Michael Ho <[email protected]> Authored: Thu Oct 12 16:36:27 2017 -0700 Committer: Impala Public Jenkins <[email protected]> Committed: Tue Oct 17 03:59:20 2017 +0000 ---------------------------------------------------------------------- be/src/kudu/rpc/rpcz_store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/80f0c5ae/be/src/kudu/rpc/rpcz_store.cc ---------------------------------------------------------------------- diff --git a/be/src/kudu/rpc/rpcz_store.cc b/be/src/kudu/rpc/rpcz_store.cc index 61cc87d..b1a0591 100644 --- a/be/src/kudu/rpc/rpcz_store.cc +++ b/be/src/kudu/rpc/rpcz_store.cc @@ -149,7 +149,7 @@ void MethodSampler::SampleCall(InboundCall* call) { std::swap(bucket->sample, new_sample); bucket->last_sample_time.Store(now); } - VLOG(1) << "Sampled call " << call->ToString(); + VLOG(2) << "Sampled call " << call->ToString(); } }
