1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2012 University of California
//
// BOINC is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation,
// either version 3 of the License, or (at your option) any later version.
//
// BOINC is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
// Code that's shared by the simulator, vda, and vdad
#include <algorithm>
#include <limits.h>
#include <cmath>
#include <set>
#include <stdio.h>
#include <vector>
#include "vda_lib.h"
using std::vector;
using std::set;
bool debug_status = false;
bool debug_ft = false;
///////////////// Utility functions ///////////////////////
// sort by increasing cost
//
bool compare_cost(const DATA_UNIT* d1, const DATA_UNIT* d2) {
return d1->cost < d2->cost;
}
// sort by increase min_failures
//
bool compare_min_failures(const DATA_UNIT* d1, const DATA_UNIT* d2) {
return d1->min_failures < d2->min_failures;
}
char* time_str(double t) {
static char buf[256];
int nsec = (int)fmod(t, 60);
t /= 60;
int nmin = (int)fmod(t, 60);
t /= 60;
int nhour = (int)fmod(t, 24);
t /= 24;
sprintf(buf, "%4d days %02d:%02d:%02d", (int)t, nhour, nmin, nsec);
return buf;
}
const char* status_str(int status) {
switch (status) {
case PRESENT: return "present";
case RECOVERABLE: return "recoverable";
case UNRECOVERABLE: return "unrecoverable";
}
return "unknown";
}
///////////////// META_CHUNK ///////////////////////
META_CHUNK::META_CHUNK(
VDA_FILE_AUX* d, META_CHUNK* par, double size,
int coding_level, int index
) {
dfile = d;
parent = par;
coding = d->policy.codings[coding_level];
if (parent) {
sprintf(name, "%.64s.%d", parent->name, index);
} else {
sprintf(name, "%d", index);
}
if (coding_level<d->policy.coding_levels-1) {
for (int j=0; j<coding.m; j++) {
children.push_back(new META_CHUNK(
d,
this,
size/coding.n,
coding_level+1,
j
));
}
bottom_level = false;
} else {
for (int j=0; j<coding.m; j++) {
children.push_back(
new CHUNK(this, size/coding.n, j)
);
}
bottom_level = true;
}
}
// Recovery logic: decide what to do in response to
// host failures and upload/download completions.
//
// One way to do this would be to store a bunch of state info
// with each node in the file's tree,
// and do things by local tree traversal.
//
// However, it's simpler to store minimal state info,
// and to reconstruct state info using
// a top-down tree traversal in response to each event.
// Actually we do 2 traversals:
// 1) recovery_plan()
// We see whether each node is recoverable,
// and if so compute its "recovery set":
// the set of children from which it can be recovered
// with minimal cost (i.e. network traffic).
// Decide whether each chunk currently on the server needs to remain.
// 2) decide_reconstruct()
// Decide which meta-chunks should be reconstructed
// 3) reconstruct_and_cleanup()
// Reconstruct meta-chunks and chunks, then delete meta-chunk files
// 4) recovery_action()
// decide whether to start upload/download of chunks,
// and whether to delete chunk data currently on server.
// Also compute min_failures
//
void META_CHUNK::recovery_plan() {
vector<DATA_UNIT*> recoverable;
vector<DATA_UNIT*> present;
unsigned int i;
have_unrecoverable_children = false;
need_reconstruct = false;
needed_by_parent = false;
data_now_present = false;
keep_present = false;
// make lists of children in various states
//
for (i=0; i<children.size(); i++) {
DATA_UNIT* c = children[i];
c->in_recovery_set = false;
c->data_needed = false;
c->data_now_present = false;
c->recovery_plan();
switch (c->status) {
case PRESENT:
present.push_back(c);
break;
case RECOVERABLE:
recoverable.push_back(c);
break;
case UNRECOVERABLE:
have_unrecoverable_children = true;
break;
}
}
// based on states of children, decide what state we're in
//
if ((int)(present.size()) >= coding.n) {
status = PRESENT;
sort(present.begin(), present.end(), compare_cost);
present.resize(coding.n);
cost = 0;
for (i=0; i<present.size(); i++) {
DATA_UNIT* c= present[i];
cost += c->cost;
c->in_recovery_set = true;
}
} else if ((int)(present.size() + recoverable.size()) >= coding.n) {
status = RECOVERABLE;
unsigned int j = coding.n - present.size();
sort(recoverable.begin(), recoverable.end(), compare_cost);
cost = 0;
for (i=0; i<present.size(); i++) {
DATA_UNIT* c= present[i];
c->in_recovery_set = true;
}
for (i=0; i<j; i++) {
DATA_UNIT* c= recoverable[i];
c->in_recovery_set = true;
cost += c->cost;
}
} else {
status = UNRECOVERABLE;
}
}
int META_CHUNK::recovery_action(double now) {
unsigned int i;
int retval;
if (data_now_present) {
status = PRESENT;
}
if (debug_status) {
printf(" meta chunk %s: status %s have_unrec_children %d\n",
name, status_str(status), have_unrecoverable_children
);
}
for (i=0; i<children.size(); i++) {
DATA_UNIT* c = children[i];
if (debug_status) {
printf(" child %s status %s in rec set %d\n",
c->name, status_str(c->status), c->in_recovery_set
);
}
switch (status) {
case PRESENT:
if (c->status == UNRECOVERABLE) {
c->data_now_present = true;
}
break;
case RECOVERABLE:
if (c->in_recovery_set && have_unrecoverable_children) {
c->data_needed = true;
}
break;
case UNRECOVERABLE:
break;
}
retval = c->recovery_action(now);
if (retval) return retval;
}
return 0;
}
// Compute min_failures: the smallest # of host failures
// that would make this unit unrecoverable.
//
int META_CHUNK::compute_min_failures() {
unsigned int i;
for (i=0; i<children.size(); i++) {
DATA_UNIT* c = children[i];
c->compute_min_failures();
}
// Because of recovery action,
// some of our children may have changed status and fault tolerance,
// so ours may have changed too.
// Recompute them.
//
vector<DATA_UNIT*> recoverable;
vector<DATA_UNIT*> present;
for (i=0; i<children.size(); i++) {
DATA_UNIT* c = children[i];
switch (c->status) {
case PRESENT:
present.push_back(c);
break;
case RECOVERABLE:
recoverable.push_back(c);
break;
}
}
if ((int)(present.size()) >= coding.n) {
status = PRESENT;
min_failures = dfile->policy.max_ft;
} else if ((int)(present.size() + recoverable.size()) >= coding.n) {
status = RECOVERABLE;
// our min_failures is the least X such that some X host failures
// would make this node unrecoverable
//
sort(recoverable.begin(), recoverable.end(), compare_min_failures);
min_failures = 0;
unsigned int k = coding.n - present.size();
// we'd need to recover K recoverable children
unsigned int j = recoverable.size() - k + 1;
// a loss of J recoverable children would make this impossible
// the loss of J recoverable children would make us unrecoverable
// Sum the min_failures of the J children with smallest min_failures
//
for (i=0; i<j; i++) {
DATA_UNIT* c = recoverable[i];
if (debug_ft) {
printf(" Min failures of %s: %d\n", c->name, c->min_failures);
};
min_failures += c->min_failures;
}
if (debug_ft) {
printf(" our min failures: %d\n", min_failures);
}
}
return 0;
}
// set the following:
// need_reconstruct: if we should reconstruct this from children
// need_present: not present, but needs to be present in the future
// keep_present: present, and needs to remain so
//
// Also set in children:
// needed_by_parent: ?
// keep_present
//
int META_CHUNK::decide_reconstruct() {
unsigned int i;
need_reconstruct = false;
if (some_child_is_unrecoverable()) {
if (status == PRESENT) {
need_reconstruct = true;
} else if (status == RECOVERABLE) {
need_present = true;
for (i=0; i<children.size(); i++) {
DATA_UNIT& c = *(children[i]);
if (c.in_recovery_set) {
if (c.status == PRESENT) {
c.keep_present = true;
} else {
c.need_present = true;
}
}
}
}
}
if (needed_by_parent) {
need_reconstruct = true;
}
if (need_reconstruct and !bottom_level) {
// mark n PRESENT children as needed_by_parent
int n = 0;
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
if (c.status == PRESENT) {
c.needed_by_parent = true;
n++;
if (n == coding.n) {
break;
}
}
}
}
// if we need to stay present, so do a quorum of our present children
//
if (keep_present) {
int n = 0;
for (i=0; i<children.size(); i++) {
DATA_UNIT& c = *(children[i]);
if (c.status == PRESENT) {
c.keep_present = true;
n++;
if (n == coding.n) {
break;
}
}
}
}
// recurse
//
if (!bottom_level) {
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
c.decide_reconstruct();
}
}
return 0;
}
// Recurse first, so children will be available
// If needed, reconstruct this unit (from present children)
// and then expand() (for unrecoverable children)
//
int META_CHUNK::reconstruct_and_cleanup() {
unsigned int i;
int retval;
if (!bottom_level) {
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
retval = c.reconstruct_and_cleanup();
if (retval) return retval;
}
}
if (need_reconstruct) {
retval = decode();
if (retval) return retval;
retval = expand();
if (retval) return retval;
if (!needed_by_parent) {
delete_file();
}
}
return 0;
}
// We just decoded this chunk from a subset of its children.
// Decide whether we should now encode it (to create all of its children)
//
int META_CHUNK::expand() {
unsigned int i;
int retval;
if (bottom_level) {
bool do_encode = false;
for (i=0; i<children.size(); i++) {
CHUNK& c = *(CHUNK*)children[i];
if (c.status != PRESENT && c.need_more_replicas()) {
do_encode = true;
break;
}
}
if (do_encode) {
retval = encode(false);
if (retval) return retval;
for (i=0; i<children.size(); i++) {
CHUNK& c = *(CHUNK*)children[i];
c.present_on_server = true;
}
}
} else {
bool do_encode = false;
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
if (c.status == UNRECOVERABLE) {
do_encode = true;
break;
}
}
if (do_encode) {
retval = encode(false);
if (retval) return retval;
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
if (c.status != UNRECOVERABLE) {
c.delete_file();
}
}
for (i=0; i<children.size(); i++) {
META_CHUNK& c = *(META_CHUNK*)children[i];
if (c.status == UNRECOVERABLE) {
retval = c.expand();
if (retval) return retval;
c.delete_file();
}
}
}
}
return 0;
}
///////////////// CHUNK ///////////////////////
void CHUNK::recovery_plan() {
keep_present = false;
if (present_on_server) {
status = PRESENT;
cost = 0;
} else if (!hosts.empty()) {
// if file is not present on server, assume that it's present
// on all hosts (otherwise we wouldn't have downloaded it).
//
status = RECOVERABLE;
cost = size;
if ((int)(hosts.size()) < parent->dfile->policy.replication) {
data_needed = true;
}
} else {
status = UNRECOVERABLE;
}
if (debug_status) {
printf(" chunk %s: status %s\n", name, status_str(status));
}
}
int CHUNK::compute_min_failures() {
if (present_on_server) {
min_failures = parent->dfile->policy.max_ft;
return 0;
}
int nreplicas = 0;
set<VDA_CHUNK_HOST*>::iterator i;
for (i=hosts.begin(); i!=hosts.end(); ++i) {
VDA_CHUNK_HOST* ch = *i;
if (ch->present_on_host) {
nreplicas++;
}
}
min_failures = nreplicas;
return 0;
}
bool CHUNK::download_in_progress() {
set<VDA_CHUNK_HOST*>::iterator i;
for (i=hosts.begin(); i!=hosts.end(); ++i) {
VDA_CHUNK_HOST* ch = *i;
if (ch->download_in_progress()) return true;
}
return false;
}
int CHUNK::recovery_action(double now) {
int retval;
char buf[1024];
VDA_FILE_AUX* fp = parent->dfile;
if (data_now_present) {
present_on_server = true;
#if 0
fp->disk_usage.sample_inc(
size,
fp->collecting_stats(),
now,
"recovery_action: now present"
);
#endif
status = PRESENT;
}
if (status == PRESENT && (int)(hosts.size()) < fp->policy.replication) {
retval = assign();
if (retval) return retval;
keep_present = true;
}
if (download_in_progress()) {
keep_present = true;
}
if (debug_status) {
printf(" chunk %s: data_needed %d present_on_server %d keep_present %d\n",
name, data_needed, present_on_server, keep_present
);
}
if (present_on_server) {
if (!keep_present) {
sprintf(buf,
" chunk %s: not needed, removing from server\n", name
);
show_msg(buf);
retval = delete_file();
if (retval) return retval;
present_on_server = false;
status = RECOVERABLE;
min_failures = fp->policy.replication;
parent->dfile->disk_usage.sample_inc(
-size,
fp->collecting_stats(),
now,
"recovery_action: don't need"
);
}
} else {
if (data_needed) {
retval = start_upload();
if (retval) return retval;
}
}
return 0;
}
|