hello team! I want to add a few new keywords in da...
# questions
y
hello team! I want to add a few new keywords in data catalog, i.e.
stage
in the following example.
Copy code
companies:
  type: pandas.CSVDataset
  filepath: data/01_raw/companies.csv
  stage: input

reviews:
  type: pandas.CSVDataset
  filepath: data/01_raw/reviews.csv
  stage: output
Is there a way to ask kedro to ignore any new keywords such as
stage
in catalog when running pipelines? If not, how feasible it is to create a kedro plugin that removes/ignores a set of predefined keywords from a data catalog?
d
Copy code
companies:
  type: pandas.CSVDataset
  filepath: data/01_raw/companies.csv
  metadata:
    stage: input
move it into the
metadata
key, you can put what you like there and even pick it up in hooks
👍 2
that being said, based on what I’m guessing you’re trying to do… we do have a whole concept that is similar to
stage
called
layers
https://docs.kedro.org/projects/kedro-viz/en/stable/kedro-viz_visualisation.html#visualise-layers
y
awesome! was not aware of that, thanks for the pointer!
h
Thanks for the assist here @datajoely
🚀 1
@datajoely Are there docs for the metadata tag? Couldn't seems to find any docs on it
d
so yes, but you need to go to the kedro-viz section of the docs
actually it’s a bit of a mess
it’s here too
h
thankyou