diff options
author | Kshitij Gupta <kshitij.gupta@mongodb.com> | 2021-06-02 22:59:42 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-06-08 16:22:50 +0000 |
commit | 593de38d3391c523e1848f8dc0040c02387b0735 (patch) | |
tree | 5f102654db1b870ca4bbeebf1bbf56704dd81e4d /src/mongo/db | |
parent | 3f00b0cd01d4231fd22820fe63bdae2511489eda (diff) | |
download | mongo-593de38d3391c523e1848f8dc0040c02387b0735.tar.gz |
SERVER-57263: Use resharding metrics stepUp/stepDown logic in the
recipient state machine.
Diffstat (limited to 'src/mongo/db')
-rw-r--r-- | src/mongo/db/s/resharding/resharding_recipient_service.cpp | 35 | ||||
-rw-r--r-- | src/mongo/db/s/resharding/resharding_recipient_service.h | 5 |
2 files changed, 22 insertions, 18 deletions
diff --git a/src/mongo/db/s/resharding/resharding_recipient_service.cpp b/src/mongo/db/s/resharding/resharding_recipient_service.cpp index 3d1aab08869..ba96366a3fb 100644 --- a/src/mongo/db/s/resharding/resharding_recipient_service.cpp +++ b/src/mongo/db/s/resharding/resharding_recipient_service.cpp @@ -337,7 +337,14 @@ ExecutorFuture<void> ReshardingRecipientService::RecipientStateMachine::_finishR } ExecutorFuture<void> ReshardingRecipientService::RecipientStateMachine::_runMandatoryCleanup( - Status status) { + Status status, const CancellationToken& stepdownToken) { + if (stepdownToken.isCanceled()) { + // Interrupt occured, ensure the metrics get shut down. + // TODO SERVER-56500: Don't use ReshardingOperationStatusEnum::kCanceled here if it + // is not meant for failover cases. + _metrics()->onStepDown(ReshardingMetrics::Role::kRecipient); + } + return _dataReplicationQuiesced.thenRunOn(_recipientService->getInstanceCleanupExecutor()) .onCompletion([this, self = shared_from_this(), outerStatus = status]( Status dataReplicationHaltStatus) { @@ -358,8 +365,7 @@ SemiFuture<void> ReshardingRecipientService::RecipientStateMachine::run( _cancelableOpCtxFactory.emplace(abortToken, _markKilledExecutor); return ExecutorFuture<void>(**executor) - .then( - [this] { _metrics()->onStart(ReshardingMetrics::Role::kRecipient, getCurrentTime()); }) + .then([this] { _startMetrics(); }) .then([this, executor, abortToken] { return _runUntilStrictConsistencyOrErrored(executor, abortToken); }) @@ -400,23 +406,10 @@ SemiFuture<void> ReshardingRecipientService::RecipientStateMachine::run( // necessary to use shared_from_this() to extend the lifetime so the all earlier code can // safely finish executing. .onCompletion([this, self = shared_from_this(), stepdownToken](Status status) { - if (stepdownToken.isCanceled()) { - // Interrupt occured, ensure the metrics get shut down. - // TODO SERVER-56500: Don't use ReshardingOperationStatusEnum::kCanceled here if it - // is not meant for failover cases. - _metrics()->onCompletion(ReshardingMetrics::Role::kRecipient, - ReshardingOperationStatusEnum::kCanceled, - getCurrentTime()); - } - - return status; - }) - .thenRunOn(_recipientService->getInstanceCleanupExecutor()) - .onCompletion([this, self = shared_from_this()](Status status) { // On stepdown or shutdown, the _scopedExecutor may have already been shut down. // Everything in this function runs on the instance's cleanup executor, and will // execute regardless of any work on _scopedExecutor ever running. - return _runMandatoryCleanup(status); + return _runMandatoryCleanup(status, stepdownToken); }) .semi(); } @@ -954,6 +947,14 @@ ReshardingMetrics* ReshardingRecipientService::RecipientStateMachine::_metrics() return ReshardingMetrics::get(cc().getServiceContext()); } +void ReshardingRecipientService::RecipientStateMachine::_startMetrics() { + if (_recipientCtx.getState() > RecipientStateEnum::kAwaitingFetchTimestamp) { + _metrics()->onStepUp(ReshardingMetrics::Role::kRecipient); + } else { + _metrics()->onStart(ReshardingMetrics::Role::kRecipient, getCurrentTime()); + } +} + CancellationToken ReshardingRecipientService::RecipientStateMachine::_initAbortSource( const CancellationToken& stepdownToken) { { diff --git a/src/mongo/db/s/resharding/resharding_recipient_service.h b/src/mongo/db/s/resharding/resharding_recipient_service.h index 71a9aab7e63..4178a2c558a 100644 --- a/src/mongo/db/s/resharding/resharding_recipient_service.h +++ b/src/mongo/db/s/resharding/resharding_recipient_service.h @@ -162,7 +162,8 @@ private: * The work inside this function must be run regardless of any work on _scopedExecutor ever * running. */ - ExecutorFuture<void> _runMandatoryCleanup(Status status); + ExecutorFuture<void> _runMandatoryCleanup(Status status, + const CancellationToken& stepdownToken); // The following functions correspond to the actions to take at a particular recipient state. ExecutorFuture<void> _awaitAllDonorsPreparedToDonateThenTransitionToCreatingCollection( @@ -230,6 +231,8 @@ private: ReshardingMetrics* _metrics() const; + void _startMetrics(); + // Initializes the _abortSource and generates a token from it to return back the caller. // // Should only be called once per lifetime. |