Create an index on a materialized view in Amazon Redshift

Viewed 447
1 Answers

Redshift doesn't have indexes.

You can configure distribution keys and sort keys, which provide some of the functionality of indexes.

A traditional B-Tree index would rarely be appropriate for the sorts of queries that you'd use Redshift for (which tend to be all-rows joins between large tables).

Related