Skip to content

Commit

Permalink
adds caveats to Rockset profile page
Browse files Browse the repository at this point in the history
  • Loading branch information
samecrowder committed Oct 19, 2021
1 parent ba54251 commit 99332c7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions website/docs/reference/warehouse-profiles/rockset-profile.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,8 @@ view | YES | Creates a [view](https://rockset.com/docs/views/#gatsby-focus-wrapp
table | YES | Creates a [collection](https://rockset.com/docs/collections/#gatsby-focus-wrapper).
ephemeral | YES | Executes queries using CTEs.
incremental | YES | Creates a [collection](https://rockset.com/docs/collections/#gatsby-focus-wrapper) if it doesn't exist, and then writes results to it.
## Caveats
1. `unique_key` is not supported with incremental, unless it is set to [_id](https://rockset.com/docs/special-fields/#the-_id-field), which acts as a natural `unique_key` in Rockset anyway.
2. The `table` materialization is slower in Rockset than most because due to Rockset's architecture as a low-latency, real-time database, creating new collections requires provisioning hot storage to index and serve fresh data.
3. Rockset queries have a two-minute timeout. Any model which runs a query that takes longer to execute than two minutes will fail.

0 comments on commit 99332c7

Please sign in to comment.