doc: resolve broken links

This commit is contained in:
gccgdb1234 2022-08-26 19:25:43 +08:00
parent 9d4a6de45a
commit 9aca48b650
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ TDengine is a distributed and high performance time series database, there are a
1. Set proper number of `vgroups` according to available CPU cores. Normally, we recommend 2 \* number_of_cores as a starting point. If the verification result shows this is not enough to utilize CPU resources, you can use a higher value.
2. Set proper `minTablesPerVnode`, `tableIncStepPerVnode`, and `maxVgroupsPerDb` according to the number of tables so that tables are distributed even across vgroups. The purpose is to balance the workload among all vnodes so that system resources can be utilized better to get higher performance.
For more performance tuning tips, please refer to [Performance Optimization](../../../operation/optimize) and [Configuration Parameters](../../../reference/config).
For more performance tuning parameters, please refer to [Configuration Parameters](../../../reference/config).
## Sample Programs

View File

@ -44,7 +44,7 @@ import TabItem from "@theme/TabItem";
如果总表数比较大比如大于500万适当增加 maxVgroupsPerDb 也能显著提高建表的速度。maxVgroupsPerDb 默认值为 0 自动配置为 CPU 的核数。 如果表的数量巨大,也建议调节 maxTablesPerVnode 参数,以免超过单个 vnode 建表的上限。
更多调优参数,请参考[性能优化](../../../operation/optimize)和[配置参考](../../../reference/config)部分。
更多调优参数,请参考 [配置参考](../../../reference/config)部分。
## 高效写入示例 {#sample-code}