[Doc ]Add docs of max_running_txn_num_per_db (#3657)

Change-Id: Ibdbc19a5558b0eb3f6a5fc4ef630de255b408a92
This commit is contained in:
EmmyMiao87
2020-05-22 10:22:11 +08:00
committed by GitHub
parent 4eade9bd95
commit dbfe8a067f
2 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ The following configuration belongs to the system configuration of FE, which can
+ max\_running\_txn\_num\_per\_db
The implication of this configuration is that the maximum number of imports running in each database (no distinction between import types, uniform counting). When the current database is running more than the maximum number of imports, subsequent imports will not be executed. If the job is imported synchronously, the import will be rejected. If it is an asynchronous import job. The job will wait in the queue.
The implication of this configuration is that the maximum number of running load jobs in each database (no distinction between import types, uniform counting). The default value is 100. When the current database is running more than the maximum number of imports, subsequent imports will not be executed. If the job is imported synchronously, the import will be rejected. If it is an asynchronous import job. The job will wait in the queue.
### BE configuration

View File

@ -184,7 +184,7 @@ Doris 目前的导入方式分为两类,同步和异步。如果是外部程
+ max\_running\_txn\_num\_per\_db
这个配置的含义是说,每个 Database 中正在运行的导入最大个数(不区分导入类型,统一计数)。当当前 Database 正在运行的导入个数超过最大值时,后续的导入不会被执行。如果是同步导入作业,则导入会被拒绝。如果是异步导入作业。则作业会在队列中等待。
这个配置的含义是说,每个 Database 中正在运行的导入最大个数(不区分导入类型,统一计数)。默认的最大导入并发为 100。当当前 Database 正在运行的导入个数超过最大值时,后续的导入不会被执行。如果是同步导入作业,则导入会被拒绝。如果是异步导入作业。则作业会在队列中等待。
### BE 配置