mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 20:27:03 +00:00
The document docs/cql/cql-extensions.md documents Scylla's extension of *synchronous* view updates, and mentioned a few cases where view updates are synchronous even if synchronous updates are not requested explicitly. But with tablets, these statements and examples are no longer correct - with tablets, base and view tablets may find themselves migrated to entirely different nodes. So in this patch we correct the statements that are no longer accurate. Note that after this patch we still have in this document, and in other documents, similar promises about CQL *local secondary indexes*. Either the documentation or the implementation needs to change in that case too, but we'll do it in a separate patch. Signed-off-by: Nadav Har'El <nyh@scylladb.com> Closes scylladb/scylladb#16369