Created
March 26, 2012 10:36
-
-
Save dchentech/2204367 to your computer and use it in GitHub Desktop.
mongodb在master模式下启动后无止尽创建local.*文件,原因在于启动参数设置的--oplogSize过大了,比如1048576,即1048576M,改成2048后就只创建了一个local.*
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Mar 26 06:23:21 [FileAllocator] allocating new datafile /dbs/mongodb/local.72, filling with zeroes... | |
Mon Mar 26 06:23:45 [FileAllocator] done allocating datafile /dbs/mongodb/local.72, size: 2047MB, took 23.744 secs | |
Mon Mar 26 06:23:45 [FileAllocator] allocating new datafile /dbs/mongodb/local.73, filling with zeroes... | |
Mon Mar 26 06:24:05 [FileAllocator] done allocating datafile /dbs/mongodb/local.73, size: 2047MB, took 20.625 secs | |
Mon Mar 26 06:24:05 [FileAllocator] allocating new datafile /dbs/mongodb/local.74, filling with zeroes... | |
Mon Mar 26 06:24:32 [FileAllocator] done allocating datafile /dbs/mongodb/local.74, size: 2047MB, took 26.592 secs | |
Mon Mar 26 06:24:32 [FileAllocator] allocating new datafile /dbs/mongodb/local.75, filling with zeroes... | |
Mon Mar 26 06:25:02 [FileAllocator] done allocating datafile /dbs/mongodb/local.75, size: 2047MB, took 29.55 secs | |
Mon Mar 26 06:25:02 [FileAllocator] allocating new datafile /dbs/mongodb/local.76, filling with zeroes... | |
Mon Mar 26 06:25:21 [FileAllocator] done allocating datafile /dbs/mongodb/local.76, size: 2047MB, took 18.921 secs | |
Mon Mar 26 06:25:21 [FileAllocator] allocating new datafile /dbs/mongodb/local.77, filling with zeroes... | |
Mon Mar 26 06:25:53 [FileAllocator] done allocating datafile /dbs/mongodb/local.77, size: 2047MB, took 32.207 secs | |
Mon Mar 26 06:25:53 [FileAllocator] allocating new datafile /dbs/mongodb/local.78, filling with zeroes... | |
Mon Mar 26 06:26:10 [FileAllocator] done allocating datafile /dbs/mongodb/local.78, size: 2047MB, took 17.534 secs | |
Mon Mar 26 06:26:10 [FileAllocator] allocating new datafile /dbs/mongodb/local.79, filling with zeroes... | |
Mon Mar 26 06:26:42 [FileAllocator] done allocating datafile /dbs/mongodb/local.79, size: 2047MB, took 31.54 secs | |
Mon Mar 26 06:26:42 [FileAllocator] allocating new datafile /dbs/mongodb/local.80, filling with zeroes... | |
Mon Mar 26 06:27:01 [FileAllocator] done allocating datafile /dbs/mongodb/local.80, size: 2047MB, took 18.991 secs | |
Mon Mar 26 06:27:01 [FileAllocator] allocating new datafile /dbs/mongodb/local.81, filling with zeroes... | |
Mon Mar 26 06:27:23 [FileAllocator] done allocating datafile /dbs/mongodb/local.81, size: 2047MB, took 22.166 secs | |
Mon Mar 26 06:27:23 [FileAllocator] allocating new datafile /dbs/mongodb/local.82, filling with zeroes... | |
Mon Mar 26 06:27:44 [FileAllocator] done allocating datafile /dbs/mongodb/local.82, size: 2047MB, took 20.947 secs | |
Mon Mar 26 06:27:44 [FileAllocator] allocating new datafile /dbs/mongodb/local.83, filling with zeroes... | |
Mon Mar 26 06:28:12 [FileAllocator] done allocating datafile /dbs/mongodb/local.83, size: 2047MB, took 27.48 secs | |
Mon Mar 26 06:28:12 [FileAllocator] allocating new datafile /dbs/mongodb/local.84, filling with zeroes... | |
Mon Mar 26 06:28:36 [FileAllocator] done allocating datafile /dbs/mongodb/local.84, size: 2047MB, took 23.976 secs | |
Mon Mar 26 06:28:36 [FileAllocator] allocating new datafile /dbs/mongodb/local.85, filling with zeroes... | |
Mon Mar 26 06:29:02 [FileAllocator] done allocating datafile /dbs/mongodb/local.85, size: 2047MB, took 26.805 secs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment