summaryrefslogtreecommitdiff
path: root/src/mongo/s/query/establish_cursors.cpp
blob: 18e78048193f270f5017b5122f213a6ebb7035b1 (plain)
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
/**
 *    Copyright (C) 2018-present MongoDB, Inc.
 *
 *    This program is free software: you can redistribute it and/or modify
 *    it under the terms of the Server Side Public License, version 1,
 *    as published by MongoDB, Inc.
 *
 *    This program 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
 *    Server Side Public License for more details.
 *
 *    You should have received a copy of the Server Side Public License
 *    along with this program. If not, see
 *    <http://www.mongodb.com/licensing/server-side-public-license>.
 *
 *    As a special exception, the copyright holders give permission to link the
 *    code of portions of this program with the OpenSSL library under certain
 *    conditions as described in each individual source file and distribute
 *    linked combinations including the program with the OpenSSL library. You
 *    must comply with the Server Side Public License in all respects for
 *    all of the code used other than as permitted herein. If you modify file(s)
 *    with this exception, you may extend this exception to your version of the
 *    file(s), but you are not obligated to do so. If you do not wish to do so,
 *    delete this exception statement from your version. If you delete this
 *    exception statement from all source files in the program, then also delete
 *    it in the license file.
 */

#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kQuery

#include "mongo/platform/basic.h"

#include "mongo/s/query/establish_cursors.h"

#include "mongo/client/connpool.h"
#include "mongo/client/remote_command_retry_scheduler.h"
#include "mongo/client/remote_command_targeter.h"
#include "mongo/db/cursor_id.h"
#include "mongo/db/query/cursor_response.h"
#include "mongo/db/query/killcursors_request.h"
#include "mongo/executor/remote_command_request.h"
#include "mongo/executor/remote_command_response.h"
#include "mongo/logv2/log.h"
#include "mongo/s/grid.h"
#include "mongo/s/multi_statement_transaction_requests_sender.h"
#include "mongo/util/assert_util.h"

