It is not possible to express such a query in a single CQL expression for this table, so there is no answer.
You can try to create another table, for example. latest_items, and only save the latest update there, so the scheme will look like this:
CREATE TABLE latest_items (
item_id varchar,
timestamp timestamp,
data blob,
PRIMARY KEY (item_id)
);
timestamp order, , , . select * from latest_items limit 10000000;. , , , , , , , .
, Cassandra. blob, , URL- - .