From 4b33150ec4968e2811ee87105a4a212b30d1046f Mon Sep 17 00:00:00 2001 From: Danny Chiao Date: Fri, 2 Sep 2022 15:17:43 -0700 Subject: [PATCH 1/2] chore: Add more references to kubernetes for SEO for k8s Signed-off-by: Danny Chiao --- docs/how-to-guides/running-feast-in-production.md | 4 ++-- infra/charts/feast-feature-server/README.md | 2 +- infra/charts/feast-feature-server/README.md.gotmpl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/how-to-guides/running-feast-in-production.md b/docs/how-to-guides/running-feast-in-production.md index 906445c1436..1be54da06fa 100644 --- a/docs/how-to-guides/running-feast-in-production.md +++ b/docs/how-to-guides/running-feast-in-production.md @@ -2,7 +2,7 @@ ## Overview -After learning about Feast concepts and playing with Feast locally, you're now ready to use Feast in production. This guide aims to help with the transition from a sandbox project to production-grade deployment in the cloud or on-premise. +After learning about Feast concepts and playing with Feast locally, you're now ready to use Feast in production. This guide aims to help with the transition from a sandbox project to production-grade deployment in the cloud or on-premise (e.g. on Kubernetes). A typical production architecture looks like: @@ -58,7 +58,7 @@ This approach may not scale to large amounts of data, which users of Feast may b In this case, we recommend using one of the more [scalable materialization engines](./scaling-feast.md#scaling-materialization), such as the [Bytewax Materialization Engine](../reference/batch-materialization/bytewax.md), or the [Snowflake Materialization Engine](../reference/batch-materialization/snowflake.md). Users may also need to [write a custom materialization engine](../how-to-guides/customizing-feast/creating-a-custom-materialization-engine.md) to work on their existing infrastructure. -The Bytewax materialization engine can run materialization on existing kubernetes cluster. An example configuration of this in a `feature_store.yaml` is as follows: +The Bytewax materialization engine can run materialization on an existing Kubernetes cluster. An example configuration of this in a `feature_store.yaml` is as follows: ```yaml batch_engine: diff --git a/infra/charts/feast-feature-server/README.md b/infra/charts/feast-feature-server/README.md index 2d229523cfb..b52e78e4f8b 100644 --- a/infra/charts/feast-feature-server/README.md +++ b/infra/charts/feast-feature-server/README.md @@ -11,7 +11,7 @@ helm repo add feast-charts https://feast-helm-charts.storage.googleapis.com helm repo update ``` -Install Feast +Install Feast Feature Server on Kubernetes A base64 encoded version of the `feature_store.yaml` file is needed. Helm install example: ``` diff --git a/infra/charts/feast-feature-server/README.md.gotmpl b/infra/charts/feast-feature-server/README.md.gotmpl index a380113b2f2..fb877208e06 100644 --- a/infra/charts/feast-feature-server/README.md.gotmpl +++ b/infra/charts/feast-feature-server/README.md.gotmpl @@ -11,7 +11,7 @@ helm repo add feast-charts https://feast-helm-charts.storage.googleapis.com helm repo update ``` -Install Feast +Install Feast Feature Server on Kubernetes A base64 encoded version of the `feature_store.yaml` file is needed. Helm install example: ``` From a13231553b00ce5ba4bd48d286e6515a597768ab Mon Sep 17 00:00:00 2001 From: Danny Chiao Date: Fri, 2 Sep 2022 15:25:48 -0700 Subject: [PATCH 2/2] chore: Add more references to kubernetes for SEO for k8s Signed-off-by: Danny Chiao --- docs/SUMMARY.md | 2 +- docs/how-to-guides/running-feast-in-production.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md index 6ef1c9c49eb..e23af9bae42 100644 --- a/docs/SUMMARY.md +++ b/docs/SUMMARY.md @@ -49,7 +49,7 @@ * [Read features from the online store](how-to-guides/feast-snowflake-gcp-aws/read-features-from-the-online-store.md) * [Scaling Feast](how-to-guides/scaling-feast.md) * [Structuring Feature Repos](how-to-guides/structuring-repos.md) -* [Running Feast in production](how-to-guides/running-feast-in-production.md) +* [Running Feast in production (e.g. on Kubernetes)](how-to-guides/running-feast-in-production.md) * [Upgrading for Feast 0.20+](how-to-guides/automated-feast-upgrade.md) * [Customizing Feast](how-to-guides/customizing-feast/README.md) * [Adding a custom batch materialization engine](how-to-guides/customizing-feast/creating-a-custom-materialization-engine.md) diff --git a/docs/how-to-guides/running-feast-in-production.md b/docs/how-to-guides/running-feast-in-production.md index 1be54da06fa..95f3e99581e 100644 --- a/docs/how-to-guides/running-feast-in-production.md +++ b/docs/how-to-guides/running-feast-in-production.md @@ -1,4 +1,4 @@ -# Running Feast in production +# Running Feast in production (e.g. on Kubernetes) ## Overview