0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

better maxPasses again SERVER-649

This commit is contained in:
Eliot Horowitz 2010-02-19 14:38:02 -05:00
parent c8fb2fb892
commit 8e311b0094

View File

@ -484,7 +484,7 @@ namespace mongo {
assert( len < 400000000 );
int passes = 0;
int maxPasses = len / 32; // 30 is about the smallest entry that could go in the oplog
int maxPasses = ( len / 30 ) + 2; // 30 is about the smallest entry that could go in the oplog
if ( maxPasses < 5000 ){
// this is for bacwards safety since 5000 was the old value
maxPasses = 5000;