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
3 changes: 3 additions & 0 deletions src/documentation/setup/config.malloynb
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
Loading