File tree Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Expand file tree Collapse file tree 1 file changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,8 @@ information:
182
182
"advanced" : <int>,
183
183
"needTime" : <int>,
184
184
"needYield" : <int>,
185
+ "saveState" : <int>,
186
+ "restoreState" : <int>,
185
187
"isEOF" : <boolean>,
186
188
...
187
189
"inputStage" : {
@@ -191,6 +193,8 @@ information:
191
193
"executionTimeMillisEstimate" : <int>,
192
194
"keysExamined" : <int>,
193
195
"docsExamined" : <int>,
196
+ "saveState" : <int>,
197
+ "restoreState" : <int>,
194
198
...
195
199
"inputStage" : {
196
200
...
@@ -274,8 +278,20 @@ information:
274
278
275
279
.. data:: explain.executionStats.executionStages.needYield
276
280
277
- The number of times that the storage layer requested that the query
278
- system yield its locks.
281
+ The number of times that the storage layer requested that the
282
+ query stage suspend processing and yield its locks.
283
+
284
+ .. data:: explain.executionStats.executionStages.saveState
285
+
286
+ The number of times that the query stage suspended processing
287
+ and saved its current execution state, for example in
288
+ preparation for yielding its locks.
289
+
290
+ .. data:: explain.executionStats.executionStages.restoreState
291
+
292
+ The number of times that the query stage restored a saved
293
+ execution state, for example after recovering locks that it had
294
+ previously yielded.
279
295
280
296
.. data:: explain.executionStats.executionStages.isEOF
281
297
You can’t perform that action at this time.
0 commit comments