Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion website/docs/components/catalogs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Supported Catalog Connectors include:
| `unity_catalog` | Unity Catalog | Stable | Delta Lake |
| `databricks` | Databricks | Beta | Spark Connect, S3/Delta Lake |
| `iceberg` | Apache Iceberg | Beta | Parquet |
| `spice.ai` | Spice.ai Cloud Platform | Alpha | Arrow Flight |
| `spice.ai` | Spice.ai Cloud Platform | Beta | Arrow Flight |
| `glue` | AWS Glue | Coming Soon | JSON, Parquet, Iceberg |

## Catalog Connector Docs
Expand Down
14 changes: 14 additions & 0 deletions website/docs/components/catalogs/spiceai.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Example:
catalogs:
- from: spice.ai:demo-org/tpch # Load tables from the `demo-org` organization's `tpch` app
name: marketplace # Tables will be available in the "marketplace" catalog
params:
spiceai_api_key: ${secrets:SPICEAI_API_KEY} # Spice.ai API key to login to the organization and app
include:
- "tpch.part*" # include only the tables from the "tpch" schema and that start with "part"
- "tpch.supplier" # also include the "supplier" table
Expand Down Expand Up @@ -156,3 +158,15 @@ include:
- "tpch.part*" # Include all tables from the "tpch" schema that start with "part"
- "tpch.supplier" # Include the "supplier" table from the "tpch" schema
```

## `params`

The following parameters are supported for configuring the connection to the Spice Cloud catalog/tables:

| Parameter Name | Definition |
|---------------|------------|
| `spiceai_api_key` | Authorization API key from the Spice.ai Cloud Platform, used to login to the specified organization and app. |

## Cookbook

- A cookbook recipe to configure Spice Cloud as a catalog connector in Spice. [Spice Cloud Catalog Connector](https://github.com/spiceai/cookbook/tree/trunk/catalogs/spiceai#readme)