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
Materializing 1 feature views to 2021-08-23 16:25:46+00:00 into the sqlite online
316
+
Materializing 1 feature views to 2021-08-23 16:25:46+00:00 into the sqlite online
307
317
store.
308
318
309
319
driver_hourly_stats from 2021-08-22 16:25:47+00:00 to 2021-08-23 16:25:46+00:00:
@@ -355,6 +365,41 @@ pprint(feature_vector)
355
365
{% endtab %}
356
366
{% endtabs %}
357
367
368
+
## Step 7: Using a featureservice to fetch online features instead.
369
+
370
+
You can also use feature services to manage multiple features, and decouple feature view definitions and the features needed by end applications. The feature store can also be used to fetch either online or historical features using the same api below. More information can be found [here](https://docs.feast.dev/getting-started/concepts/feature-service).
371
+
372
+
{% tabs %}
373
+
{% tab title="Python" %}
374
+
```python
375
+
from feast import FeatureStore
376
+
feature_store = FeatureStore('.') # Initialize the feature store
0 commit comments