aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@oath.com>2018-06-20 15:23:27 +0200
committerGitHub <noreply@github.com>2018-06-20 15:23:27 +0200
commit61fba13ecf031954be6cc8d84f763299ae6581d8 (patch)
tree0535fb47cac88c704a838b8b10f64859b9a147b9
parent97ee583a295562b2e927c2d49795397657aa0f38 (diff)
parente632fe6366e1eb15d04ff89f4c4b8b1b94c197ee (diff)
Merge pull request #6247 from vespa-engine/vekterli/also-log-config-changes-for-bouncer-component
Log config changes from Bouncer component
-rw-r--r--storage/src/vespa/storage/storageserver/CMakeLists.txt1
-rw-r--r--storage/src/vespa/storage/storageserver/bouncer.cpp2
-rw-r--r--storage/src/vespa/storage/storageserver/config_logging.cpp22
-rw-r--r--storage/src/vespa/storage/storageserver/config_logging.h11
-rw-r--r--storage/src/vespa/storage/storageserver/storagenode.cpp14
5 files changed, 37 insertions, 13 deletions
diff --git a/storage/src/vespa/storage/storageserver/CMakeLists.txt b/storage/src/vespa/storage/storageserver/CMakeLists.txt
index 8c9add78fd4..2df3d3a9606 100644
--- a/storage/src/vespa/storage/storageserver/CMakeLists.txt
+++ b/storage/src/vespa/storage/storageserver/CMakeLists.txt
@@ -8,6 +8,7 @@ vespa_add_library(storage_storageserver
communicationmanager.cpp
communicationmanagermetrics.cpp
configurable_bucket_resolver.cpp
+ config_logging.cpp
distributornode.cpp
distributornodecontext.cpp
documentapiconverter.cpp
diff --git a/storage/src/vespa/storage/storageserver/bouncer.cpp b/storage/src/vespa/storage/storageserver/bouncer.cpp
index 2f8838d14eb..8e882fa867e 100644
--- a/storage/src/vespa/storage/storageserver/bouncer.cpp
+++ b/storage/src/vespa/storage/storageserver/bouncer.cpp
@@ -2,6 +2,7 @@
#include "bouncer.h"
#include "bouncer_metrics.h"
+#include "config_logging.h"
#include <vespa/vdslib/state/cluster_state_bundle.h>
#include <vespa/storageapi/message/state.h>
#include <vespa/storageapi/message/persistence.h>
@@ -69,6 +70,7 @@ Bouncer::onClose()
void
Bouncer::configure(std::unique_ptr<vespa::config::content::core::StorBouncerConfig> config)
{
+ log_config_received(*config);
validateConfig(*config);
vespalib::LockGuard lock(_lock);
_config = std::move(config);
diff --git a/storage/src/vespa/storage/storageserver/config_logging.cpp b/storage/src/vespa/storage/storageserver/config_logging.cpp
new file mode 100644
index 00000000000..0996636fff5
--- /dev/null
+++ b/storage/src/vespa/storage/storageserver/config_logging.cpp
@@ -0,0 +1,22 @@
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include "config_logging.h"
+#include <vespa/config/configgen/configinstance.h>
+#include <vespa/config/print/configdatabuffer.h>
+#include <vespa/vespalib/data/slime/slime.h>
+
+#include <vespa/log/log.h>
+
+LOG_SETUP(".storageserver.config_logging");
+
+namespace storage {
+
+void log_config_received(const config::ConfigInstance& cfg) {
+ if (LOG_WOULD_LOG(debug)) {
+ config::ConfigDataBuffer buf;
+ cfg.serialize(buf);
+ LOG(debug, "Received new %s config: %s", cfg.defName().c_str(), buf.slimeObject().toString().c_str());
+ }
+}
+
+}
diff --git a/storage/src/vespa/storage/storageserver/config_logging.h b/storage/src/vespa/storage/storageserver/config_logging.h
new file mode 100644
index 00000000000..94ef27a784c
--- /dev/null
+++ b/storage/src/vespa/storage/storageserver/config_logging.h
@@ -0,0 +1,11 @@
+// Copyright 2018 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#pragma once
+
+namespace config { class ConfigInstance; }
+
+namespace storage {
+
+void log_config_received(const config::ConfigInstance& cfg);
+
+}
diff --git a/storage/src/vespa/storage/storageserver/storagenode.cpp b/storage/src/vespa/storage/storageserver/storagenode.cpp
index 0602d14e088..ed33f3846c1 100644
--- a/storage/src/vespa/storage/storageserver/storagenode.cpp
+++ b/storage/src/vespa/storage/storageserver/storagenode.cpp
@@ -1,5 +1,6 @@
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+#include "config_logging.h"
#include "storagenode.h"
#include "communicationmanager.h"
#include "statemanager.h"
@@ -16,7 +17,6 @@
#include <fcntl.h>
#include <vespa/log/log.h>
-#include <vespa/config/print/configdatabuffer.h>
LOG_SETUP(".node.server");
@@ -468,18 +468,6 @@ StorageNode::shutdown()
LOG(debug, "Done shutting down node");
}
-namespace {
-
-void log_config_received(const config::ConfigInstance& cfg) {
- if (LOG_WOULD_LOG(debug)) {
- config::ConfigDataBuffer buf;
- cfg.serialize(buf);
- LOG(debug, "Received new %s config: %s", cfg.defName().c_str(), buf.getEncodedString().c_str());
- }
-}
-
-}
-
void StorageNode::configure(std::unique_ptr<StorServerConfig> config) {
log_config_received(*config);
// When we get config, we try to grab the config lock to ensure noone