Implement loading PGs from Consul (in theory)
This commit is contained in:
+223
-26
@@ -1,9 +1,13 @@
|
||||
#include "osd.h"
|
||||
#include "osd_http.h"
|
||||
#include "base64.h"
|
||||
|
||||
json11::Json osd_t::get_status()
|
||||
{
|
||||
json11::Json::object st;
|
||||
timespec ts;
|
||||
clock_gettime(CLOCK_REALTIME, &ts);
|
||||
st["time"] = std::to_string(ts.tv_sec)+"."+std::to_string(ts.tv_nsec/1000000);
|
||||
st["state"] = "up";
|
||||
if (bind_address != "0.0.0.0")
|
||||
st["addresses"] = { bind_address };
|
||||
@@ -20,25 +24,6 @@ json11::Json osd_t::get_status()
|
||||
st["size"] = bs->get_block_count() * bs->get_block_size();
|
||||
st["free"] = bs->get_free_block_count() * bs->get_block_size();
|
||||
}
|
||||
json11::Json::object pg_status;
|
||||
for (auto & p: pgs)
|
||||
{
|
||||
auto & pg = p.second;
|
||||
json11::Json::object pg_st;
|
||||
json11::Json::array pg_state;
|
||||
for (int i = 0; i < pg_state_bit_count; i++)
|
||||
if (pg.state & pg_state_bits[i])
|
||||
pg_state.push_back(pg_state_names[i]);
|
||||
pg_st["state"] = pg_state;
|
||||
pg_st["object_count"] = pg.total_count;
|
||||
pg_st["clean_count"] = pg.clean_count;
|
||||
pg_st["misplaced_count"] = pg.misplaced_objects.size();
|
||||
pg_st["degraded_count"] = pg.degraded_objects.size();
|
||||
pg_st["incomplete_count"] = pg.incomplete_objects.size();
|
||||
pg_st["write_osd_set"] = pg.cur_set;
|
||||
pg_status[std::to_string(pg.pg_num)] = pg_st;
|
||||
}
|
||||
st["pgs"] = pg_status;
|
||||
json11::Json::object op_stats, subop_stats;
|
||||
for (int i = 0; i <= OSD_OP_MAX; i++)
|
||||
{
|
||||
@@ -59,18 +44,37 @@ json11::Json osd_t::get_status()
|
||||
return st;
|
||||
}
|
||||
|
||||
/*
|
||||
json11::Json::object pg_status;
|
||||
for (auto & p: pgs)
|
||||
{
|
||||
auto & pg = p.second;
|
||||
json11::Json::object pg_st;
|
||||
json11::Json::array pg_state;
|
||||
for (int i = 0; i < pg_state_bit_count; i++)
|
||||
if (pg.state & pg_state_bits[i])
|
||||
pg_state.push_back(pg_state_names[i]);
|
||||
pg_st["state"] = pg_state;
|
||||
pg_st["object_count"] = pg.total_count;
|
||||
pg_st["clean_count"] = pg.clean_count;
|
||||
pg_st["misplaced_count"] = pg.misplaced_objects.size();
|
||||
pg_st["degraded_count"] = pg.degraded_objects.size();
|
||||
pg_st["incomplete_count"] = pg.incomplete_objects.size();
|
||||
pg_st["write_osd_set"] = pg.cur_set;
|
||||
pg_status[std::to_string(pg.pg_num)] = pg_st;
|
||||
}
|
||||
st["pgs"] = pg_status;
|
||||
*/
|
||||
|
||||
void osd_t::report_status()
|
||||
{
|
||||
if (consul_host == "")
|
||||
{
|
||||
consul_host = consul_address;
|
||||
extract_port(consul_host);
|
||||
}
|
||||
std::string st = get_status().dump();
|
||||
std::string req = "PUT /v1/kv/"+consul_prefix+"/osd/"+std::to_string(osd_num)+" HTTP/1.1\r\n"+
|
||||
// (!) Keys end with / to allow "select /osd/state/123/ by prefix"
|
||||
// because Consul transactions fail if you try to read non-existing keys
|
||||
std::string req = "PUT /v1/kv/"+consul_prefix+"/osd/state/"+std::to_string(osd_num)+"/ HTTP/1.1\r\n"+
|
||||
"Host: "+consul_host+"\r\n"+
|
||||
"Content-Length: "+std::to_string(st.size())+"\r\n"+
|
||||
"Connection: close\r\n"
|
||||
"Connection: close\r\n"+
|
||||
"\r\n"+st;
|
||||
http_request(consul_address, req, [this](int err, std::string res)
|
||||
{
|
||||
@@ -99,3 +103,196 @@ void osd_t::report_status()
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Start -> Load PGs -> Load peers -> Connect to peers -> Peer PGs
|
||||
// Wait for PG changes -> Start/Stop PGs when requested
|
||||
// Peer connection is lost -> Reload connection data -> Try to reconnect -> Repeat
|
||||
void osd_t::load_pgs()
|
||||
{
|
||||
assert(this->pgs.size() == 0);
|
||||
std::string req = "GET /v1/kv/"+consul_prefix+"/config/pgs?raw"+
|
||||
/*(consul_change_index > 0 ? "&index="+std::to_string(consul_change_index) : "")+*/
|
||||
" HTTP/1.1\r\n"+
|
||||
"Host: "+consul_host+"\r\n"+
|
||||
"Connection: close\r\n"+
|
||||
"\r\n";
|
||||
http_request_json(consul_address, req, [this](std::string err, json11::Json data)
|
||||
{
|
||||
if (err != "")
|
||||
{
|
||||
printf("Error loading PGs from Consul: %s\n", err.c_str());
|
||||
tfd->set_timer(CONSUL_START_INTERVAL, false, [this](int timer_id)
|
||||
{
|
||||
load_pgs();
|
||||
});
|
||||
return;
|
||||
}
|
||||
parse_pgs(data);
|
||||
peering_state = OSD_CONNECTING_PEERS;
|
||||
});
|
||||
}
|
||||
|
||||
void osd_t::parse_pgs(json11::Json data)
|
||||
{
|
||||
uint64_t pg_count = 0;
|
||||
for (auto pg_item: data.object_items())
|
||||
{
|
||||
char *pg_num_end = NULL;
|
||||
pg_num_t pg_num = strtoull(pg_item.first.c_str(), &pg_num_end, 10);
|
||||
if (!pg_num || *pg_num_end != 0)
|
||||
{
|
||||
throw std::runtime_error("Bad key in PG hash: "+pg_item.first);
|
||||
}
|
||||
auto & pg_json = pg_item.second;
|
||||
osd_num_t primary_osd = 0;
|
||||
std::vector<osd_num_t> target_set;
|
||||
for (auto pg_osd_num: pg_json["osd_set"].array_items())
|
||||
{
|
||||
osd_num_t pg_osd = pg_osd_num.uint64_value();
|
||||
target_set.push_back(pg_osd);
|
||||
if (pg_osd != 0 && primary_osd == 0)
|
||||
{
|
||||
primary_osd = pg_osd;
|
||||
}
|
||||
}
|
||||
if (target_set.size() != 3)
|
||||
{
|
||||
throw std::runtime_error("Bad PG "+std::to_string(pg_num)+" config format: incorrect osd_set");
|
||||
}
|
||||
if (primary_osd == this->osd_num)
|
||||
{
|
||||
// Take this PG
|
||||
this->pgs[pg_num] = (pg_t){
|
||||
.state = PG_PEERING,
|
||||
.pg_cursize = 0,
|
||||
.pg_num = pg_num,
|
||||
.target_set = target_set,
|
||||
.cur_set = target_set,
|
||||
};
|
||||
this->pgs[pg_num].print_state();
|
||||
// Add peers
|
||||
for (auto pg_osd: target_set)
|
||||
{
|
||||
// FIXME: Add OSDs from PG history to peers
|
||||
if (pg_osd != this->osd_num && osd_peer_fds.find(pg_osd) == osd_peer_fds.end())
|
||||
{
|
||||
wanted_peers[pg_osd] = { 0 };
|
||||
}
|
||||
}
|
||||
}
|
||||
pg_count++;
|
||||
}
|
||||
this->pg_count = pg_count;
|
||||
}
|
||||
|
||||
void osd_t::load_and_connect_peers()
|
||||
{
|
||||
json11::Json::array consul_txn;
|
||||
for (auto wp_it = wanted_peers.begin(); wp_it != wanted_peers.end();)
|
||||
{
|
||||
osd_num_t osd_num = wp_it->first;
|
||||
if (osd_peer_fds.find(osd_num) != osd_peer_fds.end())
|
||||
{
|
||||
// It shouldn't be here
|
||||
wanted_peers.erase(wp_it++);
|
||||
if (!wanted_peers.size())
|
||||
{
|
||||
// Connected to all peers
|
||||
peering_state = peering_state & ~OSD_CONNECTING_PEERS;
|
||||
}
|
||||
}
|
||||
else if (peer_states.find(osd_num) == peer_states.end() &&
|
||||
time(NULL) - wp_it->second.last_load_attempt >= peer_connect_interval)
|
||||
{
|
||||
if (!loading_peer_config)
|
||||
{
|
||||
// (Re)load OSD state from Consul
|
||||
wp_it->second.last_load_attempt = time(NULL);
|
||||
consul_txn.push_back(json11::Json::object {
|
||||
{ "KV", json11::Json::object {
|
||||
{ "Verb", "get-tree" },
|
||||
{ "Key", consul_prefix+"/osd/state/"+std::to_string(osd_num)+"/" },
|
||||
} }
|
||||
});
|
||||
}
|
||||
wp_it++;
|
||||
}
|
||||
else if (!wp_it->second.connecting &&
|
||||
time(NULL) - wp_it->second.last_connect_attempt >= peer_connect_interval)
|
||||
{
|
||||
// Try to connect
|
||||
wp_it->second.connecting = true;
|
||||
const std::string & addr = peer_states[osd_num]["addresses"][wp_it->second.address_index].string_value();
|
||||
int64_t port = peer_states[osd_num]["port"].int64_value();
|
||||
wp_it++;
|
||||
connect_peer(osd_num, addr.c_str(), port, [this](osd_num_t osd_num, int peer_fd)
|
||||
{
|
||||
wanted_peers[osd_num].connecting = false;
|
||||
if (peer_fd < 0)
|
||||
{
|
||||
auto & addrs = peer_states[osd_num]["addresses"].array_items();
|
||||
const char *addr = addrs[wanted_peers[osd_num].address_index].string_value().c_str();
|
||||
printf("Failed to connect to peer OSD %lu address %s: %s\n", osd_num, addr, strerror(-peer_fd));
|
||||
if (wanted_peers[osd_num].address_index < addrs.size()-1)
|
||||
{
|
||||
// Try all addresses
|
||||
wanted_peers[osd_num].address_index++;
|
||||
}
|
||||
else
|
||||
{
|
||||
wanted_peers[osd_num].last_connect_attempt = time(NULL);
|
||||
peer_states.erase(osd_num);
|
||||
}
|
||||
return;
|
||||
}
|
||||
printf("Connected with peer OSD %lu (fd %d)\n", clients[peer_fd].osd_num, peer_fd);
|
||||
// FIXME: Check peer config after connecting
|
||||
wanted_peers.erase(osd_num);
|
||||
if (!wanted_peers.size())
|
||||
{
|
||||
// Connected to all peers
|
||||
peering_state = peering_state & ~OSD_CONNECTING_PEERS;
|
||||
}
|
||||
repeer_pgs(osd_num, true);
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
// Skip
|
||||
wp_it++;
|
||||
}
|
||||
}
|
||||
if (consul_txn.size() > 0)
|
||||
{
|
||||
std::string req = json11::Json(consul_txn).dump();
|
||||
req = "PUT /v1/txn HTTP/1.1\r\n"
|
||||
"Host: "+consul_host+"\r\n"
|
||||
"Content-Type: application/json\r\n"
|
||||
"Content-Length: "+std::to_string(req.size())+"\r\n"
|
||||
"Connection: close\r\n"
|
||||
"\r\n"+req;
|
||||
loading_peer_config = true;
|
||||
http_request_json(consul_address, req, [this](std::string err, json11::Json data)
|
||||
{
|
||||
loading_peer_config = false;
|
||||
if (err != "")
|
||||
{
|
||||
printf("Failed to load peer configuration from Consul");
|
||||
return;
|
||||
}
|
||||
for (auto & res: data["Results"].array_items())
|
||||
{
|
||||
std::string key = res["KV"]["Key"].string_value();
|
||||
// <consul_prefix>/osd/state/<osd_num>/
|
||||
osd_num_t osd_num = std::stoull(key.substr(consul_prefix.length()+11, key.length()-consul_prefix.length()-12));
|
||||
std::string json_err;
|
||||
json11::Json data = json11::Json::parse(base64_decode(res["KV"]["Value"].string_value()), json_err);
|
||||
if (osd_num > 0 && data.is_object() && data["state"] == "up" &&
|
||||
data["addresses"].is_array() && data["port"].is_number())
|
||||
{
|
||||
peer_states[osd_num] = data;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user