Move the docs folder

This commit is contained in:
LINxiansheng
2022-02-10 14:51:49 +08:00
committed by LINxiansheng
parent 7c6dcc6712
commit d42f317422
1160 changed files with 0 additions and 3 deletions

View File

@ -0,0 +1,71 @@
系统配置项概述
============================
OceanBase 数据库的配置项对应 OceanBase 数据库的集群参数,通过配置项可以控制集群的负载均衡、合并时间、合并方式、资源分配和模块开关等。
生效方式
-------------------------
配置项一般分为动态生效和重启生效两种方式,大部分配置项为动态生效方式,即不需要重启 OBServer 即可生效。
参数级别
-------------------------
OceanBase 数据库的配置项分为集群级别和租户级别。
查询某个配置项为集群级别还是租户级别的方法如下:
```sql
obclient> SHOW PARAMETERS LIKE 'max_syslog_file_count';
+-------+----------+----------------+----------+-----------------------+-----------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------+---------+---------+-------------------+
| zone | svr_type | svr_ip | svr_port | name | data_type | value | info
| section | scope | source | edit_level |
+-------+----------+----------------+----------+-----------------------+-----------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------+---------+---------+-------------------+
| zone2 | observer |
xx.xx.xx.xx
| 2882 | max_syslog_file_count | NULL | 0 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE |
| zone2 | observer | xx.xx.xx.xx | 2882 | max_syslog_file_count | NULL | 0 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE |
| zone3 | observer | xx.xx.xx.xx | 2882 | max_syslog_file_count | NULL | 0 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE |
| zone1 | observer | xx.xx.xx.xx | 2882 | max_syslog_file_count | NULL | 0 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE |
| zone1 | observer | xx.xx.xx.xx | 2882 | max_syslog_file_count | NULL | 0 | specifies the maximum number of the log files that can co-exist before the log file recycling kicks in. Each log file can occupy at most 256MB disk space. When this value is set to 0, no log file will be removed. Range: [0, +) in integer | OBSERVER | CLUSTER | DEFAULT | DYNAMIC_EFFECTIVE |
+-------+----------+----------------+----------+-----------------------+-----------+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------+---------+---------+-------------------+
5 rows in set (0.02 sec)
```
其中,`scope` 列对应的值为 `CLUSTER` 表示该配置项为集群级别;如果 `scope` 列对应的值为 `TENANT`,则表示该配置项为租户级别。
管理权限
-------------------------
配置项的管理遵循以下管理规则:
* 系统租户可以查看和设置所有其他租户(包括系统租户)的配置项。
* 普通租户只能查看和设置本租户的配置项。
当 OBServer 启动后,如果未指定配置项,则系统会使用指定配置项的默认值。更多配置项的查看和设置操作请参见 [集群参数管理](../../6.administrator-guide/3.basic-database-management/1.oceanbase-cluster-management/7.cluster-parameter-management/1.overview-of-cluster-parameter-management.md) 章节。
与系统变量对比
----------------------------
| 对比项 | 系统配置项 | 系统变量 |
|------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 生效范围 | 分为集群、Zone、机器和租户。 | 分为租户的 Global 或 Session 级别。 |
| 生效方式 | * 动态生效:`edit_level` 为`dynamic_effective`。 * 重启生效:`edit_level``static_effective` 。 | * 设置 Session 级别的变量仅对当前 Session 有效,对其他 Session 无效。 * 设置 Global 级别的变量对当前 Session 无效,需要重新登录建立新的 Session 才会生效。 |
| 修改方式 | * 支持通过 SQL 语句修改,示例如下: ```sql obclient> Alter SYSTEM SET schema_history_expire_time='1h' ``` <!-- --> * 支持通过启动参数修改,示例如下: ```sql cd /home/admin && ./bin/observer -o "schema_history_expire_time='1h'" ``` | 仅支持通过 SQL 语句修改,示例如下: * MySQL 模式 ```sql obclient> SET ob_query_timeout = 20000000; obclient> SET GLOBAL ob_query_timeout = 20000000; ``` * Oracle 模式 ```sql obclient> SET ob_query_timeout = 20000000; obclient> ALTER SYSTEM SET ob_query_timeout = 20000000; ``` |
| 持久化 | 持久化到内部表与配置文件,可以在 `/home/admin/oceanbase/etc/observer.config.bin` 与 `/home/admin/oceanbase/etc/observer.config.bin.history` 文件中查询该配置项。 | 仅 GLOBAL 级别的变量会持久化,SESSION 级别的变量不会进行持久化。 |
| 生命周期 | 长,从进程启动到退出。 | 短,需要租户的 Schema 创建成功以后才生效。 |
| 查询方式 | 可以使用 `SHOW PARAMETERS` 语句查询。 | 可以使用 `SHOW [GLOBAL] VARIABLES` 语句查询。 |

