Skip to content

Data Catalog

In a Kedro project, the Data Catalog is a registry of all data sources available for use by the project. The catalog is stored in a YAML file (catalog.yml) that maps the names of node inputs and outputs as keys in the DataCatalog class.

The kedro-datasets documentation package offers built-in datasets for common file types and file systems.

Concepts

These pages explain how the Data Catalog works and the model behind each feature:

How-to guides

These pages give step-by-step procedures for common catalog tasks:

Examples

For an advanced tutorial that explains how to create your own custom dataset, see Tutorial to create a custom dataset.