Replies: 7 comments
-
I like putting it in the standard out logs. None of the other terms proposed for it grabbed me. Most of them felt slightly more awkward and not more intuitively obvious. But I'll think about it. |
Beta Was this translation helpful? Give feedback.
-
UX
NamingAfter some internal conversation:
Imagine, for instance (thanks @drewbanin):
Nothing final about IMO we should change the name at the same time we expand functionality. We can do that with backwards compatibility—i.e. tl;drAll of the above is worthwhile, but none of it needs to happen before v0.19.0-rc1, so I'm going to remove this issue from the Kiyoshi Kuromiya milestone. |
Beta Was this translation helpful? Give feedback.
-
Just my 2 cents on naming: I'm working on an in-house dbt deployment tool that basically wraps |
Beta Was this translation helpful? Give feedback.
-
I like "defer" just fine personally. |
Beta Was this translation helpful? Give feedback.
-
Hello - this is a great issue thread, I love the engagement with the community on opinions re naming. Also, @jtcohen6 "a pleasure deferred" got a chuckle from me - also a helpful reminder I need to read more Dostoevsky - however I keep putting this off, a pleasure deferred! On naming
We also built an in-house version of this to extend the dbt cli prior to the Here's the CLI print out from our
In short - my vote would be for On behaviour When I was owning pipelines, I found myself most of the time using upstream=prod. And |
Beta Was this translation helpful? Give feedback.
-
This may be a bit of a leap, but bare with me. I keep hoping for dbt to adopt the Make metaphor, and this may be the opportunity to start on that path. I expect this was considered in the past, but let's revisit this pandora's box. Forget defer for a moment: imagine a dev cycle where you change the source file for a bunch of models/tests/etc, and then Make opens the door to a tone of useful features: you configure a model to be considered out-of-date if it has not run for 12 hours, and In fact, if you properly define out-of-dateness for sources, you may never need to run a model that is actually current, just because it happens to be an upstream dependency of the model you need. Defer is a natural extension of this: you define your baseline and development profiles in profiles.yml and do
This obviously brings up a ton of questions about how to maintain state, but we may be at the right time to break the taboo on out-of-database state, and go into the weeds on this one. Once this is figured out you have a much more natural way to think about data dependencies. A difficulty in naming a feature sometimes signals that a rethink of underlying conceptual frameworks is due, and this may be the case here. Thoughts? @drewbanin ? P.S. under the current framework, I add my vote for --upstream replacing --defer. |
Beta Was this translation helpful? Give feedback.
-
Copying from dbt-labs/dbt-snowflake#315
|
Beta Was this translation helpful? Give feedback.
-
We're making a subtle-yet-significant change to deferral in v0.19 (#2946, #2954), which is already a complex and under-appreciated feature. It's well and good to document those changes, but there are also things we can do within this codebase to make the feature more intuitive for users.
Naming
Should we still call this
defer
?Here's what we're trying to get across:
What's good about
defer
?defer
(deference) andref
(reference). Any closer and it'd be really confusing (imagine calling this--refer
)--defer-to-state
What's bad about
defer
?Alternative metaphors:
Any of those do anything for anyone?
Developer experience
How can we make it clear to users which models/resources have been deferred, and which haven't?
@jtcohen6: We currently have a debug log that lists the number of resources being deferred, and a sample of up to 5 (though the current wording is
Merged {x} items from state
). We could log that to stdout instead. We could also take it one step further, and determine which deferred resources are actually relevant to (upstream of) the models or tests being run. That would take some extra work, but it feels worthwhile:@drewbanin: I'm almost picturing that those nodes show up in the stdout logs as though we were running them, but they have a status like
DEFERRED
orUPSTREAM
:We do store
deferred
as a node attribute in themanifest
. Is there value in surfacing that information in the docs site? It's already sort of there, implicit in each model's compiled SQL, since deferred nodes will have rendered their references into a different namespace.Beta Was this translation helpful? Give feedback.
All reactions