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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
// mostly for testing mongos w/replica sets
s = new ShardingTest( "rs2" , 2 , 1 , 1 , { rs : true , chunksize : 1 } )
db = s.getDB( "test" )
t = db.foo
// -------------------------------------------------------------------------------------------
// ---------- test that config server updates when replica set config changes ----------------
// -------------------------------------------------------------------------------------------
db.foo.save( { _id : 5 ,x : 17 } )
assert.eq( 1 , db.foo.count() );
s.config.databases.find().forEach( printjson )
s.config.shards.find().forEach( printjson )
serverName = s.getServerName( "test" )
function countNodes(){
var x = s.config.shards.findOne( { _id : serverName } );
return x.host.split( "," ).length
}
assert.eq( 3 , countNodes() , "A1" )
rs = s.getRSEntry( serverName );
rs.test.add()
try {
rs.test.reInitiate();
}
catch ( e ){
// this os ok as rs's may close connections on a change of master
print( e );
}
assert.soon(
function(){
try {
printjson( rs.test.getMaster().getDB("admin").runCommand( "isMaster" ) )
s.config.shards.find().forEach( printjsononeline );
return countNodes() == 4;
}
catch ( e ){
print( e );
}
} , "waiting for config server to update" , 180 * 1000 , 1000 );
// cleanup after adding node
for ( i=0; i<5; i++ ){
try {
db.foo.findOne();
}
catch ( e ){}
}
// -------------------------------------------------------------------------------------------
// ---------- test routing to slaves ----------------
// -------------------------------------------------------------------------------------------
// --- not sharded ----
m = new Mongo( s.s.name );
ts = m.getDB( "test" ).foo
before = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
for ( i=0; i<10; i++ )
assert.eq( 17 , ts.findOne().x , "B1" )
m.setSlaveOk()
for ( i=0; i<10; i++ )
assert.eq( 17 , ts.findOne().x , "B2" )
after = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
printjson( before )
printjson( after )
assert.eq( before.query + 10 , after.query , "B3" )
// --- add more data ----
db.foo.ensureIndex( { x : 1 } )
for ( i=0; i<100; i++ ){
if ( i == 17 ) continue;
db.foo.insert( { x : i } )
}
db.getLastError( 3 , 10000 );
assert.eq( 100 , ts.count() , "B4" )
assert.eq( 100 , ts.find().itcount() , "B5" )
assert.eq( 100 , ts.find().batchSize(5).itcount() , "B6" )
t.find().batchSize(3).next();
gc(); gc(); gc();
// --- sharded ----
assert.eq( 100 , db.foo.count() , "C1" )
s.adminCommand( { enablesharding : "test" } );
s.adminCommand( { shardcollection : "test.foo" , key : { x : 1 } } );
assert.eq( 100 , t.count() , "C2" )
s.adminCommand( { split : "test.foo" , middle : { x : 50 } } )
db.printShardingStatus()
other = s.config.shards.findOne( { _id : { $ne : serverName } } );
s.adminCommand( { moveChunk : "test.foo" , find : { x : 10 } , to : other._id } )
assert.eq( 100 , t.count() , "C3" )
assert.eq( 50 , rs.test.getMaster().getDB( "test" ).foo.count() , "C4" )
// by non-shard key
m = new Mongo( s.s.name );
ts = m.getDB( "test" ).foo
before = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
for ( i=0; i<10; i++ )
assert.eq( 17 , ts.findOne( { _id : 5 } ).x , "D1" )
m.setSlaveOk()
for ( i=0; i<10; i++ )
assert.eq( 17 , ts.findOne( { _id : 5 } ).x , "D2" )
after = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
assert.eq( before.query + 10 , after.query , "D3" )
// by shard key
m = new Mongo( s.s.name );
ts = m.getDB( "test" ).foo
before = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
for ( i=0; i<10; i++ )
assert.eq( 57 , ts.findOne( { x : 57 } ).x , "E1" )
m.setSlaveOk()
for ( i=0; i<10; i++ )
assert.eq( 57 , ts.findOne( { x : 57 } ).x , "E2" )
after = rs.test.getMaster().adminCommand( "serverStatus" ).opcounters
assert.eq( before.query + 10 , after.query , "E3" )
assert.eq( 100 , ts.count() , "E4" )
assert.eq( 100 , ts.find().itcount() , "E5" )
printjson( ts.find().batchSize(5).explain() )
assert.eq( 100 , ts.find().batchSize(5).itcount() , "E6" )
printjson( db.adminCommand( "getShardMap" ) );
s.stop()
|