We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3f4c1b commit 7eb3a17Copy full SHA for 7eb3a17
plugin/src/main/java/org/opensearch/sql/plugin/SQLPlugin.java
@@ -328,7 +328,8 @@ public List<ExecutorBuilder<?>> getExecutorBuilders(Settings settings) {
328
new FixedExecutorBuilder(
329
settings,
330
SQL_BACKGROUND_THREAD_POOL_NAME,
331
- OpenSearchExecutors.allocatedProcessors(settings),
+ settings.getAsInt(
332
+ "thread_pool.search.size", OpenSearchExecutors.allocatedProcessors(settings)),
333
1000,
334
"thread_pool." + SQL_BACKGROUND_THREAD_POOL_NAME));
335
}
0 commit comments