mongodb local資料庫的空間初始化好大啊!
新建立了一個replicat set,登入到primary裡,show dbs一看嚇一跳
local資料庫竟然佔用了80多G的空間
[root@wxlab31 bin]# ./mongo --host 10.1.1.31 --port 27017
MongoDB shell version: 2.4.6
connecting to: 10.1.1.31:27017/test
Server has startup warnings:
Mon Jan 20 15:12:35.071 [initandlisten]
Mon Jan 20 15:12:35.071 [initandlisten] ** WARNING: You are running on a NUMA machine.
Mon Jan 20 15:12:35.071 [initandlisten] ** We suggest launching mongod like this to avoid performance problems:
Mon Jan 20 15:12:35.071 [initandlisten] ** numactl --interleave=all mongod [other options]
Mon Jan 20 15:12:35.071 [initandlisten]
wxh:PRIMARY> show dbs
local 82.0380859375GB
[root@wxlab31 db1]# ls -ltr
total 86023348
-rwxr-xr-x. 1 root root 6 Jan 20 15:12 mongod.lock
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.40
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.39
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.38
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.37
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.36
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.35
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.34
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.33
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.32
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.31
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.30
drwxr-xr-x. 2 root root 4096 Jan 20 15:13 journal
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.9
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.8
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.7
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.6
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.5
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.4
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.3
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.29
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.28
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.27
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.26
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.25
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.24
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.23
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.22
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.21
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.20
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.2
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.19
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.18
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.17
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.16
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.15
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.14
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.13
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.12
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.11
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.10
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.1
-rw-------. 1 root root 67108864 Jan 20 15:13 local.0
drwxr-xr-x. 2 root root 4096 Jan 20 15:14 _tmp
-rw-------. 1 root root 16777216 Jan 20 15:26 local.ns
-rw-------. 1 root root 2146435072 Jan 20 15:26 local.41
[root@wxlab31 db1]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_sys-lv_root
79G 3.4G 72G 5% /
tmpfs 64G 76K 64G 1% /dev/shm
/dev/sda1 485M 39M 422M 9% /boot
/dev/mapper/vg_sys-lv_lsmp
148G 274M 140G 1% /lsmp
/dev/mapper/vg_sys-lv_opt
99G 13G 82G 14% /opt
/dev/mapper/vg_sys-lv_var
118G 11G 101G 10% /var
/dev/mapper/vg_mondb-lv_mondb
1.8T 369G 1.4T 22% /mongodata
資料目錄掛載在/mongodata下,由於mongodata掛載點有1.4T的容量,因此oplog預設的大小是5%掛載點的大小,就導致了local資料庫過大的問題
local資料庫竟然佔用了80多G的空間
[root@wxlab31 bin]# ./mongo --host 10.1.1.31 --port 27017
MongoDB shell version: 2.4.6
connecting to: 10.1.1.31:27017/test
Server has startup warnings:
Mon Jan 20 15:12:35.071 [initandlisten]
Mon Jan 20 15:12:35.071 [initandlisten] ** WARNING: You are running on a NUMA machine.
Mon Jan 20 15:12:35.071 [initandlisten] ** We suggest launching mongod like this to avoid performance problems:
Mon Jan 20 15:12:35.071 [initandlisten] ** numactl --interleave=all mongod [other options]
Mon Jan 20 15:12:35.071 [initandlisten]
wxh:PRIMARY> show dbs
local 82.0380859375GB
[root@wxlab31 db1]# ls -ltr
total 86023348
-rwxr-xr-x. 1 root root 6 Jan 20 15:12 mongod.lock
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.40
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.39
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.38
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.37
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.36
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.35
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.34
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.33
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.32
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.31
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.30
drwxr-xr-x. 2 root root 4096 Jan 20 15:13 journal
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.9
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.8
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.7
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.6
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.5
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.4
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.3
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.29
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.28
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.27
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.26
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.25
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.24
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.23
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.22
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.21
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.20
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.2
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.19
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.18
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.17
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.16
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.15
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.14
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.13
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.12
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.11
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.10
-rw-------. 1 root root 2146435072 Jan 20 15:13 local.1
-rw-------. 1 root root 67108864 Jan 20 15:13 local.0
drwxr-xr-x. 2 root root 4096 Jan 20 15:14 _tmp
-rw-------. 1 root root 16777216 Jan 20 15:26 local.ns
-rw-------. 1 root root 2146435072 Jan 20 15:26 local.41
[root@wxlab31 db1]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/mapper/vg_sys-lv_root
79G 3.4G 72G 5% /
tmpfs 64G 76K 64G 1% /dev/shm
/dev/sda1 485M 39M 422M 9% /boot
/dev/mapper/vg_sys-lv_lsmp
148G 274M 140G 1% /lsmp
/dev/mapper/vg_sys-lv_opt
99G 13G 82G 14% /opt
/dev/mapper/vg_sys-lv_var
118G 11G 101G 10% /var
/dev/mapper/vg_mondb-lv_mondb
1.8T 369G 1.4T 22% /mongodata
資料目錄掛載在/mongodata下,由於mongodata掛載點有1.4T的容量,因此oplog預設的大小是5%掛載點的大小,就導致了local資料庫過大的問題
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-1204757/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle的空間資料庫:Oracle資料庫
- 獲取資料庫空閒空間的SQL資料庫SQL
- 資料庫空間重整方案資料庫
- 清理oracle資料庫空間Oracle資料庫
- Oracle資料庫的空間管理技巧Oracle資料庫
- MongoDB 初始化資料同步MongoDB
- 空間索引 - 各資料庫空間索引使用報告索引資料庫
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- Sybase資料庫空間相關資料庫
- Oracle資料庫管理 版主空間Oracle資料庫
- 檢視資料庫表空間資料庫
- oracle清除資料庫表空間Oracle資料庫
- 資料庫硬碟空間如何算資料庫硬碟
- 刪除資料庫表空間資料庫
- oracle資料庫中索引空間的重用Oracle資料庫索引
- 資料庫和表空間資料移動資料庫
- 檢視Oracle資料庫表空間大小,是否需要增加表空間的資料檔案Oracle資料庫
- 在資料庫之間移動表空間資料庫
- 改變資料庫undo表空間資料庫
- 資料庫物件遷移表空間資料庫物件
- Oracle資料庫表空間的資料檔案大小上限。Oracle資料庫
- 給資料庫新增儲存空間的案例資料庫
- MongoDB資料庫MongoDB資料庫
- 達夢資料庫之初始化頁大小對於表及表空間的影響分析資料庫
- 如何檢視Oracle資料庫表空間大小(空閒、已使用),是否要增加表空間的資料檔案...Oracle資料庫
- MongoDB安裝以及資料初始化海量資料MongoDB
- 【資料庫資料恢復】SQL Server資料庫磁碟空間不足的資料恢復案例資料庫資料恢復SQLServer
- . 資料庫臨時表空間的資料檔案的丟失資料庫
- oracle dg庫資料檔案空間不足Oracle
- Oracle資料庫閃回區空間不足Oracle資料庫
- Oracle資料庫使用空間統計案例Oracle資料庫
- 檢視資料庫佔用磁碟空間的方法資料庫
- db2修改資料庫的日誌空間DB2資料庫
- 怎樣移動Oracle資料庫的表空間Oracle資料庫
- Mongodb中回收remove的磁碟空間MongoDBREM
- 如何用好大資料?大資料
- 達夢資料庫表空間等空間大小查詢方法總結資料庫
- 空間資料庫三維空間兩點距離計算錯誤資料庫