Skip to content

Commit 047d469

Browse files
authored
docs: Fix broken links (#2583)
Signed-off-by: Danny Chiao <[email protected]>
1 parent ed2f979 commit 047d469

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/getting-started/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% hint style="info" %}
44
**Don't see your question?**
55

6-
We encourage you to ask questions on [Slack](https://slack.feast.dev) or [Github](https://github.com/feast-dev/feast). Even better, once you get an answer, add the answer to this FAQ via a [pull request](../project/development-guide.md)!
6+
We encourage you to ask questions on [Slack](https://slack.feast.dev) or [GitHub](https://github.com/feast-dev/feast). Even better, once you get an answer, add the answer to this FAQ via a [pull request](../project/development-guide.md)!
77
{% endhint %}
88

99
## Getting started
@@ -83,7 +83,7 @@ Yes. For example, the Postgres [connector](https://github.com/nossrannug/feast-p
8383

8484
Yes. There are two ways to use S3 in Feast:
8585

86-
* Using Redshift as a data source via Spectrum ([AWS tutorial](https://docs.aws.amazon.com/redshift/latest/dg/tutorial-nested-data-create-table.html)), and then continuing with the [Running Feast with GCP/AWS](../how-to-guides/feast-gcp-aws/) guide. See a [presentation](https://youtu.be/pMFbRJ7AnBk?t=9463) we did on this at our apply() meetup.
86+
* Using Redshift as a data source via Spectrum ([AWS tutorial](https://docs.aws.amazon.com/redshift/latest/dg/tutorial-nested-data-create-table.html)), and then continuing with the [Running Feast with Snowflake/GCP/AWS](../how-to-guides/feast-snowflake-gcp-aws/) guide. See a [presentation](https://youtu.be/pMFbRJ7AnBk?t=9463) we did on this at our apply() meetup.
8787
* Using the `s3_endpoint_override` in a `FileSource` data source. This endpoint is more suitable for quick proof of concepts that won't necessarily scale for production use cases.
8888

8989
### How can I use Spark with Feast?

docs/how-to-guides/running-feast-in-production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ For seamless integration with Kubernetes (including services created by Feast He
274274

275275
## 5. Ingesting features from a stream source
276276

277-
Recently Feast added functionality for [stream ingestion](../reference/alpha-stream-ingestion.md).
277+
Recently Feast added functionality for [stream ingestion](../reference/data-sources/push.md).
278278
Please note that this is still in an early phase and new incompatible changes may be introduced.
279279

280280
### 5.1. Using Python SDK in your Apache Spark / Beam pipeline

docs/reference/alpha-aws-lambda-feature-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To enable this feature, run **`feast alpha enable aws_lambda_feature_server`**
88

99
## Overview
1010

11-
The AWS Lambda feature server is an HTTP endpoint that serves features with JSON I/O, deployed as a Docker image through AWS Lambda and AWS API Gateway. This enables users to get features from Feast using any programming language that can make HTTP requests. A [local feature server](feature-server.md) is also available. A remote feature server on GCP Cloud Run is currently being developed.
11+
The AWS Lambda feature server is an HTTP endpoint that serves features with JSON I/O, deployed as a Docker image through AWS Lambda and AWS API Gateway. This enables users to get features from Feast using any programming language that can make HTTP requests. A [local feature server](feature-servers/python-feature-server.md) is also available. A remote feature server on GCP Cloud Run is currently being developed.
1212

1313
## Deployment
1414

docs/reference/feast-cli-commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Overview
44

5-
The Feast CLI comes bundled with the Feast Python package. It is immediately available after [installing Feast](../how-to-guides/feast-gcp-aws/install-feast.md).
5+
The Feast CLI comes bundled with the Feast Python package. It is immediately available after [installing Feast](../how-to-guides/feast-snowflake-gcp-aws/install-feast.md).
66

77
```text
88
Usage: feast [OPTIONS] COMMAND [ARGS]...
@@ -54,7 +54,7 @@ feast apply
5454
**What does Feast apply do?**
5555

5656
1. Feast will scan Python files in your feature repository and find all Feast object definitions, such as feature views, entities, and data sources.
57-
2. Feast will validate your feature definitions
57+
2. Feast will validate your feature definitions (e.g. for uniqueness of features)
5858
3. Feast will sync the metadata about Feast objects to the registry. If a registry does not exist, then it will be instantiated. The standard registry is a simple protobuf binary file that is stored on disk \(locally or in an object store\).
5959
4. Feast CLI will create all necessary feature store infrastructure. The exact infrastructure that is deployed or configured depends on the `provider` configuration that you have set in `feature_store.yaml`. For example, setting `local` as your provider will result in a `sqlite` online store being created.
6060

0 commit comments

Comments
 (0)