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 | 29 | 30 | 31 |
Tags
- 품질
- 도커
- docker
- angular2 google analytics
- npm repository
- 페이지구분
- RxJS
- Cheerio
- ISO25010
- angular2
- phantomjs
- 서버
- ISO9126
- 소프트웨어
- Nexus
- 크롤링
- SW
- ISO25000
- 품질 표준
- pylint
- nodejs
- angular-cli
- 신한대학교
- casperJS
- 구글 클라우드 플랫폼
- vscode
- cyber.shinhan
- REQUEST
- angular
- 네이버 클라우드 플랫폼
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