namespace mongo {

namespace {

void killOpOnShards(std::shared_ptr<executor::TaskExecutor> executor,
                    const NamespaceString& nss,
                    std::vector<HostAndPort> remotes,
                    const ReadPreferenceSetting& readPref,
                    UUID opKey) noexcept {
    try {
        ThreadClient tc("establishCursors cleanup", getGlobalServiceContext());
        auto opCtx = tc->makeOperationContext();

        for (auto&& host : remotes) {
            executor::RemoteCommandRequest request(
                host,
                "admin",
                BSON("_killOperations" << 1 << "operationKeys" << BSON_ARRAY(opKey)),
                opCtx.get(),
                executor::RemoteCommandRequestBase::kNoTimeout,
                boost::none,
                executor::RemoteCommandRequestBase::FireAndForgetMode::kOn);

            // We do not process the response to the killOperations request (we make a good-faith
            // attempt at cleaning up the cursors, but ignore any returned errors).
            uassertStatusOK(executor->scheduleRemoteCommand(request, [&](auto const& args) {
                if (!args.response.isOK()) {
                    LOGV2_DEBUG(4625504,
                                2,
                                "killOperations for {remoteHost} failed with {error}",
                                "killOperations failed",
                                "remoteHost"_attr = host.toString(),
                                "error"_attr = args.response);
                    return;
                }
            }));
        }
    } catch (const AssertionException& ex) {
        LOGV2_DEBUG(4625503,
                    2,
                    "Failed to cleanup remote operations: {error}",
                    "Failed to cleanup remote operations",
                    "error"_attr = ex.toStatus());
    }
}

}  // namespace

std::vector<RemoteCursor> establishCursors(OperationContext* opCtx,
                                           std::shared_ptr<executor::TaskExecutor> executor,
                                           const NamespaceString& nss,
                                           const ReadPreferenceSetting readPref,
                                           const std::vector<std::pair<ShardId, BSONObj>>& remotes,
                                           bool allowPartialResults,
                                           Shard::RetryPolicy retryPolicy) {
    // Construct the requests
    std::vector<AsyncRequestsSender::Request> requests;

    // Generate an OperationKey to attach to each remote request. This will allow us to kill any
    // outstanding requests in case we're interrupted or one of the remotes returns an error. Note
    // that although the opCtx may have an OperationKey set on it already, do not inherit it here
    // because we may target ourselves which implies the same node receiving multiple operations
    // with the same opKey.
    // TODO SERVER-47261 management of the opKey should move to the ARS.
    auto opKey = UUID::gen();
    for (const auto& remote : remotes) {
        BSONObjBuilder requestWithOpKey(remote.second);
        opKey.appendToBuilder(&requestWithOpKey, "clientOperationKey");
        requests.emplace_back(remote.first, requestWithOpKey.obj());
    }

    LOGV2_DEBUG(
        4625502,
        3,
        "Establishing cursors on {opId} for {numRemotes} remotes with operation key {opKey}",
        "Establishing cursors on remotes",
        "opId"_attr = opCtx->getOpID(),
        "numRemotes"_attr = remotes.size(),
        "opKey"_attr = opKey);

    // Send the requests
    MultiStatementTransactionRequestsSender ars(
        opCtx, executor, nss.db().toString(), std::move(requests), readPref, retryPolicy);

    std::vector<RemoteCursor> remoteCursors;

    // Keep track of any remotes which may have an open cursor.
    std::vector<HostAndPort> remotesToClean;

    try {
        // Get the responses
        while (!ars.done()) {
            auto response = ars.next();

            try {
                if (response.shardHostAndPort)
                    remotesToClean.push_back(*response.shardHostAndPort);

                // Note the shardHostAndPort may not be populated if there was an error, so be sure
                // to do this after parsing the cursor response to ensure the response was ok.
                // Additionally, be careful not to push into 'remoteCursors' until we are sure we
                // have a valid cursor.
                auto cursors = CursorResponse::parseFromBSONMany(
                    uassertStatusOK(std::move(response.swResponse)).data);

                for (auto& cursor : cursors) {
                    if (cursor.isOK()) {
                        RemoteCursor remoteCursor;
                        remoteCursor.setCursorResponse(std::move(cursor.getValue()));
                        remoteCursor.setShardId(std::move(response.shardId));
                        remoteCursor.setHostAndPort(*response.shardHostAndPort);
                        remoteCursors.push_back(std::move(remoteCursor));
                    } else {
                        // Remote responded with a failure, do not attempt to clean up.
                        remotesToClean.erase(std::remove(remotesToClean.begin(),
                                                         remotesToClean.end(),
                                                         *response.shardHostAndPort));
                    }
                }

                // Throw if there is any error and then the catch block below will do the cleanup.
                for (auto& cursor : cursors) {
                    uassertStatusOK(cursor.getStatus());
                }
            } catch (const AssertionException& ex) {
                // Retriable errors are swallowed if 'allowPartialResults' is true. Targeting shard
                // replica sets can also throw FailedToSatisfyReadPreference, so we swallow it too.
                bool isEligibleException = (isMongosRetriableError(ex.code()) ||
                                            ex.code() == ErrorCodes::FailedToSatisfyReadPreference);

                // Fail if the exception is something other than a retriable or read preference
                // error, or if the 'allowPartialResults' query parameter was not enabled.
                if (!allowPartialResults || !isEligibleException) {
                    throw;
                }
                // This exception is eligible to be swallowed. Add an entry with a cursorID of 0, an
                // empty HostAndPort, and which has the 'partialResultsReturned' flag set to true.
                remoteCursors.push_back(
                    {response.shardId.toString(), {}, {nss, CursorId{0}, {}, {}, {}, {}, true}});
            }
        }
        return remoteCursors;
    } catch (const DBException& ex) {
        // If one of the remotes had an error, we make a best effort to finish retrieving responses
        // for other requests that were already sent.
        try {
            // Do not schedule any new requests.
            ars.stopRetrying();

            // Collect responses from all requests that were already sent.
            while (!ars.done()) {
                auto response = ars.next();

                if (response.shardHostAndPort)
                    remotesToClean.push_back(*response.shardHostAndPort);

                if (response.swResponse.isOK()) {
                    // Check if the response contains an established cursor, and if so, store it.
                    StatusWith<CursorResponse> swCursorResponse =
                        CursorResponse::parseFromBSON(response.swResponse.getValue().data);

                    if (swCursorResponse.isOK()) {
                        RemoteCursor cursor;
                        cursor.setShardId(std::move(response.shardId));
                        cursor.setHostAndPort(*response.shardHostAndPort);
                        cursor.setCursorResponse(std::move(swCursorResponse.getValue()));
                        remoteCursors.push_back(std::move(cursor));
                    } else {
                        // Remote responded with a failure, do not attempt to clean up.
                        remotesToClean.erase(std::remove(remotesToClean.begin(),
                                                         remotesToClean.end(),
                                                         *response.shardHostAndPort));
                    }
                }
            }

            LOGV2(4625501,
                  "ARS failed with {error}, attempting to clean up {nRemotes} remote operations",
                  "ARS failed. Attempting to clean up remote operations",
                  "error"_attr = ex.toStatus(),
                  "nRemotes"_attr = remotesToClean.size());

            // Check whether we have any remote operations to kill.
            if (remotesToClean.size() > 0) {
                // Schedule killOperations against all cursors that were established. Make sure to
                // capture arguments by value since the cleanup work may get scheduled after
                // returning from this function.
                MONGO_COMPILER_VARIABLE_UNUSED auto cbHandle = uassertStatusOK(
                    executor->scheduleWork([executor,
                                            nss,
                                            readPref,
                                            remotesToClean{std::move(remotesToClean)},
                                            opKey{std::move(opKey)}](
                                               const executor::TaskExecutor::CallbackArgs& args) {
                        if (!args.status.isOK()) {
                            invariant(0);
                            uasserted(ErrorCodes::CallbackCanceled, "YOOO");
                            LOGV2_WARNING(48038,
                                          "Failed to schedule remote cursor cleanup: {error}",
                                          "Failed to schedule remote cursor cleanup",
                                          "error"_attr = args.status);
                            return;
                        }
                        killOpOnShards(
                            executor, nss, std::move(remotesToClean), readPref, std::move(opKey));
                    }));
            }
        } catch (const DBException&) {
            // Ignore the new error and rethrow the original one.
        }

        throw;
    }
}

void killRemoteCursor(OperationContext* opCtx,
                      executor::TaskExecutor* executor,
                      RemoteCursor&& cursor,
                      const NamespaceString& nss) {
    BSONObj cmdObj = KillCursorsRequest(nss, {cursor.getCursorResponse().getCursorId()}).toBSON();
    executor::RemoteCommandRequest request(
        cursor.getHostAndPort(), nss.db().toString(), cmdObj, opCtx);

    // We do not process the response to the killCursors request (we make a good-faith
    // attempt at cleaning up the cursors, but ignore any returned errors).
    executor->scheduleRemoteCommand(request, [](auto const&) {}).getStatus().ignore();
}

}  // namespace mongo