Todd Lipcon has submitted this change and it was merged. Change subject: kserver: introduce KuduServer class ......................................................................
kserver: introduce KuduServer class The kserver module (with the KuduServer class) is an abstraction that sits between ServerBase and Master/TabletServer. The idea is for it to encapsulate all Kudu-specific knowledge that should be shared by Masters and Tablet Servers without polluting ServerBase, which has no Kudu-specific knowledge and could be reused by any C++ application. This patch introduces the new class (just lifecycle methods for now) and wires it into Master/TabletServer. There's no new functionality. Change-Id: I41ffd09ce46d9d744aa25343cec77b7a33b88563 Reviewed-on: http://gerrit.cloudera.org:8080/7239 Reviewed-by: Todd Lipcon <[email protected]> Tested-by: Kudu Jenkins --- M CMakeLists.txt A src/kudu/kserver/CMakeLists.txt A src/kudu/kserver/kserver.cc A src/kudu/kserver/kserver.h M src/kudu/master/CMakeLists.txt M src/kudu/master/master.cc M src/kudu/master/master.h M src/kudu/server/server_base.h M src/kudu/tserver/CMakeLists.txt M src/kudu/tserver/tablet_server.cc M src/kudu/tserver/tablet_server.h 11 files changed, 192 insertions(+), 43 deletions(-) Approvals: Todd Lipcon: Looks good to me, approved Kudu Jenkins: Verified -- To view, visit http://gerrit.cloudera.org:8080/7239 To unsubscribe, visit http://gerrit.cloudera.org:8080/settings Gerrit-MessageType: merged Gerrit-Change-Id: I41ffd09ce46d9d744aa25343cec77b7a33b88563 Gerrit-PatchSet: 3 Gerrit-Project: kudu Gerrit-Branch: master Gerrit-Owner: Adar Dembo <[email protected]> Gerrit-Reviewer: Adar Dembo <[email protected]> Gerrit-Reviewer: David Ribeiro Alves <[email protected]> Gerrit-Reviewer: Kudu Jenkins Gerrit-Reviewer: Tidy Bot Gerrit-Reviewer: Todd Lipcon <[email protected]>
