This is an automated email from the ASF dual-hosted git repository.
jianglongtao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git
The following commit(s) were added to refs/heads/master by this push:
new c2c5198 Fix `faq` invalid links (#13579)
c2c5198 is described below
commit c2c51985437eeb53ea7d7ac257fedf5064a330b4
Author: yx9o <[email protected]>
AuthorDate: Sat Nov 13 09:41:25 2021 +0800
Fix `faq` invalid links (#13579)
---
docs/document/content/reference/faq/_index.cn.md | 8 ++++----
docs/document/content/reference/faq/_index.en.md | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/docs/document/content/reference/faq/_index.cn.md
b/docs/document/content/reference/faq/_index.cn.md
index 254c847..65c2b4d 100644
--- a/docs/document/content/reference/faq/_index.cn.md
+++ b/docs/document/content/reference/faq/_index.cn.md
@@ -77,7 +77,7 @@ DROP SCHEMA sharding_db;
1. 第三方数据库工具在连接 ShardingSphere-Proxy 时会发送一些 SQL 查询元数据,当 ShardingSphere-Proxy
没有创建 `schema` 或者没有添加 `resource` 时,ShardingSphere-Proxy 无法执行 SQL。
2. 推荐先创建 `schema` 和 `resource` 之后再使用第三方数据库工具连接。
-3. 有关 `resource`
的详情请参考。[相关介绍](https://shardingsphere.apache.org/document/current/cn/features/dist-sql/syntax/rdl/rdl-resource/)
+3. 有关 `resource`
的详情请参考。[相关介绍](https://shardingsphere.apache.org/document/current/cn/user-manual/shardingsphere-proxy/usage/distsql/syntax/rdl/rdl-resource/)
## 8. [分片] Cloud not resolve placeholder ... in string value ...异常的解决方法?
@@ -131,7 +131,7 @@ ShardingSphere 采用 snowflake 算法作为默认的分布式自增主键策略
具体的 SPI 使用方式,请大家自行搜索。
-与分布式主键 `KeyGenerateAlgorithm` 接口相同,其他 ShardingSphere
的[扩展功能](https://shardingsphere.apache.org/document/current/cn/features/pluggable-architecture/)也需要用相同的方式注入才能生效。
+与分布式主键 `KeyGenerateAlgorithm` 接口相同,其他 ShardingSphere
的[扩展功能](https://shardingsphere.apache.org/document/current/cn/concepts/pluggable/)也需要用相同的方式注入才能生效。
## 15. [分片] ShardingSphere 除了支持自带的分布式自增主键之外,还能否支持原生的自增主键?
@@ -159,7 +159,7 @@ ShardingSphere 采用 snowflake 算法作为默认的分布式自增主键策略
1. 如需自定义JDBC参数,请使用 `urlSource` 的方式定义 `dataSource`。
2. ShardingSphere预置了必要的连接池参数,如 `maxPoolSize`、`idleTimeout` 等。如需增加或覆盖参数配置,请在
`dataSource` 中通过 `PROPERTIES` 指定。
-3. 以上规则请参考
[相关介绍](https://shardingsphere.apache.org/document/current/cn/features/dist-sql/syntax/rdl/rdl-resource/)
+3. 以上规则请参考
[相关介绍](https://shardingsphere.apache.org/document/current/cn/user-manual/shardingsphere-proxy/usage/distsql/syntax/rdl/rdl-resource/)
## 18. [其他] 如果 SQL 在 ShardingSphere 中执行不正确,该如何调试?
@@ -284,7 +284,7 @@
https://ourcodeworld.com/articles/read/109/how-to-solve-filename-too-long-error-
回答:
-ShardingSphere 中很多功能实现类的加载方式是通过
[SPI](https://shardingsphere.apache.org/document/current/cn/features/pluggable-architecture/)
注入的方式完成的,如分布式主键,注册中心等;这些功能通过配置中 type 类型来寻找对应的 SPI 实现,因此必须在配置文件中指定类型。
+ShardingSphere 中很多功能实现类的加载方式是通过
[SPI](https://shardingsphere.apache.org/document/current/cn/concepts/pluggable/)
注入的方式完成的,如分布式主键,注册中心等;这些功能通过配置中 type 类型来寻找对应的 SPI 实现,因此必须在配置文件中指定类型。
## 24. [其他] 服务启动时如何加快 `metadata` 加载速度?
diff --git a/docs/document/content/reference/faq/_index.en.md
b/docs/document/content/reference/faq/_index.en.md
index 6723707..35c2beb 100644
--- a/docs/document/content/reference/faq/_index.en.md
+++ b/docs/document/content/reference/faq/_index.en.md
@@ -77,7 +77,7 @@ Answer:
1. Third-party database tools will send some SQL query metadata when
connecting to ShardingSphere-Proxy. When ShardingSphere-Proxy does not create a
`schema` or does not add a `resource`, ShardingSphere-Proxy cannot execute SQL.
2. It is recommended to create `schema` and `resource` first, and then use
third-party database tools to connect.
-3. Please refer to the details about `resource`.
+3. Please refer to [Related
introduction](https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-proxy/usage/distsql/syntax/rdl/rdl-resource/)
the details about `resource`.
## 8. [Sharding] How to solve `Cloud not resolve placeholder … in string value
…` error?
@@ -131,7 +131,7 @@ Answer:
More detail for SPI usage, please search by yourself.
-Other ShardingSphere [functionality
implementation](https://shardingsphere.apache.org/document/current/en/features/pluggable-architecture/)
will take effect in the same way.
+Other ShardingSphere [functionality
implementation](https://shardingsphere.apache.org/document/current/en/concepts/pluggable/)
will take effect in the same way.
## 15. [Sharding] In addition to internal distributed primary key, does
ShardingSphere support other native auto-increment keys?
@@ -161,7 +161,7 @@ Answer:
1. If you need to customize JDBC connection properties, please take the
`urlSource` way to define `dataSource`.
2. ShardingSphere presets necessary connection pool properties, such as
`maxPoolSize`, `idleTimeout`, etc. If you need to add or overwrite the
properties, please specify it with `PROPERTIES` in the `dataSource`.
-3. Please refer to [Related
introduction](https://shardingsphere.apache.org/document/current/en/features/dist-sql/syntax/rdl/rdl-resource/)
for above rules.
+3. Please refer to [Related
introduction](https://shardingsphere.apache.org/document/current/en/user-manual/shardingsphere-proxy/usage/distsql/syntax/rdl/rdl-resource/)
for above rules.
## 18. [Other] How to debug when SQL can not be executed rightly in
ShardingSphere?
@@ -285,7 +285,7 @@
https://ourcodeworld.com/articles/read/109/how-to-solve-filename-too-long-error-
Answer:
-In Apache ShardingSphere, many functionality implementation are uploaded
through
[SPI](https://shardingsphere.apache.org/document/current/en/features/pluggable-architecture/),
such as Distributed Primary Key. These functions load SPI implementation by
configuring the `type`,so the `type` must be specified in the configuration
file.
+In Apache ShardingSphere, many functionality implementation are uploaded
through
[SPI](https://shardingsphere.apache.org/document/current/en/concepts/pluggable/),
such as Distributed Primary Key. These functions load SPI implementation by
configuring the `type`,so the `type` must be specified in the configuration
file.
## 24. [Other] How to speed up the metadata loading when service starts up?