File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -386,17 +386,26 @@ method of backend clusters. Configure a username and password by adding
386386` backendState` to your configuration. The username and password must be valid
387387across all backends.
388388
389+ Trino Gateway uses `explicitPrepare=false` by default. This property was introduced
390+ in Trino 431, and uses a single query for prepared statements, instead of a
391+ ` PREPARE/EXECUTE` pair. If you are using the JDBC health check option with older
392+ versions of Trino, set
393+ ` ` ` yaml
394+ monitorConfiguration:
395+ explicitPrepare: false
396+ ` ` `
397+
389398` ` ` yaml
390399backendState:
391400 username: "user"
392401 password: "password"
393402` ` `
394403
395- The request timeout can be set through
404+ The query timeout can be set through
396405
397406` ` ` yaml
398407monitor:
399- requestTimeoutSeconds : 10
408+ queryTimeout : 10
400409` ` `
401410
402411Other timeout parameters are not applicable to the JDBC connection.
You can’t perform that action at this time.
0 commit comments