From 5e164f3445a69bbfd11fee79b1b03d6a2821d125 Mon Sep 17 00:00:00 2001 From: yfu Date: Tue, 16 Jul 2024 09:44:32 +1000 Subject: [PATCH] add catalogs info in getting started spicepod --- spiceaidocs/docs/getting-started/spicepods.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/spiceaidocs/docs/getting-started/spicepods.md b/spiceaidocs/docs/getting-started/spicepods.md index 9a804436..12dd85eb 100644 --- a/spiceaidocs/docs/getting-started/spicepods.md +++ b/spiceaidocs/docs/getting-started/spicepods.md @@ -18,8 +18,9 @@ A Spicepod is described by a YAML manifest file, typically named `spicepod.yaml` - **Metadata:** Basic information about the Spicepod, such as its name and version. - **Datasets:** Definitions of datasets that are used or produced within the Spicepod. +- **Catalogs:** Definitions of catalogs that are used within the Spicepod. - **Models:** Definitions of ML models that the Spicepod manages, including their sources and associated datasets. -- **Secrets:** Configuration for any secret stores used by the Spicepod. +- **Secrets:** Configuration for any secret stores used within the Spicepod. ## Example Manifest @@ -53,6 +54,12 @@ Datasets in a Spicepod can be sourced from various locations, including local fi Learn more at [Datasets](/reference/spicepod/datasets.md). +### Catalogs + +Catalogs in a Spicepod can contain multiple schemas. Each schema, in turn, contains multiple tables where the actual data is stored. + +Learn more at [Catalogs](/reference/spicepod/catalogs.md). + ### Models ML models are integrated into the Spicepod similarly to datasets. The models can be specified using paths to local files or remote locations. ML inference can be performed using the models and datasets defined within the Spicepod.