From 8be513dd84b77d8207c17157a2c1d8420626e399 Mon Sep 17 00:00:00 2001 From: Jose Lausuch Date: Tue, 27 Jun 2017 13:37:17 +0000 Subject: Update git submodules * Update docs/submodules/releng from branch 'master' - Merge "bugfix: pagination crash due to memory limitation" - bugfix: pagination crash due to memory limitation MongoDB sorts the results in memory, and the default mem limitation is 32M, if the sort operation consumes more than that it will return an error: OperationFailure: Executor error during find command: OperationFailed Sort operation used more than the maximum 33554432 bytes of RAM. Add an index, or specify a smaller limit. To solve this problem, here we leverage aggregate() and allowDiskUse=True, it is said will not be limited by memory Change-Id: Id698ad1d02912e8b350a33a926fcccc390814fcc Signed-off-by: SerenaFeng --- docs/submodules/releng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/submodules') diff --git a/docs/submodules/releng b/docs/submodules/releng index c51d9aaf9..e75effebd 160000 --- a/docs/submodules/releng +++ b/docs/submodules/releng @@ -1 +1 @@ -Subproject commit c51d9aaf9487846e2d4e5fc8e9a6f97a18feaa7a +Subproject commit e75effebd724d2478f73b422e160be46259b600f -- cgit 1.2.3-korg