Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/components/views/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ views:

- `name`: The view's identifier, used for referencing in queries.
- `sql`: The SQL query defining the view, supporting joins, subqueries, and aggregations.
- `acceleration`: Views can be [locally accelerated](/docs/features/data-acceleration).

## Limitations and Considerations

- Views do not support acceleration; instead accelerate the underlying dataset(s).
- Views are read-only; insert, update, and delete operations are not supported.
- Performance depends on SQL complexity and underlying data.
- Ensure queries are optimized to prevent slow execution.
2 changes: 1 addition & 1 deletion website/docs/features/data-acceleration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_position: 2
pagination_prev: null
---

Datasets can be locally accelerated by the Spice runtime, pulling data from any [Data Connector](/docs/components/data-connectors) and storing it locally in a [Data Accelerator](/docs/components/data-accelerators) for faster access. The data can be kept up-to-date in real-time or on a refresh schedule, ensuring you always have the latest data locally for querying.
Datasets and views can be locally accelerated by the Spice runtime, pulling data from any [Data Connector](/docs/components/data-connectors) and storing it locally in a [Data Accelerator](/docs/components/data-accelerators) for faster access. The data can be kept up-to-date in real-time or on a refresh schedule, ensuring you always have the latest data locally for querying.

![Spice.ai Open Source Query Federation with Acceleration](/img/features/data-acceleration.png)

Expand Down
Loading