You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2021/08/19 02:57:48 UTC

[iotdb] branch jdbc_doc_master created (now be5db74)

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

hxd pushed a change to branch jdbc_doc_master
in repository https://gitbox.apache.org/repos/asf/iotdb.git.


      at be5db74  claim that JDBC is not suitable for high throughput operations

This branch includes the following new commits:

     new be5db74  claim that JDBC is not suitable for high throughput operations

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: claim that JDBC is not suitable for high throughput operations

Posted by hx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch jdbc_doc_master
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit be5db74381a26ff26534eaf106fe50354a4dc62b
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Thu Aug 19 10:54:20 2021 +0800

    claim that JDBC is not suitable for high throughput operations
---
 docs/UserGuide/API/Programming-JDBC.md    |  4 ++++
 docs/zh/UserGuide/API/Programming-JDBC.md |  3 +++
 site/src/main/.vuepress/config.js         | 12 ++++++------
 3 files changed, 13 insertions(+), 6 deletions(-)

diff --git a/docs/UserGuide/API/Programming-JDBC.md b/docs/UserGuide/API/Programming-JDBC.md
index d4ac83c..0c2a50c 100644
--- a/docs/UserGuide/API/Programming-JDBC.md
+++ b/docs/UserGuide/API/Programming-JDBC.md
@@ -21,6 +21,10 @@
 
 ## JDBC
 
+*NOTICE: CURRENTLY, JDBC IS USED FOR CONNECTING SOME THIRD-PART TOOLS. 
+IT CAN NOT PROVIDE HIGH THROUGHPUT FOR WRITE OPERATIONS. 
+PLEASE USE [JAVA NATIVE API](Programming-Native-API.md) INSTEAD*
+
 ### Dependencies
 
 * JDK >= 1.8
diff --git a/docs/zh/UserGuide/API/Programming-JDBC.md b/docs/zh/UserGuide/API/Programming-JDBC.md
index 98d6e53..fc67262 100644
--- a/docs/zh/UserGuide/API/Programming-JDBC.md
+++ b/docs/zh/UserGuide/API/Programming-JDBC.md
@@ -21,6 +21,9 @@
 
 ## JDBC
 
+*注意: 目前的JDBC实现仅是为与第三方工具连接使用的。使用JDBC(尤其是执行插入语句时)无法提供高性能吞吐。
+对于Java应用,我们推荐使用[JAVA NATIVE API](Programming-Native-API.md) *
+
 ### 依赖
 
 * JDK >= 1.8
diff --git a/site/src/main/.vuepress/config.js b/site/src/main/.vuepress/config.js
index a8f70eb..6d83117 100644
--- a/site/src/main/.vuepress/config.js
+++ b/site/src/main/.vuepress/config.js
@@ -558,10 +558,10 @@ var config = {
 					{
 						title: 'API',
 						children: [
-							['API/Programming-JDBC','JDBC'],
 							['API/Programming-Native-API','Native API'],
 							['API/Programming-Other-Languages','Other Languages'],
-							['API/Programming-TsFile-API','TsFile API']
+							['API/Programming-TsFile-API','TsFile API'],
+							['API/Programming-JDBC','JDBC (Not Recommend)']
 						]
 					},
 					{
@@ -696,8 +696,8 @@ var config = {
 					{
 						title: 'API',
 						children: [
-							['API/Programming-JDBC','JDBC'],
 							['API/Programming-Java-Native-API','Java Native API'],
+							['API/Programming-JDBC','JDBC (Not Recommend)'],
 							['API/Programming-Python-Native-API','Python Native API'],
 							['API/Programming-Cpp-Native-API','C++ Native API'],
 							['API/Programming-Go-Native-API','Go Native API'],
@@ -1357,10 +1357,10 @@ var config = {
 					{
 						title: '应用编程接口',
 						children: [
-							['API/Programming-JDBC','JDBC'],
 							['API/Programming-Native-API','Java 原生接口'],
 							['API/Programming-Other-Languages','其他语言原生接口'],
-							['API/Programming-TsFile-API','TsFile API']
+							['API/Programming-TsFile-API','TsFile API'],
+							['API/Programming-JDBC','JDBC (不推荐)']
 						]
 					},
 					{
@@ -1489,8 +1489,8 @@ var config = {
 					{
 						title: '应用编程接口',
 						children: [
-							['API/Programming-JDBC','JDBC'],
 							['API/Programming-Java-Native-API','Java 原生接口'],
+							['API/Programming-JDBC','JDBC (不推荐)'],
 							['API/Programming-Python-Native-API','Python 原生接口'],
 							['API/Programming-Cpp-Native-API','C++ 原生接口'],
 							['API/Programming-Go-Native-API','Go 原生接口'],