From ff736485cc0cbddbe95ed4ff19a5331c0151a58f Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Fri, 3 Mar 2023 15:46:00 -0700 Subject: [PATCH] Use IEC standard abbreviation for mebibytes 1 mebibyte = 1 MiB = 1024 * 1024 bytes 1 megabyte = 1 MB = 1000 * 1000 bytes --- .../docs/reference/node-selection/state-comparison-caveats.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/reference/node-selection/state-comparison-caveats.md b/website/docs/reference/node-selection/state-comparison-caveats.md index b287169686a..987207bd4b0 100644 --- a/website/docs/reference/node-selection/state-comparison-caveats.md +++ b/website/docs/reference/node-selection/state-comparison-caveats.md @@ -6,9 +6,9 @@ The [`state:` selection method](methods#the-state-method) is a wildly powerful f ### Seeds -dbt stores a file hash of seed files that are <1 MB in size. If the contents of these seeds is modified, the seed will be included in `state:modified`. +dbt stores a file hash of seed files that are <1 MiB in size. If the contents of these seeds is modified, the seed will be included in `state:modified`. -If a seed file is >1 MB in size, dbt cannot compare its contents and will raise a warning as such. Instead, dbt will use only the seed's file path to detect changes. If the file path has changed, the seed will be included in `state:modified`; if it hasn't, it won't. +If a seed file is >1 MiB in size, dbt cannot compare its contents and will raise a warning as such. Instead, dbt will use only the seed's file path to detect changes. If the file path has changed, the seed will be included in `state:modified`; if it hasn't, it won't. ### Macros