From 7802a2c0f72b63a771309212a11889c896f7cadc Mon Sep 17 00:00:00 2001 From: Michael Toy <66150587+mtoy-googly-moogly@users.noreply.github.com> Date: Sun, 26 Apr 2026 09:47:51 -0700 Subject: [PATCH] docs: add Snowflake pool size config parameters Documents poolMin, poolMax, and poolTestOnBorrow on the Snowflake connection type. Companion to malloydata/malloy#2781, which adds these fields to the registered connection properties. --- src/documentation/setup/config.malloynb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/documentation/setup/config.malloynb b/src/documentation/setup/config.malloynb index a854c1dc..3dd2bd60 100644 --- a/src/documentation/setup/config.malloynb +++ b/src/documentation/setup/config.malloynb @@ -182,6 +182,9 @@ Authentication: provide either `token` or the `oauthClientId` + `oauthClientSecr | `schemaSampleRowLimit` | number | Row limit for variant schema sample (default 1000) | | `schemaSampleFullScanMaxBytes` | number | Tables at or below this byte size are full-scanned instead of sampled | | `setupSQL` | text | Connection setup SQL ([see below](#setup-sql)) | +| `poolMin` | number | Minimum pooled connections kept warm (default 1) | +| `poolMax` | number | Maximum pooled connections (default 1) | +| `poolTestOnBorrow` | boolean | Validate each connection when checked out of the pool (default true) | Snowflake also supports TOML configuration at `~/.snowflake/connections.toml`. See [Snowflake connection configuration](https://docs.snowflake.com/en/developer-guide/python-connector/python-connector-connect#connecting-using-the-connections-toml-file) for details.