Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Side by Side Diff: src/BackupMasterRecovery.cc

Issue 248001: Test (Closed)
Patch Set: Created 11 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/BackupClient.cc ('k') | src/BackupMasterRecoveryTest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2009-2012 Stanford University 1 /* Copyright (c) 2009-2012 Stanford University
2 * 2 *
3 * Permission to use, copy, modify, and distribute this software for any 3 * Permission to use, copy, modify, and distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above 4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies. 5 * copyright notice and this permission notice appear in all copies.
6 * 6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR(S) DISCLAIM ALL WARRANTIES 7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR(S) DISCLAIM ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL AUTHORS BE LIABLE FOR 9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL AUTHORS BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "starting build of recovery segments now", 306 "starting build of recovery segments now",
307 crashedMasterId.toString().c_str(), segmentId); 307 crashedMasterId.toString().c_str(), segmentId);
308 replica->frame->load(); 308 replica->frame->load();
309 buildRecoverySegments(*replica); 309 buildRecoverySegments(*replica);
310 } 310 }
311 311
312 Fence::lfence(); 312 Fence::lfence();
313 if (!replica->built) { 313 if (!replica->built) {
314 LOG(DEBUG, "Deferring because <%s,%lu> not yet filtered", 314 LOG(DEBUG, "Deferring because <%s,%lu> not yet filtered",
315 crashedMasterId.toString().c_str(), segmentId); 315 crashedMasterId.toString().c_str(), segmentId);
316 return STATUS_RETRY; 316 throw RetryException(HERE, 5000, 10000,
317 "desired segment not yet filtered");
317 } 318 }
318 319
319 if (replica->metadata->primary) 320 if (replica->metadata->primary)
320 ++metrics->backup.primaryLoadCount; 321 ++metrics->backup.primaryLoadCount;
321 else 322 else
322 ++metrics->backup.secondaryLoadCount; 323 ++metrics->backup.secondaryLoadCount;
323 324
324 if (replica->recoveryException) { 325 if (replica->recoveryException) {
325 auto e = SegmentRecoveryFailedException(*replica->recoveryException); 326 auto e = SegmentRecoveryFailedException(*replica->recoveryException);
326 replica->recoveryException.reset(); 327 replica->recoveryException.reset();
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 BackupMasterRecovery::Replica::Replica(const BackupStorage::FrameRef& frame) 567 BackupMasterRecovery::Replica::Replica(const BackupStorage::FrameRef& frame)
567 : frame(frame) 568 : frame(frame)
568 , metadata(static_cast<const BackupReplicaMetadata*>(frame->getMetadata())) 569 , metadata(static_cast<const BackupReplicaMetadata*>(frame->getMetadata()))
569 , recoverySegments() 570 , recoverySegments()
570 , recoveryException() 571 , recoveryException()
571 , built() 572 , built()
572 { 573 {
573 } 574 }
574 575
575 } // namespace RAMCloud 576 } // namespace RAMCloud
OLDNEW
« no previous file with comments | « src/BackupClient.cc ('k') | src/BackupMasterRecoveryTest.cc » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld aab5469