summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/rs_initialsync.cpp
blob: 1380ae190c9e5542b19e4497e0108fa805500ab2 (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
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
/**
*    Copyright (C) 2008 10gen Inc.
*
*    This program is free software: you can redistribute it and/or  modify
*    it under the terms of the GNU Affero General Public License, version 3,
*    as published by the Free Software Foundation.
*
*    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
*    GNU Affero General Public License for more details.
*
*    You should have received a copy of the GNU Affero General Public License
*    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*
*    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 GNU Affero General 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_LOG_DEFAULT_COMPONENT ::mongo::logger::LogComponent::kReplication

#include "mongo/platform/basic.h"

#include "mongo/db/repl/rs_initialsync.h"

#include "mongo/bson/timestamp.h"
#include "mongo/bson/util/bson_extract.h"
#include "mongo/db/auth/authorization_manager.h"
#include "mongo/db/auth/authorization_manager_global.h"
#include "mongo/db/catalog/collection.h"
#include "mongo/db/client.h"
#include "mongo/db/cloner.h"
#include "mongo/db/db_raii.h"
#include "mongo/db/dbhelpers.h"
#include "mongo/db/service_context.h"
#include "mongo/db/op_observer.h"
#include "mongo/db/operation_context_impl.h"
#include "mongo/db/operation_context_impl.h"
#include "mongo/db/repl/bgsync.h"
#include "mongo/db/repl/initial_sync.h"
#include "mongo/db/repl/minvalid.h"
#include "mongo/db/repl/oplog.h"
#include "mongo/db/repl/oplogreader.h"
#include "mongo/db/repl/repl_client_info.h"
#include "mongo/db/repl/replication_coordinator_global.h"
#include "mongo/util/exit.h"
#include "mongo/util/log.h"
#include "mongo/util/mongoutils/str.h"

namespace mongo {
namespace repl {
namespace {

    using std::list;
    using std::string;

    /**
     * Truncates the oplog (removes any documents) and resets internal variables that were
     * originally initialized or affected by using values from the oplog at startup time.  These
     * include the last applied optime, the last fetched optime, and the sync source blacklist.
     * Also resets the bgsync thread so that it reconnects its sync source after the oplog has been
     * truncated.
     */
    void truncateAndResetOplog(OperationContext* txn,
                               ReplicationCoordinator* replCoord,
                               BackgroundSync* bgsync) {
        AutoGetDb autoDb(txn, "local", MODE_X);
        massert(28585, "no local database found", autoDb.getDb());
        invariant(txn->lockState()->isCollectionLockedForMode(rsOplogName, MODE_X));
        // Note: the following order is important.
        // The bgsync thread uses an empty optime as a sentinel to know to wait
        // for initial sync; thus, we must
        // ensure the lastAppliedOptime is empty before restarting the bgsync thread
        // via stop().
        // We must clear the sync source blacklist after calling stop()
        // because the bgsync thread, while running, may update the blacklist.
        replCoord->resetMyLastOptime();
        bgsync->stop();
        replCoord->clearSyncSourceBlacklist();

        // Truncate the oplog in case there was a prior initial sync that failed.
        Collection* collection = autoDb.getDb()->getCollection(rsOplogName);
        fassert(28565, collection);
        WriteUnitOfWork wunit(txn);
        Status status = collection->truncate(txn);
        fassert(28564, status);
        wunit.commit();
    }

    /**
     * Confirms that the "admin" database contains a supported version of the auth
     * data schema.  Terminates the process if the "admin" contains clearly incompatible
     * auth data.
     */
    void checkAdminDatabasePostClone(OperationContext* txn, Database* adminDb) {
        // Assumes txn holds MODE_X or MODE_S lock on "admin" database.
        if (!adminDb) {
            return;
        }
        Collection* const usersCollection =
            adminDb->getCollection(AuthorizationManager::usersCollectionNamespace);
        const bool hasUsers = usersCollection &&
            !Helpers::findOne(txn, usersCollection, BSONObj(), false).isNull();
        Collection* const adminVersionCollection =
            adminDb->getCollection(AuthorizationManager::versionCollectionNamespace);
        BSONObj authSchemaVersionDocument;
        if (!adminVersionCollection || !Helpers::findOne(txn,
                                                         adminVersionCollection,
                                                         AuthorizationManager::versionDocumentQuery,
                                                         authSchemaVersionDocument)) {
            if (!hasUsers) {
                // It's OK to have no auth version document if there are no user documents.
                return;
            }
            severe() << "During initial sync, found documents in " <<
                AuthorizationManager::usersCollectionNamespace <<
                " but could not find an auth schema version document in " <<
                AuthorizationManager::versionCollectionNamespace;
            severe() << "This indicates that the primary of this replica set was not successfully "
                "upgraded to schema version " << AuthorizationManager::schemaVersion26Final <<
                ", which is the minimum supported schema version in this version of MongoDB";
            fassertFailedNoTrace(28620);
        }
        long long foundSchemaVersion;
        Status status = bsonExtractIntegerField(authSchemaVersionDocument,
                                                AuthorizationManager::schemaVersionFieldName,
                                                &foundSchemaVersion);
        if (!status.isOK()) {
            severe() << "During initial sync, found malformed auth schema version document: " <<
                status << "; document: " << authSchemaVersionDocument;
            fassertFailedNoTrace(28618);
        }
        if ((foundSchemaVersion != AuthorizationManager::schemaVersion26Final) &&
            (foundSchemaVersion != AuthorizationManager::schemaVersion28SCRAM)) {
            severe() << "During initial sync, found auth schema version " << foundSchemaVersion <<
                ", but this version of MongoDB only supports schema versions " <<
                AuthorizationManager::schemaVersion26Final << " and " <<
                AuthorizationManager::schemaVersion28SCRAM;
            fassertFailedNoTrace(28619);
        }
    }

    bool _initialSyncClone(OperationContext* txn,
                           Cloner& cloner,
                           const std::string& host,
                           const list<string>& dbs,
                           bool dataPass) {

        for( list<string>::const_iterator i = dbs.begin(); i != dbs.end(); i++ ) {
            const string db = *i;
            if ( db == "local" )
                continue;

            if ( dataPass )
                log() << "initial sync cloning db: " << db;
            else
                log() << "initial sync cloning indexes for : " << db;

            string err;
            int errCode;
            CloneOptions options;
            options.fromDB = db;
            options.logForRepl = false;
            options.slaveOk = true;
            options.useReplAuth = true;
            options.snapshot = false;
            options.mayYield = true;
            options.mayBeInterrupted = false;
            options.syncData = dataPass;
            options.syncIndexes = ! dataPass;

            // Make database stable
            ScopedTransaction transaction(txn, MODE_IX);
            Lock::DBLock dbWrite(txn->lockState(), db, MODE_X);

            if (!cloner.go(txn, db, host, options, NULL, err, &errCode)) {
                log() << "initial sync: error while "
                      << (dataPass ? "cloning " : "indexing ") << db
                      << ".  " << (err.empty() ? "" : err + ".  ");
                return false;
            }

            if (db == "admin") {
                checkAdminDatabasePostClone(txn, dbHolder().get(txn, db));
            }
        }

        return true;
    }

    /**
     * Replays the sync target's oplog from lastOp to the latest op on the sync target.
     *
     * @param syncer either initial sync (can reclone missing docs) or "normal" sync (no recloning)
     * @param r      the oplog reader
     * @return if applying the oplog succeeded
     */
    bool _initialSyncApplyOplog( OperationContext* ctx,
                                 repl::SyncTail& syncer,
                                 OplogReader* r) {
        const Timestamp startOpTime = getGlobalReplicationCoordinator()->getMyLastOptime();
        BSONObj lastOp;
        try {
            // It may have been a long time since we last used this connection to
            // query the oplog, depending on the size of the databases we needed to clone.
            // A common problem is that TCP keepalives are set too infrequent, and thus
            // our connection here is terminated by a firewall due to inactivity.
            // Solution is to increase the TCP keepalive frequency.
            lastOp = r->getLastOp(rsOplogName);
        } catch ( SocketException & ) {
            HostAndPort host = r->getHost();
            log() << "connection lost to " << host.toString() <<
                "; is your tcp keepalive interval set appropriately?";
            if ( !r->connect(host) ) {
                error() << "initial sync couldn't connect to " << host.toString();
                throw;
            }
            // retry
            lastOp = r->getLastOp(rsOplogName);
        }

        if (lastOp.isEmpty()) {
            error() << "initial sync lastOp is empty";
            sleepsecs(1);
            return false;
        }

        Timestamp stopOpTime = lastOp["ts"].timestamp();

        // If we already have what we need then return.
        if (stopOpTime == startOpTime)
            return true;

        verify( !stopOpTime.isNull() );
        verify( stopOpTime > startOpTime );

        // apply till stopOpTime
        try {
            LOG(2) << "Applying oplog entries from " << startOpTime.toStringPretty()
                   << " until " << stopOpTime.toStringPretty();
            syncer.oplogApplication(ctx, stopOpTime);

            if (inShutdown()) {
                return false;
            }
        }
        catch (const DBException&) {
            warning() << "initial sync failed during oplog application phase, and will retry";

            getGlobalReplicationCoordinator()->resetMyLastOptime();
            BackgroundSync::get()->setLastAppliedHash(0);

            sleepsecs(5);
            return false;
        }

        return true;
    }

    void _tryToApplyOpWithRetry(OperationContext* txn, InitialSync* init, const BSONObj& op) {
        try {
            if (!init->syncApply(txn, op)) {
                bool retry;
                {
                    ScopedTransaction transaction(txn, MODE_X);
                    Lock::GlobalWrite lk(txn->lockState());
                    retry = init->shouldRetry(txn, op);
                }

                if (retry) {
                    // retry
                    if (!init->syncApply(txn, op)) {
                        uasserted(28542,
                                  str::stream() << "During initial sync, failed to apply op: "
                                                << op);
                    }
                }
                // If shouldRetry() returns false, fall through.
                // This can happen if the document that was moved and missed by Cloner
                // subsequently got deleted and no longer exists on the Sync Target at all
            }
        }
        catch (const DBException& e) {
            error() << "exception: " << causedBy(e) << " on: " << op.toString();
            uasserted(28541,
                      str::stream() << "During initial sync, failed to apply op: "
                                    << op);
        }
    }

    /**
     * Do the initial sync for this member.  There are several steps to this process:
     *
     *     0. Add _initialSyncFlag to minValid collection to tell us to restart initial sync if we
     *        crash in the middle of this procedure
     *     1. Record start time.
     *     2. Clone.
     *     3. Set minValid1 to sync target's latest op time.
     *     4. Apply ops from start to minValid1, fetching missing docs as needed.
     *     5. Set minValid2 to sync target's latest op time.
     *     6. Apply ops from minValid1 to minValid2.
     *     7. Build indexes.
     *     8. Set minValid3 to sync target's latest op time.
     *     9. Apply ops from minValid2 to minValid3.
          10. Cleanup minValid collection: remove _initialSyncFlag field, set ts to minValid3 OpTime
     *
     * At that point, initial sync is finished.  Note that the oplog from the sync target is applied
     * three times: step 4, 6, and 8.  4 may involve refetching, 6 should not.  By the end of 6,
     * this member should have consistent data.  8 is "cosmetic," it is only to get this member
     * closer to the latest op time before it can transition out of startup state
     *
     * Returns a Status with ErrorCode::ShutdownInProgress if the node enters shutdown,
     * ErrorCode::InitialSyncOplogSourceMissing if the node fails to find an sync source, Status::OK
     * if everything worked, and ErrorCode::InitialSyncFailure for all other error cases.
     */
    Status _initialSync() {

        log() << "initial sync pending";

        BackgroundSync* bgsync(BackgroundSync::get());
        OperationContextImpl txn;
        ReplicationCoordinator* replCoord(getGlobalReplicationCoordinator());

        truncateAndResetOplog(&txn, replCoord, bgsync);

        OplogReader r;
        Timestamp now(Milliseconds(curTimeMillis64()).total_seconds(), 0);

        while (r.getHost().empty()) {
            // We must prime the sync source selector so that it considers all candidates regardless
            // of oplog position, by passing in "now" as the last op fetched time.
            r.connectToSyncSource(&txn, now, replCoord);
            if (r.getHost().empty()) {
                std::string msg =
                        "no valid sync sources found in current replset to do an initial sync";
                log() << msg;
                return Status(ErrorCodes::InitialSyncOplogSourceMissing, msg);
            }

            if (inShutdown()) {
                return Status(ErrorCodes::ShutdownInProgress, "shutting down");
            }
        }

        InitialSync init(bgsync);
        init.setHostname(r.getHost().toString());

        BSONObj lastOp = r.getLastOp(rsOplogName);
        if ( lastOp.isEmpty() ) {
            std::string msg = "initial sync couldn't read remote oplog";
            log() << msg;
            sleepsecs(15);
            return Status(ErrorCodes::InitialSyncFailure, msg);
        }

        // Add field to minvalid document to tell us to restart initial sync if we crash
        setInitialSyncFlag(&txn);

        log() << "initial sync drop all databases";
        dropAllDatabasesExceptLocal(&txn);

        log() << "initial sync clone all databases";

        list<string> dbs = r.conn()->getDatabaseNames();
        {
            // Clone admin database first, to catch schema errors.
            list<string>::iterator admin = std::find(dbs.begin(), dbs.end(), "admin");
            if (admin != dbs.end()) {
                dbs.splice(dbs.begin(), dbs, admin);
            }
        }

        Cloner cloner;
        if (!_initialSyncClone(&txn, cloner, r.conn()->getServerAddress(), dbs, true)) {
            return Status(ErrorCodes::InitialSyncFailure, "initial sync failed data cloning");
        }

        log() << "initial sync data copy, starting syncup";

        // prime oplog
        _tryToApplyOpWithRetry(&txn, &init, lastOp);
        std::deque<BSONObj> ops;
        ops.push_back(lastOp);

        Timestamp lastOptime = writeOpsToOplog(&txn, ops);
        ReplClientInfo::forClient(txn.getClient()).setLastOp(lastOptime);
        replCoord->setMyLastOptime(lastOptime);
        setNewOptime(lastOptime);

        std::string msg = "oplog sync 1 of 3";
        log() << msg;
        if (!_initialSyncApplyOplog(&txn, init, &r)) {
            return Status(ErrorCodes::InitialSyncFailure,
                          str::stream() << "initial sync failed: " << msg);
        }

        // Now we sync to the latest op on the sync target _again_, as we may have recloned ops
        // that were "from the future" compared with minValid. During this second application,
        // nothing should need to be recloned.
        msg = "oplog sync 2 of 3";
        log() << msg;
        if (!_initialSyncApplyOplog(&txn, init, &r)) {
            return Status(ErrorCodes::InitialSyncFailure,
                          str::stream() << "initial sync failed: " << msg);
        }
        // data should now be consistent

        msg = "initial sync building indexes";
        log() << msg;
        if (!_initialSyncClone(&txn, cloner, r.conn()->getServerAddress(), dbs, false)) {
            return Status(ErrorCodes::InitialSyncFailure,
                          str::stream() << "initial sync failed: " << msg);
        }

        msg = "oplog sync 3 of 3";
        log() << msg;

        SyncTail tail(bgsync, multiSyncApply);
        if (!_initialSyncApplyOplog(&txn, tail, &r)) {
            return Status(ErrorCodes::InitialSyncFailure,
                          str::stream() << "initial sync failed: " << msg);
        }

        // ---------

        Status status = getGlobalAuthorizationManager()->initialize(&txn);
        if (!status.isOK()) {
            warning() << "Failed to reinitialize auth data after initial sync. " << status;
            return status;
        }

        log() << "initial sync finishing up";

        {
            ScopedTransaction scopedXact(&txn, MODE_IX);
            AutoGetDb autodb(&txn, "local", MODE_X);
            Timestamp lastOpTimeWritten(getGlobalReplicationCoordinator()->getMyLastOptime());
            log() << "set minValid=" << lastOpTimeWritten;

            // Initial sync is now complete.  Flag this by setting minValid to the last thing
            // we synced.
            WriteUnitOfWork wunit(&txn);
            setMinValid(&txn, lastOpTimeWritten);

            // Clear the initial sync flag.
            clearInitialSyncFlag(&txn);
            BackgroundSync::get()->setInitialSyncRequestedFlag(false);
            wunit.commit();
        }

        // If we just cloned & there were no ops applied, we still want the primary to know where
        // we're up to
        bgsync->notify(&txn);

        log() << "initial sync done";
        return Status::OK();
    }
} // namespace

    void syncDoInitialSync() {
        static const int maxFailedAttempts = 10;

        {
            OperationContextImpl txn;
            createOplog(&txn);
        }

        int failedAttempts = 0;
        while ( failedAttempts < maxFailedAttempts ) {
            try {
                // leave loop when successful
                Status status = _initialSync();
                if (status.isOK()) {
                    break;
                }
                if (status == ErrorCodes::InitialSyncOplogSourceMissing) {
                    sleepsecs(1);
                    return;
                }
            }
            catch(const DBException& e) {
                error() << e ;
                // Return if in shutdown
                if (inShutdown()) {
                    return;
                }
            }

            if (inShutdown()) {
                return;
            }

            error() << "initial sync attempt failed, "
                    << (maxFailedAttempts - ++failedAttempts) << " attempts remaining";
            sleepsecs(5);
        }

        // No need to print a stack
        if (failedAttempts >= maxFailedAttempts) {
            severe() << "The maximum number of retries have been exhausted for initial sync.";
            fassertFailedNoTrace(16233);
        }
    }

} // namespace repl
} // namespace mongo