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
fix: Clean up Rockset Online Store for use (feast-dev#3549)
Fix: Minor fixups for Rockset Online Store
- Fix Rockset markup link
- Fix feast init to allow for option "rockset" and update bootstrap to take
an empty string.
- Some cleanup to the markup description
Signed-off-by: Daniel Lin <dan@rockset.com>
Copy file name to clipboardExpand all lines: docs/reference/online-stores/rockset.md
+51-5Lines changed: 51 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,12 +4,12 @@
4
4
5
5
In Alpha Development.
6
6
7
-
The [Rockset](https://rockset.com/demo-signup/) online store provides support for materializing feature values within a Rockset collection for serving online features in real-time.
7
+
The [Rockset](https://rockset.com/demo-signup/) online store provides support for materializing feature values within a Rockset collection in order to serve features in real-time.
8
8
9
9
* Each document is uniquely identified by its '_id' value. Repeated inserts into the same document '_id' will result in an upsert.
10
10
11
-
Rockset indexes all columns allowing for quick per feature look up and also allows for a dynamic typed schema that can change based on any new requirements. ApiKeys can be found in the console
12
-
along with host urls which you can find in "View Region Endpoint Urls".
11
+
Rockset indexes all columns allowing for quick per feature look up and also allows for a dynamic typed schema that can change based on any new requirements. API Keys can be found in the Rockset console.
12
+
You can also find host urls on the same tab by clicking "View Region Endpoint Urls".
13
13
14
14
Data Model Used Per Doc
15
15
@@ -32,7 +32,53 @@ project: my_feature_app
32
32
registry: data/registry.db
33
33
provider: local
34
34
online_stores
35
+
## Basic Configs ##
36
+
37
+
# If apikey or host is left blank the driver will try to pull
38
+
# these values from environment variables ROCKSET_APIKEY and
39
+
# ROCKSET_APISERVER respectively.
35
40
type: rockset
36
-
apikey: MY_APIKEY_HERE
37
-
host: api.usw2a1.rockset.com
41
+
apikey: <your_api_key_here>
42
+
host: <your_region_endpoint_here>
43
+
44
+
## Advanced Configs ##
45
+
46
+
# Batch size of records that will be turned per page when
47
+
# paginating a batched read.
48
+
#
49
+
# read_pagination_batch_size: 100
50
+
51
+
# The amount of time, in seconds, we will wait for the
52
+
# collection to become visible to the API.
53
+
#
54
+
# collection_created_timeout_secs: 60
55
+
56
+
# The amount of time, in seconds, we will wait for the
57
+
# collection to enter READY state.
58
+
#
59
+
# collection_ready_timeout_secs: 1800
60
+
61
+
# Whether to wait for all writes to be flushed from log
62
+
# and queryable before returning write as completed. If
63
+
# False, documents that are written may not be seen
64
+
# immediately in subsequent reads.
65
+
#
66
+
# fence_all_writes: True
67
+
68
+
# The amount of time we will wait, in seconds, for the
69
+
# write fence to be passed
70
+
#
71
+
# fence_timeout_secs: 600
72
+
73
+
# Initial backoff, in seconds, we will wait between
74
+
# requests when polling for a response.
75
+
#
76
+
# initial_request_backoff_secs: 2
77
+
78
+
# Initial backoff, in seconds, we will wait between
79
+
# requests when polling for a response.
80
+
# max_request_backoff_secs: 30
81
+
82
+
# The max amount of times we will retry a failed request.
0 commit comments