blob: 17989bef0d9e4e435f33f776adc15ca68dc4113e [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include <iostream>
#include <string>
#include <gflags/gflags.h>
#include <gflags/gflags_declare.h>
#include <glog/logging.h>
#include "kudu/gutil/macros.h"
#include "kudu/gutil/strings/substitute.h"
#include "kudu/tserver/tablet_server.h"
#include "kudu/tserver/tablet_server_options.h"
#include "kudu/util/fault_injection.h"
#include "kudu/util/flag_tags.h"
#include "kudu/util/flags.h"
#include "kudu/util/init.h"
#include "kudu/util/logging.h"
#include "kudu/util/monotime.h"
#include "kudu/util/status.h"
#include "kudu/util/version_info.h"
using kudu::tserver::TabletServer;
DECLARE_int32(rpc_num_service_threads);
DECLARE_int32(webserver_port);
DECLARE_string(rpc_bind_addresses);
DEFINE_double(fault_before_start, 0.0,
"Fake fault flag that always causes a crash on startup. "
"Used to test the test infrastructure. Should never be set outside of tests.");
TAG_FLAG(fault_before_start, hidden);
TAG_FLAG(fault_before_start, unsafe);
namespace kudu {
namespace tserver {
static int TabletServerMain(int argc, char** argv) {
InitKuduOrDie();
// Reset some default values before parsing gflags.
FLAGS_rpc_bind_addresses = strings::Substitute("0.0.0.0:$0",
TabletServer::kDefaultPort);
FLAGS_rpc_num_service_threads = 20;
FLAGS_webserver_port = TabletServer::kDefaultWebPort;
// Setting the default value of the 'force_block_cache_capacity' flag to
// 'false' makes the corresponding group validator enforce proper settings
// for the memory limit and the cfile cache capacity.
CHECK_NE("", SetCommandLineOptionWithMode("force_block_cache_capacity",
"false", gflags::SET_FLAGS_DEFAULT));
GFlagsMap default_flags = GetFlagsMap();
ParseCommandLineFlags(&argc, &argv, true);
if (argc != 1) {
std::cerr << "usage: " << argv[0] << std::endl;
return 1;
}
std::string nondefault_flags = GetNonDefaultFlags(default_flags);
InitGoogleLoggingSafe(argv[0]);
LOG(INFO) << "Tablet server non-default flags:\n"
<< nondefault_flags << '\n'
<< "Tablet server version:\n"
<< VersionInfo::GetAllVersionInfo();
TabletServerOptions opts;
TabletServer server(opts);
LOG(INFO) << "Initializing tablet server...";
CHECK_OK(server.Init());
MAYBE_FAULT(FLAGS_fault_before_start);
LOG(INFO) << "Starting tablet server...";
CHECK_OK(server.Start());
LOG(INFO) << "Tablet server successfully started.";
while (true) {
SleepFor(MonoDelta::FromSeconds(60));
}
return 0;
}
} // namespace tserver
} // namespace kudu
int main(int argc, char** argv) {
return kudu::tserver::TabletServerMain(argc, argv);
}