> For the complete documentation index, see [llms.txt](https://docs.feast.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.feast.dev/v0.11-branch/feast-on-kubernetes/user-guide/overview.md).

# Overview

## Using Feast

Feast development happens through three key workflows:

1. [Define and load feature data into Feast](/v0.11-branch/feast-on-kubernetes/user-guide/define-and-ingest-features.md)
2. [Retrieve historical features for training models](/v0.11-branch/feast-on-kubernetes/user-guide/getting-training-features.md)
3. [Retrieve online features for serving models](/v0.11-branch/feast-on-kubernetes/user-guide/getting-online-features.md)

## Defining feature tables and ingesting data into Feast

Feature creators model the data within their organization into Feast through the definition of [feature tables](/v0.11-branch/feast-on-kubernetes/concepts/feature-tables.md) that contain [data sources](/v0.11-branch/feast-on-kubernetes/concepts/sources.md). Feature tables are both a schema and a means of identifying data sources for features, and allow Feast to know how to interpret your data, and where to find it.

After registering a feature table with Feast, users can trigger an ingestion from their data source into Feast. This loads feature values from an upstream data source into Feast stores through ingestion jobs.

Visit [feature tables](/v0.11-branch/feast-on-kubernetes/concepts/feature-tables.md#overview) to learn more about them.

{% content-ref url="/pages/-McwVYE-yROio9MRWVG2" %}
[Define and ingest features](/v0.11-branch/feast-on-kubernetes/user-guide/define-and-ingest-features.md)
{% endcontent-ref %}

## Retrieving historical features for training

In order to generate a training dataset it is necessary to provide both an [entity dataframe ](/v0.11-branch/feast-on-kubernetes/user-guide/overview.md)and feature references through the[ Feast SDK](https://api.docs.feast.dev/python/) to retrieve historical features. For historical serving, Feast requires that you provide the entities and timestamps for the corresponding feature data. Feast produces a point-in-time correct dataset using the requested features. These features can be requested from an unlimited number of feature sets.

{% content-ref url="/pages/-McwVYDzgX\_T2vv5oM-o" %}
[Getting training features](/v0.11-branch/feast-on-kubernetes/user-guide/getting-training-features.md)
{% endcontent-ref %}

## Retrieving online features for online serving

Online retrieval uses feature references through the [Feast Online Serving API](https://api.docs.feast.dev/grpc/feast.serving.pb.html) to retrieve online features. Online serving allows for very low latency requests to feature data at very high throughput.

{% content-ref url="/pages/-McwVYDyqz9-\_DREoWrC" %}
[Getting online features](/v0.11-branch/feast-on-kubernetes/user-guide/getting-online-features.md)
{% endcontent-ref %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.feast.dev/v0.11-branch/feast-on-kubernetes/user-guide/overview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
