You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started/faq.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,16 @@ Yes, this is possible. For example, you can use BigQuery as an offline store and
39
39
40
40
### How do I run `get_historical_features` without providing an entity dataframe?
41
41
42
-
Feast does not provide a way to do this right now. This is an area we're actively interested in contributions for. See [GitHub issue](https://github.com/feast-dev/feast/issues/1611)
42
+
Feast does supports fetching historical features without passing an entity dataframe with the request.
43
+
- As of today, only `postgres offline feature store` is supported for entity dataframe less retrieval. Remaining offline stores would be gradually updated to support the entity df less retrieval. The stores would be selected based on priorities and user base/request.
44
+
- The retrieval is based on `start_date` and `end_date` parameters to the function. Here are some combinations supported.
45
+
- Both params are given, Returns data during the given start to end timerange.
46
+
- Only start_date param is given, Returns data from the start date to `now` time.
47
+
- Only end_date param is given, Returns data during the end_date minus TTL time in feature view.
48
+
- Both params are `not` given, Returns data during the TTL time in feature view to now time.
49
+
- When multiple features are requested from multiple feature-views it is required to have entity ids in both of them for `JOIN` so that
50
+
51
+
This is an area we're actively interested in contributions for. See [GitHub issue](https://github.com/feast-dev/feast/issues/1611)
43
52
44
53
### Does Feast provide security or access control?
"Cannot specify both entity_df and start_date/end_date. Use either entity_df for entity-based retrieval or start_date/end_date for timestamp range retrieval."
0 commit comments