Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions website/docs/components/data-accelerators/postgres/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The connection to PostgreSQL can be configured by providing the following `param
- `prefer`: This mode will try to establish a secure TLS connection if possible, but will connect insecurely if the server does not support TLS.
- `disable`: This mode will not attempt to use a TLS connection, even if the server supports it.
- `pg_sslrootcert`: Optional parameter specifying the path to a custom PEM certificate that the connector will trust.
- `pg_connection_pool_min_idle`: Optional. The minimum number of idle connections to keep open in the pool. Default is `1`.
- `connection_pool_size`: Optional. The maximum number of connections to keep open in the connection pool. Default is `5`.
- `pg_connection_pool_min`: Optional. The minimum number of connections to keep open in the pool, lazily created when requested. Default is `5`.
- `connection_pool_size`: Optional. The maximum number of connections created in the connection pool. Default is `10`.

Configuration `params` are provided in the `acceleration` section of a dataset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The connection to PostgreSQL can be configured by providing the following `param
- `prefer`: This mode will try to establish a secure TLS connection if possible, but will connect insecurely if the server does not support TLS.
- `disable`: This mode will not attempt to use a TLS connection, even if the server supports it.
- `pg_sslrootcert`: Optional parameter specifying the path to a custom PEM certificate that the connector will trust.
- `pg_connection_pool_min_idle`: Optional. The minimum number of idle connections to keep open in the pool. Default is `1`.
- `connection_pool_size`: Optional. The maximum number of connections to keep open in the connection pool. Default is `5`.
- `pg_connection_pool_min`: Optional. The minimum number of connections to keep open in the pool, lazily created when requested. Default is `5`.
- `connection_pool_size`: Optional. The maximum number of connections created in the connection pool. Default is `10`.

Configuration `params` are provided either in the `acceleration` section of a dataset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The connection to PostgreSQL can be configured by providing the following `param
- `prefer`: This mode will try to establish a secure TLS connection if possible, but will connect insecurely if the server does not support TLS.
- `disable`: This mode will not attempt to use a TLS connection, even if the server supports it.
- `pg_sslrootcert`: Optional parameter specifying the path to a custom PEM certificate that the connector will trust.
- `pg_connection_pool_min_idle`: Optional. The minimum number of idle connections to keep open in the pool. Default is `1`.
- `connection_pool_size`: Optional. The maximum number of connections to keep open in the connection pool. Default is `5`.
- `pg_connection_pool_min`: Optional. The minimum number of connections to keep open in the pool, lazily created when requested. Default is `5`.
- `connection_pool_size`: Optional. The maximum number of connections created in the connection pool. Default is `10`.

Configuration `params` are provided in the `acceleration` section of a dataset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The connection to PostgreSQL can be configured by providing the following `param
- `prefer`: This mode will try to establish a secure TLS connection if possible, but will connect insecurely if the server does not support TLS.
- `disable`: This mode will not attempt to use a TLS connection, even if the server supports it.
- `pg_sslrootcert`: Optional parameter specifying the path to a custom PEM certificate that the connector will trust.
- `pg_connection_pool_min_idle`: Optional. The minimum number of idle connections to keep open in the pool. Default is `1`.
- `connection_pool_size`: Optional. The maximum number of connections to keep open in the connection pool. Default is `5`.
- `pg_connection_pool_min`: Optional. The minimum number of connections to keep open in the pool, lazily created when requested. Default is `5`.
- `connection_pool_size`: Optional. The maximum number of connections created in the connection pool. Default is `10`.

Configuration `params` are provided either in the `acceleration` section of a dataset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The connection to PostgreSQL can be configured by providing the following `param
- `prefer`: This mode will try to establish a secure TLS connection if possible, but will connect insecurely if the server does not support TLS.
- `disable`: This mode will not attempt to use a TLS connection, even if the server supports it.
- `pg_sslrootcert`: Optional parameter specifying the path to a custom PEM certificate that the connector will trust.
- `pg_connection_pool_min_idle`: Optional. The minimum number of idle connections to keep open in the pool. Default is `1`.
- `connection_pool_size`: Optional. The maximum number of connections to keep open in the connection pool. Default is `5`.
- `pg_connection_pool_min`: Optional. The minimum number of connections to keep open in the pool, lazily created when requested. Default is `5`.
- `connection_pool_size`: Optional. The maximum number of connections created in the connection pool. Default is `10`.

Configuration `params` are provided either in the `acceleration` section of a dataset.

Expand Down
Loading