中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

深入MongoDB內存溢出調優

發布時間:2020-10-20 05:38:19 來源:網絡 閱讀:7357 作者:UltraSQL 欄目:MongoDB數據庫

MongoDB內存溢出錯誤描述

exception: getMore runner error: Overflow sort stage buffered data 
usage of 33638076 bytes exceeds internal limit of 33554432 bytes

MongoDB內存中排序的限制和解決方案

下文引用自:https://docs.mongodb.com/manual/reference/method/cursor.sort/#cursor.sort

When unable to obtain the sort order from an index, MongoDB will sort the results in memory, which requires that the result set being sorted is less than 32 megabytes.

When the sort operation consumes more than 32 megabytes, MongoDB returns an error. To avoid this error, either create an index supporting the sort operation (see Sort and Index Use) or use sort() in conjunction with limit() (see Limit Results).

MongoDB查詢方法的描述和執行順序

下文引用自:https://docs.mongodb.com/manual/tutorial/query-documents/#query-method

Query Method

MongoDB provides the db.collection.find() method to read documents from a collection. The db.collection.find() method returns a cursor to the matching documents.

db.collection.find( <query filter>, <projection> )


For the db.collection.find() method, you can specify the following optional fields:

  • a query filter to specify which documents to return.

  • a query projection to specifies which fields from the matching documents to return. The projection limits the amount of data that MongoDB returns to the client over the network.


You can optionally add a cursor modifier to impose limits, skips, and sort orders. The order of documents returned by a query is not defined unless you specify a sort().

下文引用自:https://docs.mongodb.com/manual/reference/method/db.collection.find/#combine-cursor-methods

Combine Cursor Methods

The following statements chain cursor methods limit() and sort():

db.bios.find().sort( { name: 1 } ).limit( 5 )
db.bios.find().limit( 5 ).sort( { name: 1 } )

The two statements are equivalent; i.e. the order in which you chain the limit() and the sort() methods is not significant. Both statements return the first five documents, as determined by the ascending sort order on ‘name’.


順便來看看SQL Server語句執行順序

《SQL Server 2005技術內幕--查詢》這本書的開篇第一章第一節。書的作者也要讓讀者首先了解語句是怎么樣的一個執行順序。

查詢的邏輯執行順序:

 (1) FROM < left_table>

 (3) < join_type>  JOIN < right_table>   (2) ON < join_condition>

 (4) WHERE < where_condition>

 (5) GROUP BY < group_by_list>

 (6) WITH {cube | rollup}

 (7) HAVING < having_condition>

 (8) SELECT  (9) DISTINCT (11) < top_specification>  < select_list>

 (10) ORDER BY < order_by_list>

 標準的SQL 的解析順序為:

 (1).FROM 子句 組裝來自不同數據源的數據

 (2).WHERE 子句 基于指定的條件對記錄進行篩選

 (3).GROUP BY 子句 將數據劃分為多個分組

 (4).使用聚合函數進行計算

 (5).使用HAVING子句篩選分組

 (6).計算所有的表達式

 (7).使用ORDER BY對結果集進行排序


執行順序:

 1.FROM:對FROM子句中前兩個表執行笛卡爾積生成虛擬表vt1

 2.ON:對vt1表應用ON篩選器只有滿足< join_condition> 為真的行才被插入vt2

 3.OUTER(join):如果指定了 OUTER JOIN保留表(preserved table)中未找到的行將行作為外部行添加到vt2 生成t3如果from包含兩個以上表則對上一個聯結生成的結果表和下一個表重復執行步驟和步驟直接結束

 4.WHERE:對vt3應用 WHERE 篩選器只有使< where_condition> 為true的行才被插入vt4

 5.GROUP BY:按GROUP BY子句中的列列表對vt4中的行分組生成vt5

 6.CUBE|ROLLUP:把超組(supergroups)插入vt6 生成vt6

 7.HAVING:對vt6應用HAVING篩選器只有使< having_condition> 為true的組才插入vt7

 8.SELECT:處理select列表產生vt8

 9.DISTINCT:將重復的行從vt8中去除產生vt9

 10.ORDER BY:將vt9的行按order by子句中的列列表排序生成一個游標vc10

 11.TOP:從vc10的開始處選擇指定數量或比例的行生成vt11 并返回調用者



對比總結

MongoDB和SQL Server都是先SELECT列表后,再到內存中排序,最后取前幾行。


對于內存溢出的優化

MongoDB查詢優化的原則可參考:

Optimize Query Performance
https://docs.mongodb.com/manual/tutorial/optimize-query-performance-with-indexes-and-projections/


有的開發會干脆將數據取出來后在程序里排序,這個不推薦,因為這樣同樣占用過多內存,沒有從根本上解決這個問題。


比較推薦的方案有三個:
1.優化查詢和索引。
2.減少輸出列(限制輸出列個數)或行(如limit函數,或限制輸入查詢_id數量)。
3.將查詢分2步,第1步只輸出_id,第2步再通過_id查明細。
都可以解決內存中排序溢出問題。


從3.0版本開始的系統參數調優


從3.0版本開始可以通過修改參數值internalQueryExecMaxBlockingSortBytes來增加內存排序大小限制。


先來看看所有支持的參數:

use admin
db.runCommand( { getParameter : 1, "internalQueryExecMaxBlockingSortBytes" : 1 } )

再來看看如何設置:

db.adminCommand({setParameter: 1, internalQueryExecMaxBlockingSortBytes: <limit in bytes>})


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

喜德县| 聂拉木县| 修水县| 屏南县| 尉氏县| 灌云县| 黔西县| 武义县| 垫江县| 瓦房店市| 陇南市| 和林格尔县| 岑溪市| 霸州市| 卢氏县| 余庆县| 隆德县| 大同市| 望奎县| 六枝特区| 深水埗区| 龙井市| 万源市| 蒲江县| 北海市| 虹口区| 合水县| 邵阳市| 辽阳市| 阜康市| 胶州市| 招远市| 靖州| 池州市| 马龙县| 凤台县| 八宿县| 潍坊市| 犍为县| 永清县| 海林市|