2009-04-22 21:58:12 +02:00
|
|
|
// s/commands_public.cpp
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "../util/message.h"
|
|
|
|
#include "../db/dbmessage.h"
|
|
|
|
#include "../client/connpool.h"
|
2009-11-04 04:56:49 +01:00
|
|
|
#include "../client/parallel.h"
|
2009-04-22 21:58:12 +02:00
|
|
|
#include "../db/commands.h"
|
|
|
|
|
|
|
|
#include "config.h"
|
2009-08-31 22:31:50 +02:00
|
|
|
#include "chunk.h"
|
2009-04-22 21:58:12 +02:00
|
|
|
#include "strategy.h"
|
|
|
|
|
|
|
|
namespace mongo {
|
|
|
|
|
|
|
|
namespace dbgrid_pub_cmds {
|
|
|
|
|
|
|
|
class PublicGridCommand : public Command {
|
|
|
|
public:
|
|
|
|
PublicGridCommand( const char * n ) : Command( n ){
|
|
|
|
}
|
|
|
|
virtual bool slaveOk(){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
virtual bool adminOnly() {
|
|
|
|
return false;
|
|
|
|
}
|
2010-02-26 20:38:51 +01:00
|
|
|
|
|
|
|
// all grid commands are designed not to lock
|
|
|
|
virtual LockType locktype(){ return NONE; }
|
|
|
|
|
2009-09-03 23:19:32 +02:00
|
|
|
protected:
|
|
|
|
string getDBName( string ns ){
|
|
|
|
return ns.substr( 0 , ns.size() - 5 );
|
|
|
|
}
|
2009-09-11 22:14:14 +02:00
|
|
|
|
2009-09-03 23:19:32 +02:00
|
|
|
bool passthrough( DBConfig * conf, const BSONObj& cmdObj , BSONObjBuilder& result ){
|
|
|
|
ScopedDbConnection conn( conf->getPrimary() );
|
|
|
|
BSONObj res;
|
|
|
|
bool ok = conn->runCommand( conf->getName() , cmdObj , res );
|
|
|
|
result.appendElements( res );
|
2009-09-11 22:14:14 +02:00
|
|
|
conn.done();
|
2009-09-03 23:19:32 +02:00
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-09-04 16:24:32 +02:00
|
|
|
class NotAllowedOnShardedCollectionCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
NotAllowedOnShardedCollectionCmd( const char * n ) : PublicGridCommand( n ){}
|
|
|
|
|
|
|
|
virtual string getFullNS( const string& dbName , const BSONObj& cmdObj ) = 0;
|
|
|
|
|
|
|
|
virtual bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
|
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string fullns = getFullNS( dbName , cmdObj );
|
|
|
|
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
return passthrough( conf , cmdObj , result );
|
|
|
|
}
|
|
|
|
errmsg = "can't do command: " + name + " on sharded collection";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// ----
|
2009-04-22 21:58:12 +02:00
|
|
|
|
2009-11-09 18:42:20 +01:00
|
|
|
class DropCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
DropCmd() : PublicGridCommand( "drop" ){}
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
|
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
|
|
|
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
log() << "DROP: " << fullns << endl;
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
return passthrough( conf , cmdObj , result );
|
|
|
|
}
|
|
|
|
|
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
2009-12-28 22:43:43 +01:00
|
|
|
massert( 10418 , "how could chunk manager be null!" , cm );
|
2009-11-09 18:42:20 +01:00
|
|
|
|
|
|
|
cm->drop();
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} dropCmd;
|
|
|
|
|
2009-12-02 22:36:46 +01:00
|
|
|
class DropDBCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
DropDBCmd() : PublicGridCommand( "dropDatabase" ){}
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
|
|
|
|
BSONElement e = cmdObj.firstElement();
|
|
|
|
|
|
|
|
if ( ! e.isNumber() || e.number() != 1 ){
|
|
|
|
errmsg = "invalid params";
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
string dbName = getDBName( ns );
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
log() << "DROP DATABASE: " << dbName << endl;
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() ){
|
|
|
|
log(1) << " passing though drop database for: " << dbName << endl;
|
|
|
|
return passthrough( conf , cmdObj , result );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! conf->dropDatabase( errmsg ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
result.append( "dropped" , dbName );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} dropDBCmd;
|
|
|
|
|
2009-04-22 21:58:12 +02:00
|
|
|
class CountCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
CountCmd() : PublicGridCommand("count") { }
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
|
2009-09-03 23:19:32 +02:00
|
|
|
string dbName = getDBName( ns );
|
2009-04-22 21:58:12 +02:00
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
|
|
|
|
|
|
|
BSONObj filter = cmdObj["query"].embeddedObject();
|
2009-09-03 23:19:32 +02:00
|
|
|
|
2009-04-22 21:58:12 +02:00
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
2009-09-01 18:17:41 +02:00
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
2009-04-22 21:58:12 +02:00
|
|
|
ScopedDbConnection conn( conf->getPrimary() );
|
|
|
|
result.append( "n" , (double)conn->count( fullns , filter ) );
|
|
|
|
conn.done();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-08-31 22:31:50 +02:00
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
2009-12-28 22:43:43 +01:00
|
|
|
massert( 10419 , "how could chunk manager be null!" , cm );
|
2009-04-22 21:58:12 +02:00
|
|
|
|
2009-08-31 22:31:50 +02:00
|
|
|
vector<Chunk*> chunks;
|
|
|
|
cm->getChunksForQuery( chunks , filter );
|
2009-04-22 21:58:12 +02:00
|
|
|
|
|
|
|
unsigned long long total = 0;
|
2009-08-31 22:31:50 +02:00
|
|
|
for ( vector<Chunk*>::iterator i = chunks.begin() ; i != chunks.end() ; i++ ){
|
|
|
|
Chunk * c = *i;
|
2009-10-29 21:07:06 +01:00
|
|
|
total += c->countObjects( filter );
|
2009-04-22 21:58:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
result.append( "n" , (double)total );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} countCmd;
|
2009-09-03 23:19:32 +02:00
|
|
|
|
2010-01-28 03:41:50 +01:00
|
|
|
class CollectionStats : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
CollectionStats() : PublicGridCommand("collstats") { }
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
|
|
|
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
result.appendBool("sharded", false);
|
|
|
|
return passthrough( conf , cmdObj , result);
|
|
|
|
}
|
|
|
|
result.appendBool("sharded", true);
|
|
|
|
|
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
|
|
|
massert( 12594 , "how could chunk manager be null!" , cm );
|
|
|
|
|
|
|
|
set<string> servers;
|
|
|
|
cm->getAllServers(servers);
|
2010-02-16 16:03:12 +01:00
|
|
|
|
2010-01-28 03:41:50 +01:00
|
|
|
BSONObjBuilder shardStats;
|
2010-02-16 16:03:12 +01:00
|
|
|
long long count=0;
|
|
|
|
long long size=0;
|
|
|
|
long long storageSize=0;
|
2010-01-28 03:41:50 +01:00
|
|
|
int nindexes=0;
|
|
|
|
for ( set<string>::iterator i=servers.begin(); i!=servers.end(); i++ ){
|
|
|
|
ScopedDbConnection conn( *i );
|
|
|
|
BSONObj res;
|
|
|
|
if ( ! conn->runCommand( dbName , cmdObj , res ) ){
|
|
|
|
errmsg = "failed on shard: " + res.toString();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
conn.done();
|
|
|
|
|
2010-02-16 16:03:12 +01:00
|
|
|
count += res["count"].numberLong();
|
|
|
|
size += res["size"].numberLong();
|
|
|
|
storageSize += res["storageSize"].numberLong();
|
2010-01-28 03:41:50 +01:00
|
|
|
|
|
|
|
if (nindexes)
|
|
|
|
massert(12595, "nindexes should be the same on all shards!", nindexes == res["nindexes"].numberInt());
|
|
|
|
else
|
|
|
|
nindexes = res["nindexes"].numberInt();
|
|
|
|
|
|
|
|
shardStats.append(*i, res);
|
|
|
|
}
|
|
|
|
|
2010-01-28 03:53:23 +01:00
|
|
|
result.append("ns", fullns);
|
2010-03-01 23:14:23 +01:00
|
|
|
result.appendNumber("count", count);
|
|
|
|
result.appendNumber("size", size);
|
|
|
|
result.appendNumber("storageSize", storageSize);
|
2010-01-28 03:41:50 +01:00
|
|
|
result.append("nindexes", nindexes);
|
|
|
|
|
|
|
|
result.append("nchunks", cm->numChunks());
|
|
|
|
result.append("shards", shardStats.obj());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} collectionStatsCmd;
|
|
|
|
|
2010-02-09 18:30:04 +01:00
|
|
|
class FindAndModifyCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
FindAndModifyCmd() : PublicGridCommand("findandmodify") { }
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
|
|
|
|
|
|
|
BSONObj filter = cmdObj.getObjectField("query");
|
|
|
|
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
return passthrough( conf , cmdObj , result);
|
|
|
|
}
|
|
|
|
|
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
|
|
|
massert( 13002 , "how could chunk manager be null!" , cm );
|
|
|
|
|
|
|
|
vector<Chunk*> chunks;
|
|
|
|
cm->getChunksForQuery( chunks , filter );
|
|
|
|
|
|
|
|
BSONObj sort = cmdObj.getObjectField("sort");
|
|
|
|
if (!sort.isEmpty()){
|
|
|
|
ShardKeyPattern& sk = cm->getShardKey();
|
|
|
|
{
|
|
|
|
BSONObjIterator k (sk.key());
|
|
|
|
BSONObjIterator s (sort);
|
|
|
|
bool good = true;
|
|
|
|
while (k.more()){
|
|
|
|
if (!s.more()){
|
|
|
|
good = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONElement ke = k.next();
|
|
|
|
BSONElement se = s.next();
|
|
|
|
|
|
|
|
// TODO consider values when we support compound keys
|
|
|
|
if (strcmp(ke.fieldName(), se.fieldName()) != 0){
|
|
|
|
good = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uassert(13001, "Sort must match shard key for sharded findandmodify", good);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(chunks.begin(), chunks.end(), ChunkCmp(sort));
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( vector<Chunk*>::iterator i = chunks.begin() ; i != chunks.end() ; i++ ){
|
|
|
|
Chunk * c = *i;
|
|
|
|
|
|
|
|
ScopedDbConnection conn( c->getShard() );
|
|
|
|
BSONObj res;
|
|
|
|
bool ok = conn->runCommand( conf->getName() , fixCmdObj(cmdObj, c) , res );
|
|
|
|
conn.done();
|
|
|
|
|
|
|
|
if (ok || (strcmp(res["errmsg"].valuestrsafe(), "No matching object found") != 0)){
|
|
|
|
result.appendElements(res);
|
|
|
|
return ok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
BSONObj fixCmdObj(const BSONObj& cmdObj, const Chunk* chunk){
|
|
|
|
assert(chunk);
|
|
|
|
|
|
|
|
BSONObjBuilder b;
|
|
|
|
BSONObjIterator i(cmdObj);
|
|
|
|
bool foundQuery = false;
|
|
|
|
while (i.more()){
|
|
|
|
BSONElement e = i.next();
|
|
|
|
if (strcmp(e.fieldName(), "query") != 0){
|
|
|
|
b.append(e);
|
|
|
|
}else{
|
|
|
|
foundQuery = true;
|
|
|
|
b.append("query", ClusteredCursor::concatQuery(e.embeddedObjectUserCheck(), chunk->getFilter()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!foundQuery)
|
|
|
|
b.append("query", chunk->getFilter());
|
|
|
|
|
|
|
|
return b.obj();
|
|
|
|
}
|
|
|
|
|
|
|
|
} findAndModifyCmd;
|
|
|
|
|
2009-09-04 16:24:32 +02:00
|
|
|
class ConvertToCappedCmd : public NotAllowedOnShardedCollectionCmd {
|
2009-09-03 23:19:32 +02:00
|
|
|
public:
|
2009-09-04 16:24:32 +02:00
|
|
|
ConvertToCappedCmd() : NotAllowedOnShardedCollectionCmd("convertToCapped"){}
|
|
|
|
|
|
|
|
virtual string getFullNS( const string& dbName , const BSONObj& cmdObj ){
|
|
|
|
return dbName + "." + cmdObj.firstElement().valuestrsafe();
|
2009-09-03 23:19:32 +02:00
|
|
|
}
|
2009-09-04 16:24:32 +02:00
|
|
|
|
2009-09-03 23:19:32 +02:00
|
|
|
} convertToCappedCmd;
|
2009-09-04 17:00:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
class GroupCmd : public NotAllowedOnShardedCollectionCmd {
|
|
|
|
public:
|
|
|
|
GroupCmd() : NotAllowedOnShardedCollectionCmd("group"){}
|
|
|
|
|
|
|
|
virtual string getFullNS( const string& dbName , const BSONObj& cmdObj ){
|
|
|
|
return dbName + "." + cmdObj.firstElement().embeddedObjectUserCheck()["ns"].valuestrsafe();
|
|
|
|
}
|
|
|
|
|
|
|
|
} groupCmd;
|
|
|
|
|
2009-09-12 19:01:34 +02:00
|
|
|
class DistinctCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
DistinctCmd() : PublicGridCommand("distinct"){}
|
|
|
|
virtual void help( stringstream &help ) const {
|
|
|
|
help << "{ distinct : 'collection name' , key : 'a.b' }";
|
|
|
|
}
|
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
2009-11-03 16:35:48 +01:00
|
|
|
|
2009-09-12 19:01:34 +02:00
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
2009-09-04 17:00:43 +02:00
|
|
|
|
2009-09-12 19:01:34 +02:00
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
return passthrough( conf , cmdObj , result );
|
|
|
|
}
|
|
|
|
|
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
2009-12-28 22:43:43 +01:00
|
|
|
massert( 10420 , "how could chunk manager be null!" , cm );
|
2009-09-12 19:01:34 +02:00
|
|
|
|
|
|
|
vector<Chunk*> chunks;
|
|
|
|
cm->getChunksForQuery( chunks , BSONObj() );
|
|
|
|
|
|
|
|
set<BSONObj,BSONObjCmp> all;
|
|
|
|
int size = 32;
|
|
|
|
|
|
|
|
for ( vector<Chunk*>::iterator i = chunks.begin() ; i != chunks.end() ; i++ ){
|
|
|
|
Chunk * c = *i;
|
|
|
|
|
|
|
|
ScopedDbConnection conn( c->getShard() );
|
|
|
|
BSONObj res;
|
|
|
|
bool ok = conn->runCommand( conf->getName() , cmdObj , res );
|
|
|
|
conn.done();
|
|
|
|
|
|
|
|
if ( ! ok ){
|
|
|
|
result.appendElements( res );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONObjIterator it( res["values"].embeddedObjectUserCheck() );
|
|
|
|
while ( it.more() ){
|
|
|
|
BSONElement nxt = it.next();
|
|
|
|
BSONObjBuilder temp(32);
|
|
|
|
temp.appendAs( nxt , "x" );
|
|
|
|
all.insert( temp.obj() );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONObjBuilder b( size );
|
|
|
|
int n=0;
|
|
|
|
for ( set<BSONObj,BSONObjCmp>::iterator i = all.begin() ; i != all.end(); i++ ){
|
|
|
|
b.appendAs( i->firstElement() , b.numStr( n++ ).c_str() );
|
|
|
|
}
|
|
|
|
|
|
|
|
result.appendArray( "values" , b.obj() );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} disinctCmd;
|
2009-11-03 16:35:48 +01:00
|
|
|
|
|
|
|
class MRCmd : public PublicGridCommand {
|
|
|
|
public:
|
|
|
|
MRCmd() : PublicGridCommand( "mapreduce" ){}
|
2009-11-03 17:40:00 +01:00
|
|
|
|
|
|
|
string getTmpName( const string& coll ){
|
|
|
|
static int inc = 1;
|
|
|
|
stringstream ss;
|
|
|
|
ss << "tmp.mrs." << coll << "_" << time(0) << "_" << inc++;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONObj fixForShards( const BSONObj& orig , const string& output ){
|
|
|
|
BSONObjBuilder b;
|
|
|
|
BSONObjIterator i( orig );
|
|
|
|
while ( i.more() ){
|
|
|
|
BSONElement e = i.next();
|
|
|
|
string fn = e.fieldName();
|
|
|
|
if ( fn == "map" ||
|
|
|
|
fn == "mapreduce" ||
|
|
|
|
fn == "reduce" ||
|
|
|
|
fn == "query" ||
|
|
|
|
fn == "sort" ||
|
|
|
|
fn == "verbose" ){
|
|
|
|
b.append( e );
|
|
|
|
}
|
|
|
|
else if ( fn == "keeptemp" ||
|
|
|
|
fn == "out" ||
|
|
|
|
fn == "finalize" ){
|
|
|
|
// we don't want to copy these
|
|
|
|
}
|
|
|
|
else {
|
2009-12-28 22:43:43 +01:00
|
|
|
uassert( 10177 , (string)"don't know mr field: " + fn , 0 );
|
2009-11-03 17:40:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
b.append( "out" , output );
|
|
|
|
return b.obj();
|
|
|
|
}
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool){
|
2009-11-03 20:44:41 +01:00
|
|
|
Timer t;
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
string dbName = getDBName( ns );
|
|
|
|
string collection = cmdObj.firstElement().valuestrsafe();
|
|
|
|
string fullns = dbName + "." + collection;
|
|
|
|
|
|
|
|
DBConfig * conf = grid.getDBConfig( dbName , false );
|
|
|
|
|
|
|
|
if ( ! conf || ! conf->isShardingEnabled() || ! conf->isSharded( fullns ) ){
|
|
|
|
return passthrough( conf , cmdObj , result );
|
|
|
|
}
|
|
|
|
|
2009-11-04 03:28:27 +01:00
|
|
|
BSONObjBuilder timingBuilder;
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
ChunkManager * cm = conf->getChunkManager( fullns );
|
|
|
|
|
|
|
|
BSONObj q;
|
|
|
|
if ( cmdObj["query"].type() == Object ){
|
|
|
|
q = cmdObj["query"].embeddedObjectUserCheck();
|
|
|
|
}
|
|
|
|
|
|
|
|
vector<Chunk*> chunks;
|
|
|
|
cm->getChunksForQuery( chunks , q );
|
|
|
|
|
2009-11-03 17:40:00 +01:00
|
|
|
const string shardedOutputCollection = getTmpName( collection );
|
2009-11-04 03:28:27 +01:00
|
|
|
|
2009-11-03 17:40:00 +01:00
|
|
|
BSONObj shardedCommand = fixForShards( cmdObj , shardedOutputCollection );
|
2009-11-04 03:28:27 +01:00
|
|
|
|
|
|
|
BSONObjBuilder finalCmd;
|
|
|
|
finalCmd.append( "mapreduce.shardedfinish" , cmdObj );
|
|
|
|
finalCmd.append( "shardedOutputCollection" , shardedOutputCollection );
|
2009-11-03 16:35:48 +01:00
|
|
|
|
2009-11-04 04:56:49 +01:00
|
|
|
list< shared_ptr<Future::CommandResult> > futures;
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
for ( vector<Chunk*>::iterator i = chunks.begin() ; i != chunks.end() ; i++ ){
|
|
|
|
Chunk * c = *i;
|
2009-11-04 04:56:49 +01:00
|
|
|
futures.push_back( Future::spawnCommand( c->getShard() , dbName , shardedCommand ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
BSONObjBuilder shardresults;
|
|
|
|
for ( list< shared_ptr<Future::CommandResult> >::iterator i=futures.begin(); i!=futures.end(); i++ ){
|
|
|
|
shared_ptr<Future::CommandResult> res = *i;
|
|
|
|
if ( ! res->join() ){
|
2009-11-03 16:35:48 +01:00
|
|
|
errmsg = "mongod mr failed: ";
|
2009-11-04 04:56:49 +01:00
|
|
|
errmsg += res->result().toString();
|
2009-11-03 16:35:48 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2009-11-04 04:56:49 +01:00
|
|
|
shardresults.append( res->getServer() , res->result() );
|
2009-11-03 16:35:48 +01:00
|
|
|
}
|
|
|
|
|
2009-11-04 03:28:27 +01:00
|
|
|
finalCmd.append( "shards" , shardresults.obj() );
|
|
|
|
timingBuilder.append( "shards" , t.millis() );
|
|
|
|
|
|
|
|
Timer t2;
|
2009-11-03 16:35:48 +01:00
|
|
|
ScopedDbConnection conn( conf->getPrimary() );
|
|
|
|
BSONObj finalResult;
|
2009-11-04 03:28:27 +01:00
|
|
|
if ( ! conn->runCommand( dbName , finalCmd.obj() , finalResult ) ){
|
2009-11-03 16:35:48 +01:00
|
|
|
errmsg = "final reduce failed: ";
|
|
|
|
errmsg += finalResult.toString();
|
|
|
|
return 0;
|
|
|
|
}
|
2009-11-04 03:28:27 +01:00
|
|
|
timingBuilder.append( "final" , t2.millis() );
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
result.appendElements( finalResult );
|
2009-11-03 20:44:41 +01:00
|
|
|
result.append( "timeMillis" , t.millis() );
|
2009-11-04 03:28:27 +01:00
|
|
|
result.append( "timing" , timingBuilder.obj() );
|
|
|
|
|
2009-11-03 16:35:48 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} mrCmd;
|
2009-04-22 21:58:12 +02:00
|
|
|
}
|
|
|
|
}
|