Use 5s etcd_report_interval by default

nbd-vmsplice
Vitaliy Filippov 2021-11-09 01:27:12 +03:00
parent a1488f7217
commit 4d43774cbb
4 changed files with 4 additions and 4 deletions

View File

@ -83,7 +83,7 @@ const etcd_tree = {
osd_ping_timeout: 5, // seconds. min: 1
up_wait_retry_interval: 500, // ms. min: 50
// osd
etcd_report_interval: 30, // min: 10
etcd_report_interval: 5,
run_primary: true,
bind_address: "0.0.0.0",
bind_port: 0,

View File

@ -102,7 +102,7 @@ void cli_tool_t::help()
" Remove <from> or all layers between <from> and <to> (<to> must be a child of <from>),\n"
" rebasing all their children accordingly. --writers-stopped allows merging to be a bit\n"
" more effective in case of a single 'slim' read-write child and 'fat' removed parent:\n"
" the child is merged into parent in that case and parent is renamed to child.\n"
" the child is merged into parent and parent is renamed to child in that case.\n"
" In other cases parent layers are always merged into children.\n"
"\n"
"%s flatten [OPTIONS] <layer>\n"

View File

@ -110,7 +110,7 @@ void osd_t::parse_config(const json11::Json & config)
log_level = config["log_level"].uint64_value();
etcd_report_interval = config["etcd_report_interval"].uint64_value();
if (etcd_report_interval <= 0)
etcd_report_interval = 30;
etcd_report_interval = 5;
readonly = config["readonly"] == "true" || config["readonly"] == "1" || config["readonly"] == "yes";
run_primary = config["run_primary"] != "false" && config["run_primary"] != "0" && config["run_primary"] != "no";
no_rebalance = config["no_rebalance"] == "true" || config["no_rebalance"] == "1" || config["no_rebalance"] == "yes";

View File

@ -94,7 +94,7 @@ class osd_t
// config
json11::Json::object config;
int etcd_report_interval = 30;
int etcd_report_interval = 5;
bool readonly = false;
osd_num_t osd_num = 1; // OSD numbers start with 1