Hi, placeholders for catalog.yml not working. I ha...
# questions
j
Hi, placeholders for catalog.yml not working. I have in conf/base/parameters.yml bootstrap_servers: "localhost:9092" and in my catalog.yml trying to use placeholder like this ${bootstrap_servers} . but i get this error InterpolationKeyError: Interpolation key ' bootstrap_servers' not found
m
Hi @Jamal Sealiti, you can't interpolate parameters into the catalog. You'll have to use globals for that: https://docs.kedro.org/en/1.0.0rc1/configure/advanced_configuration/#how-to-use-global-variables-with-the-omegaconfigloader
👍 1
j
Thank you Merel :)