Skip to content

Commit

Permalink
Use IEC standard abbreviation for mebibytes (#2951)
Browse files Browse the repository at this point in the history
1 mebibyte = 1 MiB = 1024 * 1024 bytes
1 megabyte = 1 MB = 1000 * 1000 bytes
  • Loading branch information
dbeatty10 authored Mar 6, 2023
1 parent 5dcf124 commit 4c9c88b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4c9c88b

Please sign in to comment.