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

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


The following commit(s) were added to refs/heads/master by this push:
     new ef80c4e  Update sql.md (#6821)
ef80c4e is described below

commit ef80c4e0368143f45e43f6b8f6405a89fa60920a
Author: Benjamin Hopp <[email protected]>
AuthorDate: Tue Jan 8 12:15:12 2019 -0600

    Update sql.md (#6821)
    
    Corrected defaults for druid.sql.avatica.maxStatementsPerConnection and 
druid.sql.avatica.maxConnections
---
 docs/content/querying/sql.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content/querying/sql.md b/docs/content/querying/sql.md
index 76080fb..569ad50 100644
--- a/docs/content/querying/sql.md
+++ b/docs/content/querying/sql.md
@@ -658,9 +658,9 @@ The Druid SQL server is configured through the following 
properties on the broke
 |--------|-----------|-------|
 |`druid.sql.enable`|Whether to enable SQL at all, including background 
metadata fetching. If false, this overrides all other SQL-related properties 
and disables SQL metadata, serving, and planning completely.|false|
 |`druid.sql.avatica.enable`|Whether to enable JDBC querying at 
`/druid/v2/sql/avatica/`.|true|
-|`druid.sql.avatica.maxConnections`|Maximum number of open connections for the 
Avatica server. These are not HTTP connections, but are logical client 
connections that may span multiple HTTP connections.|50|
+|`druid.sql.avatica.maxConnections`|Maximum number of open connections for the 
Avatica server. These are not HTTP connections, but are logical client 
connections that may span multiple HTTP connections.|25|
 |`druid.sql.avatica.maxRowsPerFrame`|Maximum number of rows to return in a 
single JDBC frame. Setting this property to -1 indicates that no row limit 
should be applied. Clients can optionally specify a row limit in their 
requests; if a client specifies a row limit, the lesser value of the 
client-provided limit and `maxRowsPerFrame` will be used.|5,000|
-|`druid.sql.avatica.maxStatementsPerConnection`|Maximum number of simultaneous 
open statements per Avatica client connection.|1|
+|`druid.sql.avatica.maxStatementsPerConnection`|Maximum number of simultaneous 
open statements per Avatica client connection.|4|
 |`druid.sql.avatica.connectionIdleTimeout`|Avatica client connection idle 
timeout.|PT5M|
 |`druid.sql.http.enable`|Whether to enable JSON over HTTP querying at 
`/druid/v2/sql/`.|true|
 |`druid.sql.planner.maxQueryCount`|Maximum number of queries to issue, 
including nested queries. Set to 1 to disable sub-queries, or set to 0 for 
unlimited.|8|


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to