dbt should handle json / variant data more ergonomically #7362
matt-winkler
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
Curious @jtcohen6 @dbeatty10 what might our appetite be for creating some additional functionality (materializations??) here? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Related to 5778
Unpacking JSON events is a common step in the early stages of dbt pipelines. Semi-structured data presents a few challenges that are more acute than when handling tabular data:
Today, dbt users are writing their own parsing code
Another Snowflake example from a dbt Labs internal repository:
The syntax for parsing json is not uniform across data warehouses
To make this as easy as possible for end users, should dbt have cross-database compatible macros?
Schema Management
field1
may contain all INT values, while in run 2 some values may benull
causing the parsed field to be inferred as a STRING.Beta Was this translation helpful? Give feedback.
All reactions