From 4c9c88b3b3cc447c1ae01d63828d4b66847d0046 Mon Sep 17 00:00:00 2001 From: Doug Beatty <44704949+dbeatty10@users.noreply.github.com> Date: Mon, 6 Mar 2023 13:59:54 -0700 Subject: [PATCH] Use IEC standard abbreviation for mebibytes (#2951) 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