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/postgres.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,7 @@ offline_store:
32
32
sslkey_path: /path/to/client-key.pem
33
33
sslcert_path: /path/to/client-cert.pem
34
34
sslrootcert_path: /path/to/server-ca.pem
35
+
entity_select_mode: temp_table
35
36
online_store:
36
37
path: data/online_store.db
37
38
```
@@ -40,6 +41,8 @@ online_store:
40
41
Note that `sslmode`, `sslkey_path`, `sslcert_path`, and `sslrootcert_path` are optional parameters.
41
42
The full set of configuration options is available in [PostgreSQLOfflineStoreConfig](https://rtd.feast.dev/en/master/#feast.infra.offline_stores.contrib.postgres_offline_store.postgres.PostgreSQLOfflineStoreConfig).
42
43
44
+
Additionally, a new optional parameter `entity_select_mode` was added to tell how Postgres should load the entity data. By default(`temp_table`), a temporary table is created and the entity data frame or sql is loaded into that table. A new value of `embed_query` was added to allow directly loading the SQL query into a CTE, providing improved performance and skipping the need to CREATE and DROP the temporary table.
45
+
43
46
## Functionality Matrix
44
47
45
48
The set of functionality supported by offline stores is described in detail [here](overview.md#functionality).
0 commit comments