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/reference/offline-stores/dask.md
+8-9
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,8 @@
1
-
# File offline store
1
+
# Dask offline store
2
2
3
3
## Description
4
4
5
-
The file offline store provides support for reading [FileSources](../data-sources/file.md).
6
-
It uses Dask as the compute engine.
5
+
The Dask offline store provides support for reading [FileSources](../data-sources/file.md).
7
6
8
7
{% hint style="warning" %}
9
8
All data is downloaded and joined using Python and therefore may not scale to production workloads.
@@ -17,28 +16,28 @@ project: my_feature_repo
17
16
registry: data/registry.db
18
17
provider: local
19
18
offline_store:
20
-
type: file
19
+
type: dask
21
20
```
22
21
{% endcode %}
23
22
24
-
The full set of configuration options is available in [FileOfflineStoreConfig](https://rtd.feast.dev/en/latest/#feast.infra.offline_stores.file.FileOfflineStoreConfig).
23
+
The full set of configuration options is available in [DaskOfflineStoreConfig](https://rtd.feast.dev/en/latest/#feast.infra.offline_stores.dask.DaskOfflineStoreConfig).
25
24
26
25
## Functionality Matrix
27
26
28
27
The set of functionality supported by offline stores is described in detail [here](overview.md#functionality).
29
-
Below is a matrix indicating which functionality is supported by the file offline store.
28
+
Below is a matrix indicating which functionality is supported by the dask offline store.
Copy file name to clipboardexpand all lines: docs/reference/offline-stores/overview.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,13 @@ The first three of these methods all return a `RetrievalJob` specific to an offl
25
25
26
26
## Functionality Matrix
27
27
28
-
There are currently four core offline store implementations: `FileOfflineStore`, `BigQueryOfflineStore`, `SnowflakeOfflineStore`, and `RedshiftOfflineStore`.
28
+
There are currently four core offline store implementations: `DaskOfflineStore`, `BigQueryOfflineStore`, `SnowflakeOfflineStore`, and `RedshiftOfflineStore`.
29
29
There are several additional implementations contributed by the Feast community (`PostgreSQLOfflineStore`, `SparkOfflineStore`, and `TrinoOfflineStore`), which are not guaranteed to be stable or to match the functionality of the core implementations.
30
30
Details for each specific offline store, such as how to configure it in a `feature_store.yaml`, can be found [here](README.md).
31
31
32
32
Below is a matrix indicating which offline stores support which methods.
0 commit comments