본문 바로가기
mongoDB

mongodb 에서 인덱스 용량 확인

by freesunny 2024. 9. 21.
  • 해당 DB 의 컬렉션별 인덱스 용량을 각각 표시하는 방법
db.getCollectionNames().forEach(function(collection) {
  let stats = db[collection].stats();
  print(collection + " index size: " + (stats.totalIndexSize / (1024 * 1024)).toFixed(2) + " MB");
});

 

  • 해당 DB 의 컬력션별 인덱스 용량을 합산하여 표시하는 방법
let totalIndexSize = 0;
db.getCollectionNames().forEach(function(collection) {
  let stats = db[collection].stats();
  totalIndexSize += stats.totalIndexSize;
});
print("Total index size for all collections: " + (totalIndexSize / (1024 * 1024)).toFixed(2) + " MB");

'mongoDB' 카테고리의 다른 글

mongoDB collection 별 용량 확인하는 방법  (0) 2024.06.27
mongoDB 데이터 압축  (0) 2024.06.27
documentDB 를 접속을 위한 port forwarding 셋팅  (1) 2020.05.25
mongod log file 관리  (0) 2019.07.19