浏览代码

SQL: Clarify that the connections the jdbc driver creates are not pooled (#42992)

Andrei Stefan 6 年之前
父节点
当前提交
406d5281bd
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      docs/reference/sql/endpoints/jdbc.asciidoc

+ 5 - 0
docs/reference/sql/endpoints/jdbc.asciidoc

@@ -207,3 +207,8 @@ connection. For example:
 --------------------------------------------------
 --------------------------------------------------
 include-tagged::{jdbc-tests}/SimpleExampleTestCase.java[simple_example]
 include-tagged::{jdbc-tests}/SimpleExampleTestCase.java[simple_example]
 --------------------------------------------------
 --------------------------------------------------
+
+NOTE:: {es-sql} doesn't provide a connection pooling mechanism, thus the connections
+the JDBC driver creates are not pooled. In order to achieve pooled connections,
+a third-party connection pooling mechanism is required. Configuring and setting up the
+third-party provider is outside the scope of this documentation.