You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using dbt commands beyond dbt seed (i.e. dbt run), the parse_seed_file function in parser.py loads the CSV file unnecessarily. In the event that there are larger CSVs in the seed directory, this load time can take a while.
To limit the loading of the CSVs, the following section of parse_seed_file should only run during dbt seed.
When using
dbt
commands beyonddbt seed
(i.e.dbt run
), theparse_seed_file
function in parser.py loads the CSV file unnecessarily. In the event that there are larger CSVs in the seed directory, this load time can take a while.To limit the loading of the CSVs, the following section of
parse_seed_file
should only run duringdbt seed
.The original Slack conversation that this issue came up in is here.
The text was updated successfully, but these errors were encountered: