You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user/admin/settings.rst
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ plugins.query.size_limit
166
166
Description
167
167
-----------
168
168
169
-
The new engine fetches a default size of index from OpenSearch set by this setting, the default value equals to max result window in index level (10000 by default). You can change the value to any value not greater than the max result window value in index level (`index.max_result_window`), here is an example::
169
+
The size configures the maximum amount of rows to be fetched from query execution results. The default value is: 10000. You can change the value::
170
170
171
171
>> curl -H 'Content-Type: application/json' -X PUT localhost:9200/_plugins/_query/settings -d '{
172
172
"transient" : {
@@ -188,6 +188,51 @@ Result set::
188
188
}
189
189
}
190
190
191
+
plugins.query.system_limit
192
+
==========================
193
+
194
+
Description
195
+
-----------
196
+
197
+
The size configures the maximum amount of documents to be pull from OpenSearch for data-intensive operations (e.g. join, lookup). The default value is: 50000.
198
+
199
+
From v3.0.0, PPL introduces commands that may increase data volume. To prevent out-of-memory problem, the system automatically enforces this ``system limit`` in the pushdown context of the physical index scan operator for such commands.
Copy file name to clipboardExpand all lines: docs/user/ppl/admin/settings.rst
+46-1Lines changed: 46 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ plugins.query.size_limit
125
125
Description
126
126
-----------
127
127
128
-
The size configures the maximum amount of rows to be fetched from PPL execution results. The default value is: 10000
128
+
The size configures the maximum amount of rows to be fetched from query execution results. The default value is: 10000
129
129
130
130
Example
131
131
-------
@@ -159,3 +159,48 @@ Rollback to default value::
159
159
}
160
160
161
161
Note: the legacy settings of ``opendistro.query.size_limit`` is deprecated, it will fallback to the new settings if you request an update with the legacy name.
162
+
163
+
plugins.query.system_limit
164
+
==========================
165
+
166
+
Description
167
+
-----------
168
+
169
+
The size configures the maximum amount of documents to be pull from OpenSearch for data-intensive operations (e.g. join, lookup). The default value is: 50000.
170
+
171
+
From v3.0.0, PPL introduces commands that may increase data volume. To prevent out-of-memory problem, the system automatically enforces this ``system limit`` in the pushdown context of the physical index scan operator for such commands.
0 commit comments