2010-04-13 17:45:01 +02:00
|
|
|
// repl_block.h - blocking on writes for replication
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2010-04-27 21:33:27 +02:00
|
|
|
#include "../pch.h"
|
2010-04-13 17:45:01 +02:00
|
|
|
#include "client.h"
|
|
|
|
#include "curop.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
local.slaves - current location for all slaves
|
2011-01-04 06:40:41 +01:00
|
|
|
|
2010-04-13 17:45:01 +02:00
|
|
|
*/
|
|
|
|
namespace mongo {
|
2011-01-04 06:40:41 +01:00
|
|
|
|
2011-01-18 04:11:57 +01:00
|
|
|
void updateSlaveLocation( CurOp& curop, const char * oplog_ns , OpTime lastOp );
|
|
|
|
|
|
|
|
/** @return true if op has made it to w servers */
|
2010-04-13 17:45:01 +02:00
|
|
|
bool opReplicatedEnough( OpTime op , int w );
|
2011-01-18 04:11:57 +01:00
|
|
|
|
2010-04-13 17:45:01 +02:00
|
|
|
void resetSlaveCache();
|
2010-12-15 22:46:32 +01:00
|
|
|
unsigned getSlaveCount();
|
2010-04-13 17:45:01 +02:00
|
|
|
}
|