Jeremy Cohen

Results 250 comments of Jeremy Cohen

@b-per Whoa, I didn't know about that! It isn't something I checked (or thought about) when we were deciding between `-fr` and a single-character version (`-f`). Links I quickly found:...

may the `-f` be with you both! wanna PR it up? (and edit the description here: https://github.com/dbt-labs/docs.getdbt.com/issues/2055)?

@gshank Ah! I now remember noticing this at one point, too. Thanks for keeping track of it and opening the issue. The validation currently occurs within the [`validate` method of...

Reopening this one as it's still relevant. Possibly related to the work Emily was just doing around models set to `enabled: false` in config `.yml` files (https://github.com/dbt-labs/dbt-core/issues/5869)

In the meantime, a functional workaround that I don't feel great about: ```yml # dbt_project.yml snapshots: # set defaults here to avoid validation errors during first parse strategy: check_cols unique_key:...

@ueshin Just to clarify — for folks who want to use Python models with `dbt-databricks` _today_ — they need to specify an additional `cluster_id` field in their `profiles.yml`? Or it...

@ueshin Ah, right, that makes more sense! Ok — I'm realizing that the more impactful change here might be allowing users to configure a custom `submission_method` on each model, and...

The `on-run-*` hook + context behavior is defined in the `safe_run_hooks`, `before_run`, and `after_run` methods of the `RunTask`: https://github.com/dbt-labs/dbt-core/blob/a3b018fd3b0c789c976e0e189788471edef8acb1/core/dbt/task/run.py#L318-L393 https://github.com/dbt-labs/dbt-core/blob/a3b018fd3b0c789c976e0e189788471edef8acb1/core/dbt/task/run.py#L418-L439 The reason `FreshnessTask` doesn't run hooks today is that [it...

Converting to UTC and then casting to `timestampntz` (`datetime` in BQ) generally seems like the Way To Go. As analytical practice, it makes sense to pull out the timezone and...