I have this table:
CREATE TABLE custumer_events_service.events_by_websiteId_time(
"event_id" text,
"currentTime" timestamp,
"websiteId" varchar,
OTHER COLUMNS ...
PRIMARY KEY(event_id, websiteId, currentTime)
)
In this case, would I get 10000 rows ordered by currentime
when I execute this query:
SELECT * FROM events_by_websiteid_time WHERE websiteid='xxxx' LIMIT 10000 ALLOW FILTERING;
Or did I have to add WITH CLUSTERING ORDER BY (currentTime DESC);
at the end?