mongodb6 MongoDB paddingFactor 옵션 compact 시에 option을 추가할 수 있는데, paddingFactor라는 것이 있다. paddingFactor란 무엇일까? MongoDB 공식 가이드에는 아래와 같이 설명되어 있다. The amount of space added to the end of each document at insert time. The document padding provides a small amount of extra space on disk to allow a document to grow slightly without needing to move the document. mongod automatically calculates this padding factor 즉, document 저장시 실제 데이터 내용보.. 2015. 3. 5. MongoDB 인덱스 관리 1. 인덱스 생성 & 삭제 db.emp.ensureIndex({ eno:1 }, { unique:true }); db.emp.dropIndex({ eno:1 }); 1 => ASC -1 => DESC 2. 인덱스 재구성 및 삭제 db.emp.dropIndexes(); db.emp.dropIndex({ eno:1 }); db.runCommand({dropIndexes:'em', index:{eno:1}}) db.emp.reIndex(); db.runCommand({reIndex:'emp'}); Index의 대소문자는 엄격히 구분됩니다. Document를 Update 할 때 해당 Index Key만 변경되지만, 변경되는 Document 크기가 기존 Extent 공간 크기보다 큰 경우에 더 큰 Extent 공.. 2015. 3. 5. 이전 1 2 다음