Compare commits
1 Commits
7b37ba921d
...
e0e515865a
Author | SHA1 | Date |
---|---|---|
Vitaliy Filippov | e0e515865a |
|
@ -288,24 +288,6 @@ jobs:
|
||||||
echo ""
|
echo ""
|
||||||
done
|
done
|
||||||
|
|
||||||
test_create_halfhost:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: build
|
|
||||||
container: ${{env.TEST_IMAGE}}:${{github.sha}}
|
|
||||||
steps:
|
|
||||||
- name: Run test
|
|
||||||
id: test
|
|
||||||
timeout-minutes: 3
|
|
||||||
run: /root/vitastor/tests/test_create_halfhost.sh
|
|
||||||
- name: Print logs
|
|
||||||
if: always() && steps.test.outcome == 'failure'
|
|
||||||
run: |
|
|
||||||
for i in /root/vitastor/testdata/*.log /root/vitastor/testdata/*.txt; do
|
|
||||||
echo "-------- $i --------"
|
|
||||||
cat $i
|
|
||||||
echo ""
|
|
||||||
done
|
|
||||||
|
|
||||||
test_failure_domain:
|
test_failure_domain:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: build
|
needs: build
|
||||||
|
|
|
@ -90,19 +90,13 @@ resume_1:
|
||||||
// If not forced, check that we have enough osds for pg_size
|
// If not forced, check that we have enough osds for pg_size
|
||||||
if (!force)
|
if (!force)
|
||||||
{
|
{
|
||||||
// Get node_placement configuration from etcd and OSD stats
|
// Get node_placement configuration from etcd
|
||||||
parent->etcd_txn(json11::Json::object {
|
parent->etcd_txn(json11::Json::object {
|
||||||
{ "success", json11::Json::array {
|
{ "success", json11::Json::array {
|
||||||
json11::Json::object {
|
json11::Json::object {
|
||||||
{ "request_range", json11::Json::object {
|
{ "request_range", json11::Json::object {
|
||||||
{ "key", base64_encode(parent->cli->st_cli.etcd_prefix+"/config/node_placement") },
|
{ "key", base64_encode(parent->cli->st_cli.etcd_prefix+"/config/node_placement") },
|
||||||
} },
|
} }
|
||||||
},
|
|
||||||
json11::Json::object {
|
|
||||||
{ "request_range", json11::Json::object {
|
|
||||||
{ "key", base64_encode(parent->cli->st_cli.etcd_prefix+"/osd/stats/") },
|
|
||||||
{ "range_end", base64_encode(parent->cli->st_cli.etcd_prefix+"/osd/stats0") },
|
|
||||||
} },
|
|
||||||
},
|
},
|
||||||
} },
|
} },
|
||||||
});
|
});
|
||||||
|
@ -118,21 +112,10 @@ resume_2:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get state_node_tree based on node_placement and osd stats
|
// Get state_node_tree based on node_placement and osd peer states
|
||||||
{
|
{
|
||||||
auto node_placement_kv = parent->cli->st_cli.parse_etcd_kv(parent->etcd_result["responses"][0]["response_range"]["kvs"][0]);
|
auto kv = parent->cli->st_cli.parse_etcd_kv(parent->etcd_result["responses"][0]["response_range"]["kvs"][0]);
|
||||||
std::map<osd_num_t, json11::Json> osd_stats;
|
state_node_tree = get_state_node_tree(kv.value.object_items());
|
||||||
timespec tv_now;
|
|
||||||
clock_gettime(CLOCK_REALTIME, &tv_now);
|
|
||||||
uint64_t osd_out_time = parent->cli->config["osd_out_time"].uint64_value();
|
|
||||||
if (!osd_out_time)
|
|
||||||
osd_out_time = 600;
|
|
||||||
parent->iterate_kvs_1(parent->etcd_result["responses"][1]["response_range"]["kvs"], "/osd/stats/", [&](uint64_t cur_osd, json11::Json value)
|
|
||||||
{
|
|
||||||
if (value["time"].uint64_value()+osd_out_time >= tv_now.tv_sec)
|
|
||||||
osd_stats[cur_osd] = value;
|
|
||||||
});
|
|
||||||
state_node_tree = get_state_node_tree(node_placement_kv.value.object_items(), osd_stats);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip tag checks, if pool has none
|
// Skip tag checks, if pool has none
|
||||||
|
@ -375,52 +358,56 @@ resume_8:
|
||||||
|
|
||||||
// Returns a JSON object of form {"nodes": {...}, "osds": [...]} that
|
// Returns a JSON object of form {"nodes": {...}, "osds": [...]} that
|
||||||
// contains: all nodes (osds, hosts, ...) based on node_placement config
|
// contains: all nodes (osds, hosts, ...) based on node_placement config
|
||||||
// and current osd stats.
|
// and current peer state, and a list of active peer osds.
|
||||||
json11::Json get_state_node_tree(json11::Json::object node_placement, std::map<osd_num_t, json11::Json> & osd_stats)
|
json11::Json get_state_node_tree(json11::Json::object node_placement)
|
||||||
{
|
{
|
||||||
// Erase non-existing osd nodes from node_placement
|
// Erase non-peer osd nodes from node_placement
|
||||||
for (auto np_it = node_placement.begin(); np_it != node_placement.end();)
|
for (auto np_it = node_placement.begin(); np_it != node_placement.end();)
|
||||||
{
|
{
|
||||||
// Numeric nodes are osds
|
// Numeric nodes are osds
|
||||||
osd_num_t osd_num = stoull_full(np_it->first);
|
osd_num_t osd_num = stoull_full(np_it->first);
|
||||||
|
|
||||||
// If node is osd and its stats do not exist, erase it
|
// If node is osd and it is not in peer states, erase it
|
||||||
if (osd_num > 0 && osd_stats.find(osd_num) == osd_stats.end())
|
if (osd_num > 0 &&
|
||||||
|
parent->cli->st_cli.peer_states.find(osd_num) == parent->cli->st_cli.peer_states.end())
|
||||||
|
{
|
||||||
node_placement.erase(np_it++);
|
node_placement.erase(np_it++);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
np_it++;
|
np_it++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// List of osds
|
// List of peer osds
|
||||||
std::vector<std::string> existing_osds;
|
std::vector<std::string> peer_osds;
|
||||||
|
|
||||||
// Record osds and add missing osds/hosts to np
|
// Record peer osds and add missing osds/hosts to np
|
||||||
for (auto & ps: osd_stats)
|
for (auto & ps: parent->cli->st_cli.peer_states)
|
||||||
{
|
{
|
||||||
std::string osd_num = std::to_string(ps.first);
|
std::string osd_num = std::to_string(ps.first);
|
||||||
|
|
||||||
// Record osd
|
// Record peer osd
|
||||||
existing_osds.push_back(osd_num);
|
peer_osds.push_back(osd_num);
|
||||||
|
|
||||||
// Add host if necessary
|
// Add osd, if necessary
|
||||||
std::string osd_host = ps.second["host"].as_string();
|
|
||||||
if (node_placement.find(osd_host) == node_placement.end())
|
|
||||||
{
|
|
||||||
node_placement[osd_host] = json11::Json::object {
|
|
||||||
{ "level", "host" }
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add osd if necessary
|
|
||||||
if (node_placement.find(osd_num) == node_placement.end())
|
if (node_placement.find(osd_num) == node_placement.end())
|
||||||
{
|
{
|
||||||
|
std::string osd_host = ps.second["host"].as_string();
|
||||||
|
|
||||||
|
// Add host, if necessary
|
||||||
|
if (node_placement.find(osd_host) == node_placement.end())
|
||||||
|
{
|
||||||
|
node_placement[osd_host] = json11::Json::object {
|
||||||
|
{ "level", "host" }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
node_placement[osd_num] = json11::Json::object {
|
node_placement[osd_num] = json11::Json::object {
|
||||||
{ "parent", osd_host }
|
{ "parent", osd_host }
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return json11::Json::object { { "osds", existing_osds }, { "nodes", node_placement } };
|
return json11::Json::object { { "osds", peer_osds }, { "nodes", node_placement } };
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns new state_node_tree based on given state_node_tree with osds
|
// Returns new state_node_tree based on given state_node_tree with osds
|
||||||
|
@ -605,10 +592,13 @@ resume_8:
|
||||||
// If parent node given, ...
|
// If parent node given, ...
|
||||||
else if (parent_node != "")
|
else if (parent_node != "")
|
||||||
{
|
{
|
||||||
// ... look for child nodes of this parent
|
// ... look for children nodes of this parent
|
||||||
for (auto & sn: node_tree)
|
for (auto & sn: node_tree)
|
||||||
{
|
{
|
||||||
if (sn.second["parent"] == parent_node)
|
auto & props = sn.second.object_items();
|
||||||
|
|
||||||
|
auto parent_prop = props.find("parent");
|
||||||
|
if (parent_prop != props.end() && (parent_prop->second.as_string() == parent_node))
|
||||||
{
|
{
|
||||||
nodes.push_back(sn.first);
|
nodes.push_back(sn.first);
|
||||||
|
|
||||||
|
@ -625,7 +615,10 @@ resume_8:
|
||||||
// ... look for all level nodes
|
// ... look for all level nodes
|
||||||
for (auto & sn: node_tree)
|
for (auto & sn: node_tree)
|
||||||
{
|
{
|
||||||
if (sn.second["level"] == level)
|
auto & props = sn.second.object_items();
|
||||||
|
|
||||||
|
auto level_prop = props.find("level");
|
||||||
|
if (level_prop != props.end() && (level_prop->second.as_string() == level))
|
||||||
{
|
{
|
||||||
nodes.push_back(sn.first);
|
nodes.push_back(sn.first);
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,12 +19,9 @@ ANTIETCD=1 ./test_etcd_fail.sh
|
||||||
|
|
||||||
./test_interrupted_rebalance.sh
|
./test_interrupted_rebalance.sh
|
||||||
IMMEDIATE_COMMIT=1 ./test_interrupted_rebalance.sh
|
IMMEDIATE_COMMIT=1 ./test_interrupted_rebalance.sh
|
||||||
|
|
||||||
SCHEME=ec ./test_interrupted_rebalance.sh
|
SCHEME=ec ./test_interrupted_rebalance.sh
|
||||||
SCHEME=ec IMMEDIATE_COMMIT=1 ./test_interrupted_rebalance.sh
|
SCHEME=ec IMMEDIATE_COMMIT=1 ./test_interrupted_rebalance.sh
|
||||||
|
|
||||||
./test_create_halfhost.sh
|
|
||||||
|
|
||||||
./test_failure_domain.sh
|
./test_failure_domain.sh
|
||||||
|
|
||||||
./test_snapshot.sh
|
./test_snapshot.sh
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
#!/bin/bash -ex
|
|
||||||
|
|
||||||
. `dirname $0`/common.sh
|
|
||||||
|
|
||||||
node mon/mon-main.js $MON_PARAMS --etcd_address $ETCD_URL --etcd_prefix "/vitastor" >>./testdata/mon.log 2>&1 &
|
|
||||||
MON_PID=$!
|
|
||||||
wait_etcd
|
|
||||||
|
|
||||||
TIME=$(date '+%s')
|
|
||||||
$ETCDCTL put /vitastor/config/global '{"placement_levels":{"dc":10,"host":100,"half":105,"osd":110}}'
|
|
||||||
$ETCDCTL put /vitastor/config/node_placement '{
|
|
||||||
"h11":{"level":"half","parent":"host1"},
|
|
||||||
"h12":{"level":"half","parent":"host1"},
|
|
||||||
"h21":{"level":"half","parent":"host2"},
|
|
||||||
"h22":{"level":"half","parent":"host2"},
|
|
||||||
"h31":{"level":"half","parent":"host3"},
|
|
||||||
"h32":{"level":"half","parent":"host3"},
|
|
||||||
"1":{"parent":"h11"},
|
|
||||||
"2":{"parent":"h12"},
|
|
||||||
"3":{"parent":"h21"},
|
|
||||||
"4":{"parent":"h22"},
|
|
||||||
"5":{"parent":"h31"},
|
|
||||||
"6":{"parent":"h32"}
|
|
||||||
}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/1 '{"host":"host1","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/2 '{"host":"host1","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/3 '{"host":"host2","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/4 '{"host":"host2","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/5 '{"host":"host3","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
$ETCDCTL put /vitastor/osd/stats/6 '{"host":"host3","size":1073741824,"time":"'$TIME'"}'
|
|
||||||
build/src/cmd/vitastor-cli --etcd_address $ETCD_URL osd-tree
|
|
||||||
# check that it doesn't fail
|
|
||||||
build/src/cmd/vitastor-cli --etcd_address $ETCD_URL create-pool testpool --ec 2+1 -n 32
|
|
||||||
|
|
||||||
format_green OK
|
|
Loading…
Reference in New Issue