mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
24 lines
583 B
JavaScript
24 lines
583 B
JavaScript
port = allocatePorts( 1 )[ 0 ]
|
|
|
|
var baseName = "jstests_preallocate";
|
|
|
|
vsize = function() {
|
|
return m.getDB( "admin" ).runCommand( "serverStatus" ).mem.virtual;
|
|
}
|
|
|
|
var m = startMongod( "--port", port, "--dbpath", "/data/db/" + baseName );
|
|
|
|
m.getDB( baseName ).createCollection( baseName + "1" );
|
|
|
|
stopMongod( port );
|
|
|
|
var m = startMongoProgram( "mongod", "--port", port, "--dbpath", "/data/db/" + baseName );
|
|
|
|
size = m.getDBs().totalSize;
|
|
|
|
m.getDB( baseName ).createCollection( baseName + "2" );
|
|
|
|
sleep( 2000 ); // give prealloc a chance
|
|
|
|
assert.eq( size, m.getDBs().totalSize );
|