Skip to content
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
6 changes: 3 additions & 3 deletions examples/operator-quickstart/01-Install.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"# Install Feast on Kubernetes with the Feast Operator\n",
"## Objective\n",
"\n",
"Provide a reference implementation of a runbook to deploy a Feast environment on a Kubernetes cluster using [Kind](https://kind.sigs.k8s.io/docs/user/quick-start) and the [Feast Operator](../../infra/feast-operator/)."
"Provide a reference implementation of a runbook to deploy a Feast environment on a Kubernetes cluster using the [Feast Operator](../../infra/feast-operator/)."
]
},
{
Expand Down Expand Up @@ -87,15 +87,15 @@
"metadata": {},
"source": [
"## Deployment Architecture\n",
"The primary objective of this runbook is to guide the deployment of Feast services on a Kubernetes Kind cluster, using the `postgres` template to set up a basic feature store.\n",
"The primary objective of this runbook is to guide the deployment of Feast services on a Kubernetes cluster, using the `postgres` template to set up a basic feature store.\n",
"\n",
"In this notebook, we will deploy a distributed topology of Feast services, which includes:\n",
"\n",
"* `Registry Server`: Handles metadata storage for feature definitions.\n",
"* `Online Store Server`: Uses the `Registry Server` to query metadata and is responsible for low-latency serving of features.\n",
"* `Offline Store Server`: Uses the `Registry Server` to query metadata and provides access to batch data for historical feature retrieval.\n",
"\n",
"Each service is backed by a `PostgreSQL` database, which is also deployed within the same Kind cluster."
"Each service is backed by a `PostgreSQL` database, which is also deployed within the same cluster."
]
},
{
Expand Down
Loading