内容へ移動
ClownWiki
ユーザ用ツール
ログイン
サイト用ツール
検索
ツール
文書の表示
以前のリビジョン
バックリンク
最近の変更
メディアマネージャー
サイトマップ
ログイン
>
最近の変更
メディアマネージャー
サイトマップ
トレース:
mongodb:smallfiles
この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。
====== journalのファイルサイズを小さくする ====== mysqlのbinlogのようなもので、通常、1GB程度のファイルが2~3個作られる。 smallFilesオプションを有効にすることで、128MBに制限できる。 http://docs.mongodb.org/manual/reference/configuration-options/ > storage.mmapv1.smallFiles > Type: boolean > > Default: False > > When true, MongoDB uses a smaller default file size. The storage.mmapv1.smallFiles option reduces the initial size for data files and limits the maximum size to 512 megabytes. storage.mmapv1.smallFiles also reduces the size of each journal file from 1 gigabyte to 128 megabytes. Use storage.mmapv1.smallFiles if you have a large number of databases that each holds a small quantity of data. > > The storage.mmapv1.smallFiles option can lead the mongod instance to create a large number of files, which can affect performance for larger databases. > > The storage.mmapv1.smallFiles setting is available only for mongod. mongoDBを停止する <code> # /etc/init.d/mongod stop </code> journalディレクトリ以下のファイルを削除する <code> # rm -rf /var/lib/mongo/journal/* </code> mongod.confに「smallfiles=true」のオプションを追加する ※場所は適当 <code> # vi /etc/mongod.conf +)smallfiles=true </code> mongoDBを起動する <code> # /etc/init.d/mongod start </code>
mongodb/smallfiles.txt
· 最終更新: 2025/02/16 13:53 by
127.0.0.1
ページ用ツール
文書の表示
以前のリビジョン
バックリンク
文書の先頭へ