From 8275f51a5cf2c7304c210b1a635028441cbf37ab Mon Sep 17 00:00:00 2001 From: Matt Shaver <60105315+matthewshaver@users.noreply.github.com> Date: Fri, 8 Nov 2024 15:19:18 -0500 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Amy Chen <46451573+amychen1776@users.noreply.github.com> --- .../docs/reference/resource-configs/snowflake-configs.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/reference/resource-configs/snowflake-configs.md b/website/docs/reference/resource-configs/snowflake-configs.md index a167efd919c..2cc2a4af154 100644 --- a/website/docs/reference/resource-configs/snowflake-configs.md +++ b/website/docs/reference/resource-configs/snowflake-configs.md @@ -683,14 +683,14 @@ Per the [Snowflake documentation](https://docs.snowflake.com/en/sql-reference/in ## Pagination for object results -By default, when dbt encounters a schema with up to 100k objects, it will paginate the results from `show objects` at 10k per page for up to 10 pages. +By default, when dbt encounters a schema with up to 100,000 objects, it will paginate the results from `show objects` at 10,000 per page for up to 10 pages. -Environments that have more than 100k objects in a schema can customize the number of results per page and the page limit with the following flags in the `dbt_project.yml`: +Environments that have more than 100,000 objects in a schema can customize the number of results per page and the page limit with the following flags in the `dbt_project.yml`: - `list_relations_per_page` — The number of relations on each page (Max 10k as this is the most Snowflake allows). - `list_relations_page_limit` — The maximum number of pages to include in the results. -For example, if you wanted to include 10k objects per page and include up to 100 pages (1M objects), configure the flags as follows: +For example, if you wanted to include 10,000 objects per page and include up to 100 pages (1 million objects), configure the flags as follows: ```yml