Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- phantomjs
- 서버
- REQUEST
- angular-cli
- vscode
- nodejs
- 네이버 클라우드 플랫폼
- 도커
- Cheerio
- npm repository
- RxJS
- 크롤링
- SW
- 신한대학교
- Nexus
- ISO25010
- docker
- pylint
- angular2
- casperJS
- 구글 클라우드 플랫폼
- angular
- 품질
- ISO25000
- 소프트웨어
- 페이지구분
- 품질 표준
- cyber.shinhan
- ISO9126
- angular2 google analytics
Archives
- Today
- Total
나를 위한 기록들
MongoDB ERROR - Sort operation used more than the maximum 33554432 bytes of RAM 본문
데이터베이스/mongodb
MongoDB ERROR - Sort operation used more than the maximum 33554432 bytes of RAM
lyasee 2019. 9. 15. 13:11mongodb sort 작업이 32MB 메모리 이상을 사용하는 경우 나는 오류
해결 방법
- 인덱스 추가 (unique)
- 더 작게 limit 걸기
- internalQueryExecMaxBlockingSortBytes 를 이용하여 버퍼 크기 조정
3번 방법을 이용하여 128MB 로 설정하기
> db.adminCommand({"setParameter": 1, "internalQueryExecMaxBlockingSortBytes" : 134217728})
Comments