It's no secret that CrateDB has very fast query times, milliseconds in very big datasets. There are many factors that help accomplish this feat, some of these exist in other databases like compute distribution and join optimization but there is one unique trait of CrateDB among SQL databases, we call it Hybrid Index.
CrateDB was conceived from the very beginning to be distributed, the database is tipically deployed in 3 or more nodes, several nodes compose a cluster. Tables are logically split in shards and replica-shards.
Shards are transparent at table level, so you don't need to think about them when querying. When a query is issued, the work is divided among the nodes and parallelized on the shards hugely improving read performance.