modern-monitor-81461
06/22/2022, 12:22 PMmatch this or that or this...
):
meta_mapping:
data_tier:
- match: "Bronze"
operation: "add_term"
config:
term: "Bronze"
- match: "Gold"
operation: "add_term"
config:
term: "Gold"
- match: "Silver"
operation: "add_term"
config:
term: "Silver"
term: "Silver"
The current implementation only performs the last match
and discards the previous ones (in this example, only Silver
would be considered).
2- The DBT model support meta
fields for columns (see docs), but the current code seems to only support meta
information in the DBTNode (not in DBTColumn). I would like to be able to map terms to columns and not only for datasets. Was that ever considered?mammoth-bear-12532
meta_mapping:
data_tier:
match: "Bronze|Silver|Gold"
operation: "add_term"
config:
term: "{{ $match }}"
mammoth-bear-12532
match: ".*"
then any data_tier you set will create a glossary term by that namemammoth-bear-12532
meta
mapping for columns, this would be a great improvement on the current feature!mammoth-bear-12532
modern-monitor-81461
06/23/2022, 10:36 AM