11-13-2017 08:13 AM
Hi, I am having complex hierarchy of document up to 20 levels. And more than 1lakh of document. While I am accessing inner most level of document getting error.
** com.mongodb.MongoQueryException: Query failed with error code 96 and error message 'errmsg: "Sort operation used more than the maximum 33554432 bytes of RAM. Add an index, or specify a smaller limit."' on server hydprdmsdb4:27020**
Can any one solve this.
11-30-2017 11:48 AM
Hi,
You can do, for example for 50MB blocking sort:
> mongo <your-server-and-port>
> use admin
> db.adminCommand({setParameter: 1, internalQueryExecMaxBlockingSortBytes:50151432})
Regards, VS.
12-01-2017 12:55 AM
Hi,
12-01-2017 06:57 AM
Please, check your mongodb parameters after changes and verify about internalQueryExecMaxBlockingSortBytes param.
12-04-2017 07:36 AM
Hi,
12-01-2017 05:18 AM
Hi Santosh,
You need to enable logs on MongoDBRepository in order to tackle the culprit query. Add the following lines to the log4j.xml file to trace the queries sent to MongoDB:
<category name="org.nuxeo.ecm.core.storage.mongodb.MongoDBRepository">
<priority value="TRACE" />
</category>
12-01-2017 06:21 AM
I already debug the query it is as follows
12-04-2017 09:01 AM
What is the context of this query ? Is it a query done by Nuxeo itself as a system/admin tasks ?
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.