Skip to content

Commit ff4a123

Browse files
woopgitbook-bot
authored andcommitted
GitBook: [v0.12-branch] 90 pages and 7 assets modified
1 parent f663865 commit ff4a123

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+320
-371
lines changed
106 KB
Loading
63.7 KB
Loading
32.5 KB
Loading
89.5 KB
Loading
290 KB
Loading
123 KB
Loading
74.4 KB
Loading

docs/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,3 @@ Explore the following resources to get started with Feast:
5454
* [Reference](reference/feast-cli-commands.md) contains detailed API and design documents.
5555
* [Contributing](contributing/contributing.md) contains resources for anyone who wants to contribute to Feast.
5656

57-
58-

docs/concepts/architecture-and-components.md

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

33
![Feast Architecture Diagram](../.gitbook/assets/image%20%284%29.png)
44

5-
#### Functionality
5+
## Functionality
66

77
* **Create Batch Features:** ELT/ETL systems like Spark and SQL are used to transform data in the batch store.
88
* **Feast Apply:** The user \(or CI\) publishes versioned controlled feature definitions using `feast apply`. This CLI command updates infrastructure and persists definitions in the object store registry.
@@ -13,7 +13,7 @@
1313
* **Prediction:** A backend system makes a request for a prediction from the model serving service.
1414
* **Get Online Features:** The model serving service makes a request to the Feast Online Serving service for online features using a Feast SDK.
1515

16-
#### Components
16+
## Components
1717

1818
A complete Feast deployment contains the following components:
1919

docs/concepts/overview.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
# Overview
22

3-
The top-level namespace within Feast is a [project](data-model-and-concepts.md#project). Users define one or more [feature views](data-model-and-concepts.md#feature-view) within a project. Each feature view contains one or more [features](data-model-and-concepts.md#feature) that relate to a specific [entity](data-model-and-concepts.md#entity). A feature view must always have a [data source](data-model-and-concepts.md#data-source), which in turn is used during the generation of training [datasets](data-model-and-concepts.md#dataset) and when materializing feature values into the online store.
3+
The top-level namespace within Feast is a [project](data-model-and-concepts.md#project). Users define one or more [feature views](data-model-and-concepts.md#feature-view) within a project. Each feature view contains one or more [features](data-model-and-concepts.md#feature) that relate to a specific [entity](data-model-and-concepts.md#entity). A feature view must always have a [data source](data-model-and-concepts.md#data-source), which in turn is used during the generation of training [datasets](data-model-and-concepts.md#dataset) and when materializing feature values into the online store.
44

55
![](../.gitbook/assets/image%20%287%29.png)
66

7-
### Project
7+
## Project
88

99
Projects provide complete isolation of feature stores at the infrastructure level. This is accomplished through resource namespacing, e.g., prefixing table names with the associated project. Each project should be considered a completely separate universe of entities and features. It is not possible to retrieve features from multiple projects in a single request. We recommend having a single feature store and a single project per environment \(`dev`, `staging`, `prod`\).
1010

1111
{% hint style="info" %}
1212
Projects are currently being supported for backward compatibility reasons. Projects may change in the future as we simplify the Feast API.
1313
{% endhint %}
1414

15-
###
16-

0 commit comments

Comments
 (0)