We read every piece of feedback, and take your input very seriously.
Include my email address so I can be contactedHave a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
| @@ -1,18 +1,18 @@ | ||
| # Online store | ||
|
|
||
| Feast uses online stores to serve features at low latency. | ||
| Feature values are loaded from data sources into the online store through _materialization_, which can be triggered through the `materialize` command. | ||
|
|
||
| The storage schema of features within the online store mirrors that of the original data source. | ||
| One key difference is that for each [entity key](../concepts/entity.md), only the latest feature values are stored. | ||
| No historical values are stored. | ||
|
|
||
| Here is an example batch data source: | ||
|
|
||
|  | ||
|
|
||
| Once the above data source is materialized into Feast (using `feast materialize`), the feature values will be stored as follows: | ||
|
|
||
|  | ||
|
|
||
| # Online store | ||
| Feast uses online stores to serve features at low latency. | ||
| Feature values are loaded from data sources into the online store through _materialization_, which can be triggered through the `materialize` command (either with specific timestamps or using `--disable-event-timestamp` to materialize all data with current timestamps). | ||
| The storage schema of features within the online store mirrors that of the original data source. | ||
| One key difference is that for each [entity key](../concepts/entity.md), only the latest feature values are stored. | ||
| No historical values are stored. | ||
| Here is an example batch data source: | ||
|  | ||
| Once the above data source is materialized into Feast (using `feast materialize` with timestamps or `feast materialize --disable-event-timestamp`), the feature values will be stored as follows: | ||
|  | ||
| Features can also be written directly to the online store via [push sources](../../reference/data-sources/push.md) . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality Hide commentI think we do not need this flag, we can keep default end time as current time and start time as (current time - 24hr/a month) ?
Same for materialize-incremental command to have end date as current time by default.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality Hide commentmy concern is the significant change that has for users, right? making it optional would silently ingest data for users without telling them about it. i'd rather do more code work to make them opt in rather than have users accidentally ingest data.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Quality Hide commentThat's fair 👍
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.