You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2018/11/29 12:10:06 UTC

[incubator-skywalking] branch master updated: TiDB storage provided and features tested (#1978)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 4392ec3  TiDB  storage provided and features tested (#1978)
4392ec3 is described below

commit 4392ec3ee9bf6670702eef5b7444154c7fcb290a
Author: Jared.Tan <ji...@daocloud.io>
AuthorDate: Thu Nov 29 20:10:01 2018 +0800

    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 01321da..5c2fcd5 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.