Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions docs/reference/sql/endpoints/jdbc.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -88,20 +88,20 @@ Timezone used by the driver _per connection_ indicated by its `ID`.
[discrete]
===== Network

`connect.timeout` (default 30s)::
Connection timeout (in seconds). That is the maximum amount of time waiting to make a connection to the server.
`connect.timeout` (default `30000`)::
Connection timeout (in milliseconds). That is the maximum amount of time waiting to make a connection to the server.

`network.timeout` (default 60s)::
Network timeout (in seconds). That is the maximum amount of time waiting for the network.
`network.timeout` (default `60000`)::
Network timeout (in milliseconds). That is the maximum amount of time waiting for the network.

`page.timeout` (default 45s)::
Page timeout (in seconds). That is the maximum amount of time waiting for a page.
`page.timeout` (default `45000`)::
Page timeout (in milliseconds). That is the maximum amount of time waiting for a page.

`page.size` (default 1000)::
`page.size` (default `1000`)::
Page size (in entries). The number of results returned per page by the server.

`query.timeout` (default 90s)::
Query timeout (in seconds). That is the maximum amount of time waiting for a query to return.
`query.timeout` (default `90000`)::
Query timeout (in milliseconds). That is the maximum amount of time waiting for a query to return.

[[jdbc-cfg-auth]]
[discrete]
Expand All @@ -115,7 +115,7 @@ Query timeout (in seconds). That is the maximum amount of time waiting for a que
[discrete]
==== SSL

`ssl` (default false):: Enable SSL
`ssl` (default `false`):: Enable SSL

`ssl.keystore.location`:: key store (if used) location

Expand Down Expand Up @@ -150,7 +150,7 @@ will be - typically the first in natural ascending order) for fields with multip
[discrete]
==== Additional

`validate.properties` (default true):: If disabled, it will ignore any misspellings or unrecognizable properties. When enabled, an exception
`validate.properties` (default `true`):: If disabled, it will ignore any misspellings or unrecognizable properties. When enabled, an exception
will be thrown if the provided property cannot be recognized.


Expand Down