溫馨提示×

溫馨提示×

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

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

深入MongoDB內(nèi)存溢出調(diào)優(yōu)

發(fā)布時(shí)間:2020-10-20 05:38:19 來源:網(wǎng)絡(luò) 閱讀:7357 作者:UltraSQL 欄目:MongoDB數(shù)據(jù)庫

MongoDB內(nèi)存溢出錯(cuò)誤描述

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

MongoDB內(nèi)存中排序的限制和解決方案

下文引用自: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查詢方法的描述和執(zhí)行順序

下文引用自: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語句執(zhí)行順序

《SQL Server 2005技術(shù)內(nèi)幕--查詢》這本書的開篇第一章第一節(jié)。書的作者也要讓讀者首先了解語句是怎么樣的一個(gè)執(zhí)行順序。

查詢的邏輯執(zhí)行順序:

 (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>

 標(biāo)準(zhǔn)的SQL 的解析順序?yàn)?

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

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

 (3).GROUP BY 子句 將數(shù)據(jù)劃分為多個(gè)分組

 (4).使用聚合函數(shù)進(jìn)行計(jì)算

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

 (6).計(jì)算所有的表達(dá)式

 (7).使用ORDER BY對結(jié)果集進(jìn)行排序


執(zhí)行順序:

 1.FROM:對FROM子句中前兩個(gè)表執(zhí)行笛卡爾積生成虛擬表vt1

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

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

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

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

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

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

 8.SELECT:處理select列表產(chǎn)生vt8

 9.DISTINCT:將重復(fù)的行從vt8中去除產(chǎn)生vt9

 10.ORDER BY:將vt9的行按order by子句中的列列表排序生成一個(gè)游標(biāo)vc10

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



對比總結(jié)

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


對于內(nèi)存溢出的優(yōu)化

MongoDB查詢優(yōu)化的原則可參考:

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


有的開發(fā)會(huì)干脆將數(shù)據(jù)取出來后在程序里排序,這個(gè)不推薦,因?yàn)檫@樣同樣占用過多內(nèi)存,沒有從根本上解決這個(gè)問題。


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


從3.0版本開始的系統(tǒng)參數(shù)調(diào)優(yōu)


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


先來看看所有支持的參數(shù):

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

再來看看如何設(shè)置:

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


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI