From 4392ec3ee9bf6670702eef5b7444154c7fcb290a Mon Sep 17 00:00:00 2001 From: "Jared.Tan" Date: Thu, 29 Nov 2018 20:10:01 +0800 Subject: [PATCH] TiDB storage provided and features tested (#1978) * add TiDB configuration description. * add tested mysql client driver version --- docs/en/setup/backend/backend-storage.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/en/setup/backend/backend-storage.md b/docs/en/setup/backend/backend-storage.md index 01321daf4..5c2fcd538 100644 --- a/docs/en/setup/backend/backend-storage.md +++ b/docs/en/setup/backend/backend-storage.md @@ -60,7 +60,18 @@ All connection related settings including link url, username and password are in `databsource-settings.properties`. This setting file follow [HikariCP](https://github.com/brettwooldridge/HikariCP) connection pool document. +## TiDB +Currently tested TiDB in version 2.0.9, and Mysql Client driver in version 8.0.13. +Active TiDB as storage, set storage provider to **mysql**. + +```yaml +storage: + mysql: +``` + +All connection related settings including link url, username and password +are in `databsource-settings.properties`. And these settings can refer to the configuration of *MySQL* above. ## More storage solution extension Follow [Storage extension development guide](../../guides/storage-extention.md) -in [Project Extensions document](../../guides/README.md#project-extensions) in development guide. \ No newline at end of file +in [Project Extensions document](../../guides/README.md#project-extensions) in development guide.