From 1dbb75cf3c5ff850b525d9c5a3be2a2131dafdcb Mon Sep 17 00:00:00 2001 From: Luke Kim <80174+lukekim@users.noreply.github.com> Date: Mon, 7 Oct 2024 16:26:26 -0700 Subject: [PATCH] Clarify Arrow engine usage (#445) * Clarify Arrow engine usage * Update spiceaidocs/docs/components/data-accelerators/arrow.md --- .../docs/components/data-accelerators/arrow.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/spiceaidocs/docs/components/data-accelerators/arrow.md b/spiceaidocs/docs/components/data-accelerators/arrow.md index 17e2e250..71500358 100644 --- a/spiceaidocs/docs/components/data-accelerators/arrow.md +++ b/spiceaidocs/docs/components/data-accelerators/arrow.md @@ -9,13 +9,26 @@ The In-Memory Arrow Data Accelerator is the default data accelerator in Spice. I ## Configuration -To use the In-Memory Arrow Data Accelerator, specify `arrow` as the `engine` for acceleration. +To use the In-Memory Arrow Data Accelerator, no additional configuration is required beyond enabling acceleration. + +Example: + +```yaml +datasets: + - from: spice.ai:path.to.my_dataset + name: my_dataset + acceleration: + enabled: true +``` + +However Arrow can be specified explicitly using `arrow` as the `engine` for acceleration. ```yaml datasets: - from: spice.ai:path.to.my_dataset name: my_dataset acceleration: + enabled: true engine: arrow ```