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
|
// tests sharding with replica sets
s = new ShardingTest( "rs1" , 3 /* numShards */, 1 /* verboseLevel */, 2 /* numMongos */, { rs : true , chunksize : 1 } )
s.adminCommand( { enablesharding : "test" } );
s.config.settings.update( { _id: "balancer" }, { $set : { _waitForDelete : true } } , true );
s.config.settings.find().forEach( printjson )
db = s.getDB( "test" );
bigString = ""
while ( bigString.length < 10000 )
bigString += "asdasdasdasdadasdasdasdasdasdasdasdasda";
inserted = 0;
num = 0;
while ( inserted < ( 20 * 1024 * 1024 ) ){
db.foo.insert( { _id : num++ , s : bigString , x : Math.random() } );
inserted += bigString.length;
}
db.getLastError();
s.adminCommand( { shardcollection : "test.foo" , key : { _id : 1 } } );
assert.lt( 20 , s.config.chunks.count() , "setup2" );
function diff1(){
var x = s.chunkCounts( "foo" );
var total = 0;
var min = 1000000000;
var max = 0;
for ( var sn in x ){
total += x[sn];
if ( x[sn] < min )
min = x[sn];
if ( x[sn] > max )
max = x[sn];
}
print( tojson(x) + " total: " + total + " min: " + min + " max: " + max )
return max - min;
}
assert.lt( 20 , diff1() , "big differential here" );
print( diff1() )
{
// quick test for SERVER-2686
var mydbs = db.getMongo().getDBs().databases;
for ( var i=0; i<mydbs.length; i++ ) {
assert( mydbs[i].name != "local" , "mongos listDatabases can't return local" );
}
}
assert.soon( function(){
var d = diff1();
return d < 5;
} , "balance didn't happen" , 1000 * 60 * 6 , 5000 );
jsTest.log("Stopping balancer");
s.stopBalancer();
jsTest.log("Balancer stopped, checking dbhashes");
for ( i=0; i<s._rs.length; i++ ){
r = s._rs[i];
r.test.awaitReplication();
x = r.test.getHashes( "test" );
print( r.url + "\t" + tojson( x ) )
for ( j=0; j<x.slaves.length; j++ )
assert.eq( x.master.md5 , x.slaves[j].md5 , "hashes not same for: " + r.url + " slave: " + j );
}
assert.eq( num , db.foo.find().count() , "C1" )
assert.eq( num , db.foo.find().itcount() , "C2" )
assert.eq( num , db.foo.find().sort( { _id : 1 } ).itcount() , "C3" )
assert.eq( num , db.foo.find().sort( { _id : -1 } ).itcount() , "C4" )
db.foo.ensureIndex( { x : 1 } )
assert.eq( num , db.foo.find().sort( { x : 1 } ).itcount() , "C5" )
assert.eq( num , db.foo.find().sort( { x : -1 } ).itcount() , "C6" )
s.stop()
|