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
|
// auto2.js
s = new ShardingTest( "auto2" , 2 , 5 , 2 );
s.adminCommand( { enablesharding : "test" } );
s.adminCommand( { shardcollection : "test.foo" , key : { num : 1 } } );
bigString = "";
while ( bigString.length < 1024 * 50 )
bigString += "asocsancdnsjfnsdnfsjdhfasdfasdfasdfnsadofnsadlkfnsaldknfsad";
db = s.getDB( "test" )
coll = db.foo;
var i=0;
for ( j=0; j<30; j++ ){
print( "j:" + j + " : " +
Date.timeFunc(
function(){
for ( var k=0; k<100; k++ ){
coll.save( { num : i , s : bigString } );
i++;
}
}
) );
}
assert.eq( i , j * 100 , "setup" );
s.adminCommand( "connpoolsync" );
db.getLastError();
print( "done inserting data" );
print( "datasize: " + tojson( s.getServer( "test" ).getDB( "admin" ).runCommand( { datasize : "test.foo" } ) ) );
s.printChunks();
function doCountsGlobal(){
counta = s._connections[0].getDB( "test" ).foo.count();
countb = s._connections[1].getDB( "test" ).foo.count();
return counta + countb;
}
doCountsGlobal()
assert( counta > 0 , "diff1" );
assert( countb > 0 , "diff2" );
print( "checkpoint B" )
var missing = [];
for ( i=0; i<j*100; i++ ){
var x = coll.findOne( { num : i } );
if ( ! x ){
missing.push( i );
print( "can't find: " + i );
sleep( 5000 );
x = coll.findOne( { num : i } );
if ( ! x ){
print( "still can't find: " + i );
for ( var zzz=0; zzz<s._connections.length; zzz++ ){
if ( s._connections[zzz].getDB( "test" ).foo.findOne( { num : i } ) ){
print( "found on wrong server: " + s._connections[zzz] );
}
}
}
}
}
s.printChangeLog();
print( "missing: " + tojson( missing ) )
assert.soon( function(z){ return doCountsGlobal() == j * 100; } , "from each a:" + counta + " b:" + countb + " i:" + i );
print( "checkpoint B.a" )
s.printChunks();
assert.eq( j * 100 , coll.find().limit(100000000).itcount() , "itcount A" );
assert.eq( j * 100 , counta + countb , "from each 2 a:" + counta + " b:" + countb + " i:" + i );
assert( missing.length == 0 , "missing : " + tojson( missing ) );
print( "checkpoint C" )
assert( Array.unique( s.config.chunks.find().toArray().map( function(z){ return z.shard; } ) ).length == 2 , "should be using both servers" );
for ( i=0; i<100; i++ ){
cursor = coll.find().batchSize(5);
cursor.next();
cursor = null;
gc();
}
print( "checkpoint D")
// test not-sharded cursors
db = s.getDB( "test2" );
t = db.foobar;
for ( i =0; i<100; i++ )
t.save( { _id : i } );
for ( i=0; i<100; i++ ){
t.find().batchSize( 2 ).next();
assert.lt( 0 , db.runCommand( "cursorInfo" ).totalOpen , "cursor1" );
gc();
}
for ( i=0; i<100; i++ ){
gc();
}
assert.eq( 0 , db.runCommand( "cursorInfo" ).totalOpen , "cursor2" );
print( "checkpoint E")
x = db.runCommand( "connPoolStats" );
for ( host in x.hosts ){
var foo = x.hosts[host];
assert.lt( 0 , foo.available , "pool: " + host );
}
print( "checkpoint F")
assert( t.findOne() , "check close 0" );
for ( i=0; i<20; i++ ){
temp = new Mongo( db.getMongo().host )
temp2 = temp.getDB( "test2" ).foobar;
assert.eq( temp._fullNameSpace , t._fullNameSpace , "check close 1" );
assert( temp2.findOne() , "check close 2" );
temp = null;
gc();
}
print( "checkpoint G")
assert.throws( function(){ s.getDB( "test" ).foo.find().sort( { s : 1 } ).forEach( printjsononeline ) } )
print( "checkpoint H")
s.stop();
|