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
4 changes: 2 additions & 2 deletions website/docs/components/data-accelerators/cayenne/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,7 @@ Cayenne (via Vortex) supports most Arrow data types with the following considera
- Timestamps (normalized to Microsecond precision)
- Date32 and Date64
- Lists and FixedSizeLists
- Maps
- Structs

### Automatically Converted Types
Expand All @@ -433,7 +434,6 @@ The following types require the `unsupported_type_action` parameter:

- `Interval` types
- `Duration` types
- `Map` types
- `FixedSizeBinary`

**`unsupported_type_action` options:**
Expand Down Expand Up @@ -504,7 +504,7 @@ Consider the following limitations when using Spice Cayenne acceleration:

- **File Mode Only**: Spice Cayenne only supports `mode: file` and does not support in-memory (`mode: memory`) acceleration.
- **S3 Express Only**: Standard S3 buckets are not supported for remote storage. Only S3 Express One Zone directory buckets are supported.
- **Unsupported Data Types**: `Interval`, `Duration`, `Map`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **Unsupported Data Types**: `Interval`, `Duration`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **No Traditional Indexes**: Spice Cayenne does not support explicit index creation via the `indexes` configuration. Vortex's segment statistics and fast random access encodings provide equivalent or better performance for most point lookup workloads.
- **No MVCC**: Multi-version concurrency control is not yet implemented. Snapshots and time-travel queries are planned for future releases.
- **No File Compaction**: Automatic file compaction to reclaim space from deleted rows is not yet available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Consider the following limitations when using Spice Cayenne acceleration:
- **File Mode Only**: Spice Cayenne only supports `mode: file` and does not support in-memory (`mode: memory`) acceleration.
- **No Snapshot Support**: Spice Cayenne does not yet support [acceleration snapshots](../../features/data-acceleration/snapshots) for bootstrapping from object storage.
- **S3 Express Only**: Standard S3 buckets are not supported for remote storage. Only S3 Express One Zone directory buckets are supported.
- **Unsupported Data Types**: `Interval`, `Duration`, `Map`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **Unsupported Data Types**: `Interval`, `Duration`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **No Traditional Indexes**: Spice Cayenne does not support explicit index creation via the `indexes` configuration. Vortex's segment statistics and fast random access encodings provide equivalent or better performance for most point lookup workloads.
- **No MVCC**: Multi-version concurrency control is not yet implemented. Snapshots and time-travel queries are planned for future releases.
- **No File Compaction**: Automatic file compaction to reclaim space from deleted rows is not yet available.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ Cayenne (via Vortex) supports most Arrow data types with the following considera
- Timestamps (normalized to Microsecond precision)
- Date32 and Date64
- Lists and FixedSizeLists
- Maps
- Structs

### Automatically Converted Types
Expand All @@ -435,7 +436,6 @@ The following types require the `unsupported_type_action` parameter:

- `Interval` types
- `Duration` types
- `Map` types
- `FixedSizeBinary`

**`unsupported_type_action` options:**
Expand Down Expand Up @@ -507,7 +507,7 @@ Consider the following limitations when using Spice Cayenne acceleration:
- **Beta Status**: Spice Cayenne is in active development. Configuration options may change between releases.
- **File Mode Only**: Spice Cayenne only supports `mode: file` and does not support in-memory (`mode: memory`) acceleration.
- **S3 Express Only**: Standard S3 buckets are not supported for remote storage. Only S3 Express One Zone directory buckets are supported.
- **Unsupported Data Types**: `Interval`, `Duration`, `Map`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **Unsupported Data Types**: `Interval`, `Duration`, and `FixedSizeBinary` types require `unsupported_type_action` configuration.
- **No Traditional Indexes**: Spice Cayenne does not support explicit index creation via the `indexes` configuration. Vortex's segment statistics and fast random access encodings provide equivalent or better performance for most point lookup workloads.
- **No MVCC**: Multi-version concurrency control is not yet implemented. Snapshots and time-travel queries are planned for future releases.
- **No File Compaction**: Automatic file compaction to reclaim space from deleted rows is not yet available.
Expand Down
Loading