OLD | NEW |
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 Loading... |
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 Loading... |
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 |
OLD | NEW |