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: spiceaidocs/docs/reference/spicepod/datasets.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,6 +226,24 @@ Retries utilize a [Fibonacci backoff strategy](https://en.wikipedia.org/wiki/Fib
226
226
227
227
Optional. Defines the maximum number of retry attempts when refresh retries are enabled. The default is undefined, allowing for unlimited attempts.
228
228
229
+
## `acceleration.ready_state`
230
+
231
+
Supports one of two values:
232
+
233
+
* `on_registration`: Mark the dataset as ready immediately, and queries on this table will fall back to the underlying source directly until the initial acceleration is complete
234
+
* `on_load`: Mark the dataset as ready only after the initial acceleration. Queries against the dataset will return an error before the load has been completed.
235
+
236
+
```yaml
237
+
datasets:
238
+
- from: s3://my_bucket/my_dataset/
239
+
name: my_dataset
240
+
params:
241
+
...
242
+
acceleration:
243
+
enabled: true
244
+
ready_state: on_registration # or on_load
245
+
```
246
+
229
247
## `acceleration.params`
230
248
231
249
Optional. Parameters to pass to the acceleration engine. The parameters are specific to the acceleration engine used.
0 commit comments