A kedro plugin that streamlines the integration between Kedro projects and third-party applications, making it easier for you to develop end-to-end production-ready data science applications.
kedro introduced dataset factories in 0.18.12 . Which uses pattern matching to reduce the number of catalog entries.
The datasets are matched/resolved lazily at load time, which don't make them natively compatible with kedro-boot that compile everything relative to the catalog before the first pipeline run, and threfore before the first datasets loading.
Currenly kedro boot support it through this contribution but we should go further by aligning with how kedro handle dataset factories and implementing it at catalog compiler level
kedro introduced dataset factories in 0.18.12 . Which uses pattern matching to reduce the number of catalog entries.
The datasets are matched/resolved lazily at load time, which don't make them natively compatible with kedro-boot that compile everything relative to the catalog before the first pipeline run, and threfore before the first datasets loading.
Currenly kedro boot support it through this contribution but we should go further by aligning with how kedro handle dataset factories and implementing it at catalog compiler level