View File

@ -0,0 +1,14 @@
balancer_task_timeout
==========================================
balancer_task_timeout 用于设置负载均衡等后台任务的超时时间。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 20m,表示 20 分钟 |
| 取值范围 | \[1s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
internal_sql_execute_timeout
=================================================
internal_sql_execute_timeout 用于设置系统内部 DML 请求的时间间隔。
| **属性** | **描述** |
|------------------|-------------------|
| 参数类型 | 时间类型 |
| 默认值 | 30s |
| 取值范围 | \[1000us, 10min\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
large_query_worker_percentage
==================================================
large_query_worker_percentage 用于设置预留给处理大查询的工作线程百分比。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 双精度浮点数 |
| 默认值 | 30 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
large_query_threshold
==========================================
large_query_threshold 用于设置查询执行时间的阈值。超过时间的请求可能被暂停,暂停后自动被判断为大查询,执行大查询调度策略。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 时间类型 |
| 默认值 | 5s |
| 取值范围 | \[1ms, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
leak_mod_to_check
======================================
leak_mod_to_check 用于内存泄露检查,是属于内部调试的功能。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 字符串 |
| 默认值 | none |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
lease_time
===============================
lease_time 用于设置心跳租约时长。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 10s |
| 取值范围 | \[1s, 5min\] |
| 是否重启 OBServer 生效 | 否 |
RootService 在心跳租约时长内未收到 OBServer 的心跳信息,则认为 OBServer 为脱机状态。 一般不建议修改该配置项。

View File

@ -0,0 +1,14 @@
location_cache_cpu_quota
=============================================
location_cache_cpu_quota 用于设置位置缓存模块使用的 CPU 配额。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 双精度浮点数 |
| 默认值 | 5 |
| 取值范围 | \[0, 10\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
location_cache_expire_time
===============================================
location_cache_expire_time 用于设置分区位置缓存中分区位置信息的过期时长。不建议修改。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 600s |
| 取值范围 | \[1s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
location_cache_priority
============================================
location_cache_priority 用于设置位置缓存在系统缓存服务中的优先级。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 1000 |
| 取值范围 | \[1s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
location_cache_refresh_min_interval
========================================================
location_cache_refresh_min_interval 用于设置位置缓存刷新请求的最小间隔,防止产生过多刷新请求造成系统压力过大。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 100ms |
| 取值范围 | \[0s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
location_fetch_concurrency
===============================================
location_fetch_concurrency 用于设置单机 location_cache 刷新的最大并发数。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 20 |
| 取值范围 | \[1, 1000\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
balancer_tolerance_percentage
==================================================
balancer_tolerance_percentage 用于设置负载均衡策略中,租户内多个 UNIT 间磁盘不均衡程度的宽容度,如果在均值 + 或 - 宽容度范围之内,不会触发执行均衡动作。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 10 |
| 取值范围 | \[1, 99\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
location_refresh_thread_count
==================================================
location_refresh_thread_count 用于设置 OBServer 从 RootService 中获取分区位置信息的线程数量。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 4 |
| 取值范围 | \[2, 64\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
log_archive_checkpoint_interval
====================================================
log_archive_checkpoint_interval 用于设置冷数据的日志归档检查点的时间间隔。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 时间类型 |
| 默认值 | 30s |
| 取值范围 | \[5s, 1h\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
log_archive_concurrency
============================================
log_archive_concurrency 用于设置日志归档的并发度。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
log_restore_concurrency
============================================
log_restore_concurrency 用于设置恢复日志的并发度。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 整型 |
| 默认值 | 10 |
| 取值范围 | \[1, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
major_freeze_duty_time
===========================================
major_freeze_duty_time 用于设置每日定时冻结和合并的触发时刻。
| **属性** | **描述** |
|------------------|------------------|
| 参数类型 | 时刻 |
| 默认值 | 02:00 |
| 取值范围 | \[00:00, 23:59\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
max_kept_major_version_number
==================================================
max_kept_major_version_number 用于设置数据保留的冻结版本数量。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 2 |
| 取值范围 | \[1, 16\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
max_string_print_length
============================================
max_string_print_length 用于设置打印系统日志时,单行日志最大长度。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 整型 |
| 默认值 | 500 |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
max_syslog_file_count
==========================================
max_syslog_file_count 用于设置在回收日志文件之前可以容纳的日志文件数量。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |
每个日志文件最多可以占用 256 MB 的磁盘空间。 当该配置项的值为 0 时,不会删除任何日志文件。

View File

@ -0,0 +1,14 @@
merge_stat_sampling_ratio
==============================================
merge_stat_sampling_ratio 用于设置合并时候数据列统计信息的采样率。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 100 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
major_compact_trigger
==========================================
major_compact_trigger 用于设置多少次小合并触发一次全局合并。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 5 |
| 取值范围 | \[0, 65535\] |
| 是否重启 OBServer 生效 | 否 |
当 major_compact_trigger 配置项的取值为 0 时,表示关闭小合并。该配置项与配置项 minor_freeze_times 的功能相同。

View File

@ -0,0 +1,15 @@
balancer_emergency_percentage
==================================================
balancer_emergency_percentage 用于设置 UNIT 负载阈值,即当 UNIT 负载超过该阈值时,允许开启副本向外迁移,即使在合并期间也执行负载均衡。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 80 |
| 取值范围 | \[1, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
memory_chunk_cache_size
============================================
memory_chunk_cache_size 用于设置内存分配器缓存的内存块容量。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 0M |
| 取值范围 | \[0M, +∞) |
| 是否重启 OBServer 生效 | 否 |
当 memory_chunk_cache_size 配置项的值为 0 时,表示系统自适应。

View File

@ -0,0 +1,48 @@
memory_limit
=================================
memory_limit 表示可用的总内存大小。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 0 |
| 取值范围 | \[0M, +∞) |
| 是否重启 OBServer 生效 | 否 |
memory_limit 的默认值为 0。如果该值不为 0,则系统会忽略 memory_limit_percentage 的设置而优先使用 memory_limit 配置的值。例如,一台物理机的内存为 100 G,memory_limit_percentage 设置为 80,表示使用 80% 的内存,而 memory_limit 参数设置为 90G,则实际物理机上 OceanBase 数据库可分配的内存使用 memory_limit 的配置,即 90 G。
使用注意事项:
* memory_limit 的默认单位为 MB。
例如,`memory_limit='40G' `表示设置 OceanBase 数据库进程的使用内存上限是40 GB。由于默认单位为 MB,则 `memory_limit=40960 ``memory_limit='40G' `设置的值相同。
* memory_limit 的值目前无上限。如果设置的内存最大上限超过了实际的物理内存总和,则会导致系统中其他按总内存计算的值偏大。
* 如果希望限制运行中的 OceanBase 数据库的内存大小,可以直接修改 memory_limit 的值,使其达到预期。设置后,后台参数 Reload 线程会使其动态生效,无需重启。但是在设置时,需要保证 memory_limit 的值小于系统总 hold 值。
**注意**
`memory_limit `的值必须大于 OBServer 实际已使用的内存。
查询当前已使用的内存数(单位:GB)的方法如下:
```sql
obclient> SELECT value/1024/1024/1024 used_gb FROM v$sysstat WHERE name LIKE '%observer memory%' AND con_id = 1 AND stat_id=140008 AND name='observer memory used size';
```

View File

@ -0,0 +1,15 @@
memory_limit_percentage
============================================
memory_limit_percentage 用于设置系统总可用内存大小占总内存大小的百分比。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 80 |
| 取值范围 | \[10, 90\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
memory_reserved
====================================
memory_reserved 用于设置系统预留内存的大小。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 容量单位 |
| 默认值 | 500M |
| 取值范围 | \[10M, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
merge_thread_count
=======================================
`merge_thread_count` 用于设置每日合并工作的线程数。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, 256\] |
| 是否重启 OBServer 生效 | 否 |
该配置项的值为 `0` 时,合并的工作进程数的计算方式为 `min{10,cpu_cnt*0.3}`,其中 `cpu_cnt` 为系统 CPU 的数量。

View File

@ -0,0 +1,15 @@
merger_check_interval
==========================================
merger_check_interval 用于设置合并状态检查线程的调度间隔。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 10m,表示 10 分钟 |
| 取值范围 | \[10s, 60m\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
merger_completion_percentage
=================================================
merger_completion_percentage 用于设置合并完成副本数的百分比阈值,达到该阈值则认为本轮合并完成调度。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 100 |
| 取值范围 | \[5, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
merger_switch_leader_duration_time
=======================================================
merger_switch_leader_duration_time 用于设置每日合并时批量切主的时间间隔。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 时间类型 |
| 默认值 | 3m,表示 3 分钟 |
| 取值范围 | \[0s, 30\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
merger_warm_up_duration_time
=================================================
merger_warm_up_duration_time 用于设置合并时,新版基线数据的预热时间。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 时间类型 |
| 默认值 | 0s |
| 取值范围 | \[0s, 60m\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
max_px_worker_count
========================================
max_px_worker_count 用于设置 SQL 并行查询引擎使用的最大线程数。
| **属** **性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 64 |
| 取值范围 | \[0, 65535\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
balance_blacklist_failure_threshold
========================================================
balance_blacklist_failure_threshold 用于设置副本迁移等后台任务连续失败次数的阈值。副本迁移等后台任务连续失败次数超过该阈值后,将被放入黑名单。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 5 |
| 取值范围 | \[0, 1000\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
migration_disable_time
===========================================
migration_disable_time 用于设置因磁盘满等原因导致某个节点数据迁入失败时的暂停迁入时长。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 3600s |
| 取值范围 | \[1s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
min_observer_version
=========================================
`min_observer_version` 用于设置本集群最低的 OBServer 应用程序版本号。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 字符串 |
| 默认值 | 3.1.0 |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
minor_deferred_gc_time
===========================================
minor_deferred_gc_time 用于设置合并之后 SSTable 延迟回收的时间间隔。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 时间类型 |
| 默认值 | 0s |
| 取值范围 | \[0s, 24h\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,19 @@
minor_freeze_times
=======================================
minor_freeze_times 用于设置多少次小合并触发一次全局合并。值为 0 时,表示关闭小合并。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 5 |
| 取值范围 | \[0, 65535\] |
| 是否重启 OBServer 生效 | 否 |
**说明**
minor_freeze_times 配置项与 major_compact_trigger 配置项具有相同功能。

View File

@ -0,0 +1,16 @@
minor_warm_up_duration_time
================================================
minor_warm_up_duration_time 用于设置小合并产生新转储文件的预热时间。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 时间类型 |
| 默认值 | 30s |
| 取值范围 | \[0s, 60m\] |
| 是否重启 OBServer 生效 | 否 |
当 minor_warm_up_duration_time 配置项的值为 0s 时,表示不进行预热。

View File

@ -0,0 +1,15 @@
mysql_port
===============================
mysql_port 用于设置 SQL 服务协议端口号。
| **属性** | **描述** |
|------------------|-----------------|
| 参数类型 | 整型 |
| 默认值 | 2880 |
| 取值范围 | \[1025, 65535\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
minor_merge_concurrency
============================================
minor_merge_concurrency 用于设置小合并时的并发线程数。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, 64\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
multiblock_read_gap_size
=============================================
multiblock_read_gap_size 用于设置一次 IO 聚合读取块缓存的最大容量。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 容量单位 |
| 默认值 | 0K |
| 取值范围 | \[0k, 2M\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
multiblock_read_size
=========================================
multiblock_read_size 用于设置读取数据时 IO 聚合大小。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 容量单位 |
| 默认值 | 128k |
| 取值范围 | \[0K, 2M\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
micro_block_merge_verify_level
===================================================
micro_block_merge_verify_level 用于设置合并时宏块的校验级别。
| **属性** | **描述** |
|------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 参数类型 | 整型 |
| 默认值 | 2 |
| 取值范围 | * 0:表示不做校验 * 1:表示验证编码算法,将读取编码后的微块以确保数据正确 * 2:表示验证编码和压缩算法,除编码验证外,还将对压缩块进行解压缩以确保数据正确 * 3:表示验证编码,压缩算法和丢失写保护 |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
balance_blacklist_retry_interval
=====================================================
balance_blacklist_retry_interval 用于设置副本迁移等后台任务被放入黑名单后的重试时间间隔。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 30m,表示 30 分钟 |
| 取值范围 | \[0s, 180m\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
migrate_concurrency
========================================
migrate_concurrency 用于控制控制内部数据迁移的并发度。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 10 |
| 取值范围 | \[0, 64\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,16 @@
minor_compact_trigger
==========================================
minor_compact_trigger 用于控制分层转储触发向下一层下压的阈值。当该层的 Mini SSTable 总数达到设定的阈值时,所有 SSTable 都会被下压到下一层,组成新的 Minor SSTable。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 2 |
| 取值范围 | \[0, 16\] |
| 是否重启 OBServer 生效 | 否 |
当 minor_compact_trigger 的值为 0 时,OceanBase 数据库仍会进行分层转储,即此时 MemTable 仍然会 Dump 为 Mini SSTable,但后续会立即调度下压合并生成新的 Minor SSTable,替代原有的 Minor SSTable。

View File

@ -0,0 +1,20 @@
memstore_limit_percentage
==============================================
memstore_limit_percentage 用于设置租户使用 memstore 的内存占其总可用内存的百分比。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 50 |
| 取值范围 | \[1, 99\] |
| 是否重启 OBServer 生效 | 否 |
memstore_limit_percentage 配置项用于计算 Memstore_limit 的值:
memstore_limit_percentage = memstore_limit / min_memory
其中,min_memory 为创建租户时指定的值。

View File

@ -0,0 +1,16 @@
net_thread_count
=====================================
net_thread_count 用于设置网络 I/O 线程数。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 12 |
| 取值范围 | \[1, 100\] |
| 是否重启 OBServer 生效 | 否 |
当 net_thread_count 配置项值为 8 时,表示 RPC 和 MySQL 的 libeasy 的 I/O 线程各为 8 个线程。

View File

@ -0,0 +1,15 @@
obconfig_url
=================================
obconfig_url 用于设置 OBConfig 服务的 URL 地址。OBServer 从指定 URL 获取 RootService 的地址。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 字符串类型 |
| 默认值 | 空值 |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
ob_enable_batched_multi_statement
======================================================
ob_enable_batched_multi_statement 用于设置是否启用批处理多条语句的功能。
| **属性** | **描述** |
|------------------|---------------------------------------------------------------------------------------------------------------|
| 参数类型 | 布尔类型 |
| 默认值 | False |
| 取值范围 | * False:不启用 * True:启用 |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
partition_table_check_interval
===================================================
partition_table_check_interval 用于设置 OBServer 从分区表中删除不存在的副本的时间间隔。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 30m,表示 30 分钟 |
| 取值范围 | \[1m, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
partition_table_scan_batch_count
=====================================================
partition_table_scan_batch_count 用于设置批量读取分区表信息的数量。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 999 |
| 取值范围 | \[1, 65536\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
plan_cache_evict_interval
==============================================
plan_cache_evict_interval 用于设置执行计划缓存的淘汰时间间隔。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 30s |
| 取值范围 | \[0s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
px_task_size
=================================
px_task_size 用于设置 SQL 并行查询引擎每个任务处理的数据量大小。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 2M |
| 取值范围 | \[2M, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
backup_concurrency
=======================================
backup_concurrency 用于设置备份时写文件系统的并发数量。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
px_workers_per_cpu_quota
=============================================
px_workers_per_cpu_quota 用于设置并行执行工作线程数的比例。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 10 |
| 取值范围 | \[0, 20\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
replica_safe_remove_time
=============================================
replica_safe_remove_time 用于设置已删除副本可以被清理的安全保留时间。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 2h |
| 取值范围 | \[1m, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,30 @@
resource_hard_limit
========================================
resource_hard_limit 用于分配 unit 。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 100 |
| 取值范围 | \[1, 10000\] |
| 是否重启 OBServer 生效 | 否 |
resource_hard_limit 与 resource_soft_limit 配置项一起配合使用。
* 如果 Server 的资源占用比少于 resource_soft_limit,则按 best_fit 来分配 Unit;
* 如果 Server 的资源占用比大于 resource_soft_limit,则按照 leaset_load 来分配 Unit。
在分配 CPU 和内存等资源时,资源总量是实际数量乘以该百分比的值。最终 Server 资源占比不能超过 resource_hard_limit。

View File

@ -0,0 +1,16 @@
resource_soft_limit
========================================
resource_soft_limit 用于设置是否开启 Unit 均衡。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 整型 |
| 默认值 | 50 |
| 取值范围 | \[1, 10000\] |
| 是否重启 OBServer 生效 | 否 |
当 resource_soft_limit 配置项取值小于 100 时, 表示 Unit 均衡开关打开;当时 resource_soft_limit 配置项取值大于等于 100 时,表示 Unit 均衡开关关闭。

View File

@ -0,0 +1,15 @@
rootservice_async_task_queue_size
======================================================
rootservice_async_task_queue_size 用于设置 RootService 内部异步任务队列的大小。
| **属性** | **描述** |
|------------------|---------------|
| 参数类型 | 整型 |
| 默认值 | 16384 |
| 取值范围 | \[8, 131072\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
rootservice_async_task_thread_count
========================================================
rootservice_async_task_thread_count 用于设置 RootService 内部异步任务使用的线程池大小。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 4 |
| 取值范围 | \[1, 10\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
rootservice_list
=====================================
rootservice_list 用于显示 RootService 及其副本所在的机器列表。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 字符串 |
| 默认值 | 空值 |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
rootservice_ready_check_interval
=====================================================
rootservice_ready_check_interval 用于设置 RootService 启动后等待和检查集群状态的时间间隔。
| **属性** | **描述** |
|------------------|------------------|
| 参数类型 | 时间类型 |
| 默认值 | 3s |
| 取值范围 | \[100000us, 1m\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
row_compaction_update_limit
================================================
row_compaction_update_limit 用于设置触发内存中行内数据合并的修改次数。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 6 |
| 取值范围 | \[1, 6400\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
row_purge_thread_count
===========================================
row_purge_thread_count 用于设置执行内存中行内数据合并的最大工作线程数。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 4 |
| 取值范围 | \[1, 64\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,19 @@
backup_dest
================================
backup_dest 用于设置基线备份和日志归档的路径。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 字符串 |
| 默认值 | 空值 |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |
**注意**
备份进行过程中不可修改 backup_dest 配置项。

View File

@ -0,0 +1,14 @@
rpc_port
=============================
rpc_port 用于设置远程访问的协议端口号。
| **属性** | **描述** |
|------------------|-----------------|
| 参数类型 | 整型 |
| 默认值 | 2500 |
| 取值范围 | \[1025, 65535\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
rpc_timeout
================================
rpc_timeout 用于设置集群内部请求的超时时间。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 时间类型 |
| 默认值 | 2s |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
restore_concurrency
========================================
restore_concurrency 用于设置从备份恢复租户数据时的最大并发度。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, 512\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
rootservice_memory_limit
=============================================
rootservice_memory_limit 用于设置 RootService 的最大内存容量限制。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 2G |
| 取值范围 | \[2G, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,17 @@
rebuild_replica_data_lag_threshold
=======================================================
rebuild_replica_data_lag_threshold 用于设置备副本的事务日志和主副本差距的阈值,当超过该阈值时,会触发副本重建。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 容量单位 |
| 默认值 | 50GB |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |
rebuild_replica_data_lag_threshold 配置项的值为 0 时,表示不触发副本重建。

View File

@ -0,0 +1,14 @@
schema_history_expire_time
===============================================
schema_history_expire_time 用于设置元数据历史数据过期时间。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 时间类型 |
| 默认值 | 7d,d 表示天 |
| 取值范围 | \[1h, 30d\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,19 @@
ssl_client_authentication
==============================================
ssl_client_authentication 用于设置是否开启 SSL 连接功能。
| **属性** | **描述** |
|------------------|---------------------------------------------------------------------------------------------------------------|
| 参数类型 | 布尔类型 |
| 默认值 | False |
| 取值范围 | * False:不开启 * True:开启 |
| 是否重启 OBServer 生效 | 是 |
**注意**
ssl_client_authentication 配置后,仅在服务器重新启动所有 ca、cert、key 等文件后才生效。

View File

@ -0,0 +1,15 @@
server_check_interval
==========================================
server_check_interval 用于设置 Server 表一致性检查的时间间隔。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 时间类型 |
| 默认值 | 30s |
| 取值范围 | \[1s, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
server_data_copy_in_concurrency
====================================================
server_data_copy_in_concurrency 用于设置单个节点迁入数据的最大并发数。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 2 |
| 取值范围 | \[1, 1000\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
server_data_copy_out_concurrency
=====================================================
server_data_copy_out_concurrency 用于设置单个节点迁出数据的最大并发数。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 2 |
| 取值范围 | \[1, 1000\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
backup_net_limit
=====================================
backup_net_limit 用于设置集群备份的总带宽。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 0M |
| 取值范围 | \[0M, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,38 @@
server_permanent_offline_time
==================================================
server_permanent_offline_time 用于设置节点心跳中断的时间阈值,即节点心跳中断多久后认为其被永久下线,永久下线的节点上的数据副本需要被自动补足。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 时间类型 |
| 默认值 | 3600s |
| 取值范围 | \[20s, +∞) |
| 是否重启 OBServer 生效 | 否 |
通过设置该配置项,可以避免不必要的副本复制,仅当副本丢失超出该时长后系统才启动永久下线节点上数据副本的复制。
该配置项的适用场景及建议值如下:
* OceanBase 数据库版本升级场景:建议将该配置项的值设置为 `72h`
**说明**
在使用 OCP V2.3.5 及以上版本对 OceanBase 数据库 V2.1.2 及以上版本进行升级时,系统会自动将该配置项的值设置为 `72h`
* OBServer 硬件更换场景:建议将该配置项的值设置为 `4h`
* OBServer 清空上线场景:建议将该配置项的值设置为 `10m`,使集群快速上线

View File

@ -0,0 +1,15 @@
stack_size
===============================
stack_size 用于设置程序函数调用栈的大小。
| **属性** | **描述** |
|------------------|---------------|
| 参数类型 | 容量单位 |
| 默认值 | 1M |
| 取值范围 | \[512K, 20M\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
server_balance_critical_disk_waterlevel
============================================================
server_balance_critical_disk_waterlevel 用于设置磁盘空间的负载均衡功能的水位线。当磁盘水位线超过阈值时,负载均衡策略将倾向于优先考虑磁盘均衡。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 80 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
server_balance_disk_tolerance_percent
==========================================================
server_balance_disk_tolerance_percent 用于设置节点间磁盘负载均衡策略中不均衡程度的容忍度。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 1 |
| 取值范围 | \[1, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,19 @@
system_memory
==================================
`system_memory` 用于设置系统预留的内存容量。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 容量单位 |
| 默认值 | 30G |
| 取值范围 | \[0M, +∞) |
| 是否重启 OBServer 生效 | 否 |
**注意**
系统预留内存不能分配给普通租户使用。

View File

@ -0,0 +1,15 @@
server_balance_cpu_mem_tolerance_percent
=============================================================
server_balance_cpu_mem_tolerance_percent 在节点负载均衡策略中,用于设置 CPU 和内存资源不均衡的容忍度。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 5 |
| 取值范围 | \[1, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,14 @@
server_cpu_quota_max
=========================================
server_cpu_quota_max 用于设置系统可以使用的最大 CPU 配额。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 双精度浮点数 |
| 默认值 | 5 |
| 取值范围 | \[0, 16\] |
| 是否重启 OBServer 生效 | 是 |

View File

@ -0,0 +1,14 @@
server_cpu_quota_min
=========================================
server_cpu_quota_min 用于设置系统可以使用的最小 CPU 配额,系统会自动预留。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 双精度浮点数 |
| 默认值 | 2.5 |
| 取值范围 | \[0, 16\] |
| 是否重启 OBServer 生效 | 是 |

View File

@ -0,0 +1,15 @@
sql_audit_memory_limit
===========================================
sql_audit_memory_limit 用于设置 SQL 审计数据可占用的最大内存。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 容量单位 |
| 默认值 | 3G |
| 取值范围 | \[64M, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
sys_bkgd_io_high_percentage
================================================
sys_bkgd_io_high_percentage 用于设置系统后台 IO 最高占用百分比。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 90 |
| 取值范围 | \[1, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,19 @@
backup_recovery_window
===========================================
backup_recovery_window 用于设置备份数据可以恢复的时间。
| **属性** | **描述** |
|------------------|----------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, +∞) |
| 是否重启 OBServer 生效 | 否 |
**说明**
备份数据恢复的时间单位为天,默认值为 0,表示不自动清理。

View File

@ -0,0 +1,16 @@
sys_bkgd_io_low_percentage
===============================================
sys_bkgd_io_low_percentage 用于设置系统后台 IO 最少占用的百分比。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 0 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |
当 sys_bkgd_io_low_percentage 的值为 0 时,系统根据环境自动配置比例。

View File

@ -0,0 +1,14 @@
sys_bkgd_io_timeout
========================================
sys_bkgd_io_timeout 系统后台 IO 请求超时时间。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 120s |
| 取值范围 | \[5s, 600s\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
sys_bkgd_net_percentage
============================================
sys_bkgd_net_percentage 用于设置后台系统任务可占用网络带宽百分比。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 60 |
| 取值范围 | \[0, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
sys_bkgd_migration_change_member_list_timeout
==================================================================
sys_bkgd_migration_change_member_list_timeout 用于设置副本迁移时变更 Paxos 成员组操作的超时时间。
| **属性** | **描述** |
|------------------|--------------|
| 参数类型 | 时间类型 |
| 默认值 | 1h |
| 取值范围 | \[0s, 24 h\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
sys_bkgd_migration_retry_num
=================================================
sys_bkgd_migration_retry_num 用于设置副本迁移失败时最多重试次数。
| **属性** | **描述** |
|------------------|------------|
| 参数类型 | 整型 |
| 默认值 | 3 |
| 取值范围 | \[3, 100\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
syslog_level
=================================
syslog_level 用于设置系统日志级别。
| **属性** | **描述** |
|------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 参数类型 | 字符串 |
| 默认值 | INFO |
| 取值范围 | * DEBUG * TRACE * INFO * WARN * USER_ERR * ERROR\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
switchover_process_thread_count
====================================================
switchover_process_thread_count 用于设置主备库切换相关线程池的大小。
| **属性** | **描述** |
|------------------|-------------|
| 参数类型 | 整型 |
| 默认值 | 6 |
| 取值范围 | \[1, 1000\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
system_cpu_quota
=====================================
system_cpu_quota 用于设置系统租户可使用的 CPU 配额。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 双精度浮点数 |
| 默认值 | 10 |
| 取值范围 | \[0, 16\] |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
sys_cpu_limit_trigger
==========================================
sys_cpu_limit_trigger 用于设置 CPU 利用率阈值,即当 CPU 利用率超过该阈值时,将暂停系统后台任务的执行。
| **属性** | **描述** |
|------------------|-----------|
| 参数类型 | 整型 |
| 默认值 | 80 |
| 取值范围 | \[50, +∞) |
| 是否重启 OBServer 生效 | 否 |

View File

@ -0,0 +1,15 @@
syslog_io_bandwidth_limit
==============================================
syslog_io_bandwidth_limit 用于设置系统日志所能占用的磁盘 IO 带宽上限,超过带宽上限容量的系统日志将被丢弃。
| **属性** | **描述** |
|------------------|--------|
| 参数类型 | 容量单位 |
| 默认值 | 30MB |
| 取值范围 | NULL |
| 是否重启 OBServer 生效 | 否 |

Some files were not shown because too many files have changed in this diff Show More