Try   HackMD

MongoDB Basic Cluster Administration
ch1 The Mongod

tags: MongoDB University M103

File Structure

下列檔案除非在 MongoDB 支援人員的引導下或者系統分析,一般使用者不須存取

/data/db
    WiredTiger
    WiredTiger.wt
    WiredTiger.lock
    WiredTiger.turtle
    WiredTgerLAS.wt
    _mdb_catalog.wt
    mongod.lock
    sizeStorer.wt
    collection-n.wt
    index-n.wt
    diagnostic.data
    storage.bon

.lock 檔是避免同一個 dbpath 重複啟動 Mongod

Profiler

Level Description
0 預設值。不會記錄任何
1 會記下執行時間超過 slowms 的資料操作
2 紀錄所有資料操作
db.setProfilingLevel(1, { slowms: 0 }) db.getProfilingLevel()