Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add catalogs info in getting started spicepod #330

Merged
merged 1 commit into from
Jul 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion spiceaidocs/docs/getting-started/spicepods.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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.
Expand Down