2010-06-11 23:16:58 +02:00
|
|
|
// d_writeback.cpp
|
2010-06-11 21:12:25 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2010-06-11 23:37:24 +02:00
|
|
|
#include "pch.h"
|
2010-06-11 21:12:25 +02:00
|
|
|
|
|
|
|
#include "../db/commands.h"
|
|
|
|
#include "../db/jsobj.h"
|
|
|
|
#include "../db/dbmessage.h"
|
|
|
|
#include "../db/query.h"
|
|
|
|
|
|
|
|
#include "../client/connpool.h"
|
|
|
|
|
|
|
|
#include "../util/queue.h"
|
|
|
|
|
|
|
|
#include "shard.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
namespace mongo {
|
2010-09-20 19:43:20 +02:00
|
|
|
// a map from mongos's serverIDs to queues of "rejected" operations
|
|
|
|
// an operation is rejected if it targets data that does not live on this shard anymore
|
2010-09-20 19:20:25 +02:00
|
|
|
typedef map< string , BlockingQueue<BSONObj>* > WriteBackQueuesMap;
|
2010-06-11 21:12:25 +02:00
|
|
|
|
2010-09-20 19:20:25 +02:00
|
|
|
// 'writebackQueueLock' protects only the map itself, since each queue is syncrhonized.
|
|
|
|
static mongo::mutex writebackQueueLock("sharding:writebackQueueLock");
|
|
|
|
static WriteBackQueuesMap writebackQueues;
|
2010-06-11 21:12:25 +02:00
|
|
|
|
|
|
|
BlockingQueue<BSONObj>* getWritebackQueue( const string& remote ){
|
|
|
|
scoped_lock lk (writebackQueueLock );
|
2010-09-20 19:20:25 +02:00
|
|
|
BlockingQueue<BSONObj>*& q = writebackQueues[remote];
|
2010-06-11 21:12:25 +02:00
|
|
|
if ( ! q )
|
|
|
|
q = new BlockingQueue<BSONObj>();
|
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
|
|
|
void queueWriteBack( const string& remote , const BSONObj& o ){
|
|
|
|
getWritebackQueue( remote )->push( o );
|
|
|
|
}
|
|
|
|
|
2010-07-12 18:43:13 +02:00
|
|
|
// Note, this command will block until there is something to WriteBack
|
2010-06-11 21:12:25 +02:00
|
|
|
class WriteBackCommand : public Command {
|
|
|
|
public:
|
|
|
|
virtual LockType locktype() const { return NONE; }
|
2010-08-16 21:47:40 +02:00
|
|
|
virtual bool slaveOk() const { return true; }
|
2010-06-11 21:12:25 +02:00
|
|
|
virtual bool adminOnly() const { return true; }
|
|
|
|
|
|
|
|
WriteBackCommand() : Command( "writebacklisten" ){}
|
|
|
|
|
|
|
|
void help(stringstream& h) const { h<<"internal"; }
|
|
|
|
|
|
|
|
bool run(const string& , BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
|
|
|
|
BSONElement e = cmdObj.firstElement();
|
|
|
|
if ( e.type() != jstOID ){
|
|
|
|
errmsg = "need oid as first value";
|
|
|
|
return 0;
|
|
|
|
}
|
2010-09-20 19:43:20 +02:00
|
|
|
|
|
|
|
// get the command issuer's (a mongos) serverID
|
2010-06-11 21:12:25 +02:00
|
|
|
const OID id = e.__oid();
|
|
|
|
|
2010-09-20 19:20:25 +02:00
|
|
|
// the command issuer is blocked awaiting a response
|
|
|
|
// we want to do return at least at every 5 minutes so sockets don't timeout
|
2010-09-13 17:35:14 +02:00
|
|
|
BSONObj z;
|
|
|
|
if ( getWritebackQueue(id.str())->blockingPop( z, 5 * 60 /* 5 minutes */ ) ) {
|
2010-09-13 06:51:54 +02:00
|
|
|
log(1) << "WriteBackCommand got : " << z << endl;
|
|
|
|
result.append( "data" , z );
|
|
|
|
}
|
2010-09-13 17:35:14 +02:00
|
|
|
else {
|
2010-09-13 06:51:54 +02:00
|
|
|
result.appendBool( "noop" , true );
|
|
|
|
}
|
2010-06-11 21:12:25 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} writeBackCommand;
|
|
|
|
|
2010-09-20 19:20:25 +02:00
|
|
|
class WriteBacksQueuedCommand : public Command {
|
|
|
|
public:
|
|
|
|
virtual LockType locktype() const { return NONE; }
|
|
|
|
virtual bool slaveOk() const { return true; }
|
|
|
|
virtual bool adminOnly() const { return true; }
|
|
|
|
|
|
|
|
WriteBacksQueuedCommand() : Command( "writeBackQueued" ){}
|
|
|
|
|
|
|
|
void help(stringstream& help) const {
|
|
|
|
help << "Returns whether there are operations in the writeback queue at the time the command was called. "
|
|
|
|
<< "This is an internal comand";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool run(const string& , BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
bool hasOpsQueued = false;
|
|
|
|
{
|
|
|
|
scoped_lock lk(writebackQueueLock );
|
|
|
|
for ( WriteBackQueuesMap::const_iterator it = writebackQueues.begin(); it != writebackQueues.end(); ++it ){
|
|
|
|
const BlockingQueue<BSONObj>* queue = it->second;
|
|
|
|
if (! queue->empty() ){
|
|
|
|
hasOpsQueued = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result.appendBool( "hasOpsQueued" , hasOpsQueued );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} writeBacksQueuedCommand;
|
|
|
|
|
|
|
|
} // namespace mongo
|