If I have a table in Astra created like so:
CREATE TABLE rayven.mytable (
a text,
b text,
c timestamp,
PRIMARY KEY (a, c)
) WITH CLUSTERING ORDER BY (c DESC)
I then added the SAI index:
CREATE CUSTOM INDEX b_index ON mytable (b) USING 'StorageAttachedIndex';
When I query using ORDER BY:
select * from mytable where b='x' order by c desc;
I see
InvalidRequest: Error from server: code=2200 [Invalid query] message="ORDER BY with 2ndary indexes is not supported."
Since the original table is ordered by "c" descending. Can I assume that the result of the above SELECT will be in this order or there is no way of knowing or controling the order when selecting using an SAI index?
To help illustrate this, I have created your table and inserted some data. I've then queried the table for a value of
b
, and included thetoken
function on the partition key for this example.Note: Not running in Astra, but on my local 4.0 rc1 instance. The principles remain the same, however.
Basically, all result sets are sorted by the hashed token values of the partition key, and then the
CLUSTERING ORDER
takes precedence within each partition:As you can see here, the result set is not completely sorted by
c
. But initially sorted by the hashed token values ofa
, and then sorted byc
within each partition (a
).So "no," you cannot count on the data automatically being completely sorted by
c
.