You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by xx...@apache.org on 2023/04/13 05:51:14 UTC

[kylin] 02/02: KYLIN-5495 add kylin.query.async-query.max-concurrent-jobs in configuration

This is an automated email from the ASF dual-hosted git repository.

xxyu pushed a commit to branch doc5.0
in repository https://gitbox.apache.org/repos/asf/kylin.git

commit ef9a2a8fadc4f59c7595448662f1504ac2346d8c
Author: longfei.jiang <lo...@kyligence.io>
AuthorDate: Thu Apr 6 17:18:50 2023 +0800

    KYLIN-5495 add kylin.query.async-query.max-concurrent-jobs in configuration
---
 website/docs/configuration/configuration.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/website/docs/configuration/configuration.md b/website/docs/configuration/configuration.md
index 76d32d294f..11ce05b59c 100644
--- a/website/docs/configuration/configuration.md
+++ b/website/docs/configuration/configuration.md
@@ -103,6 +103,7 @@ The file **kylin.properties** occupies some of the most important configurations
 | kylin.query.replace-dynamic-params-enabled                   | Whether to enable dynamic parameter binding for JDBC query, the default value is false, which means it is not enabled. For more, please refer to [Kylin JDBC Driver](#TODO) |
 | kylin.second-storage.route-when-ch-fail                      | When tiered storage is enabled, whether the query matching the base table index is answered only by tiered storage. The default value is `0`, which means that when tiered storage cannot answer, it is answered by the base table index on HDFS, configured as `1` indicates that when the tiered storage cannot answer the query, the query will be pushdown, configured as `2`, indicates that the query fails when the tiered storage c [...]
 | kylin.second-storage.query-pushdown-limit                    | When query result sets are large, the performance of query using tiered storage may degrade. This parameter indicates whether to use the limit statement to limit whether the detailed query uses tiered storage, the default value is `0`, which means it is not enabled. If you need to enable it, you can configure a specific value. For example, if it is configured as `100000`, it means that the detailed query with the value afte [...]
+| kylin.query.async-query.max-concurrent-jobs                  | When configuring the asynchronous query queue, the maximum number of asynchronous query jobs. When the number of jobs reaches the limit, the asynchronous query reports an error. The default value  is 0, which means there is no limit to the number of asynchronous query jobs. |
 
 ### <span id="override">Configuration Override</span>