<!-- Licensed to the Apache Software Foundation (ASF) under one -->
<!-- or more contributor license agreements.  See the NOTICE file -->
<!-- distributed with this work for additional information -->
<!-- regarding copyright ownership.  The ASF licenses this file -->
<!-- to you under the Apache License, Version 2.0 (the -->
<!-- "License"); you may not use this file except in compliance -->
<!-- with the License.  You may obtain a copy of the License at -->
<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
<!-- Unless required by applicable law or agreed to in writing, software -->
<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
<!-- See the License for the specific language governing permissions and -->
<!-- limitations under the License. -->

<a id="secondary-indexes"></a>

# Global Secondary Indexes

CQL supports creating secondary indexes on tables, allowing queries on the table to use those indexes. A secondary index
is identified by a name defined by:

```cql
index_name: re('[a-zA-Z_0-9]+')
```

<a id="create-index-statement"></a>

## CREATE INDEX

Creating a secondary index on a table uses the `CREATE INDEX` statement:

```cql
create_index_statement: CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ `index_name` ]
                      :     ON `table_name` '(' `index_identifier` ')'
                      :     [ USING `string` [ WITH `index_properties` ] ]
index_identifier: `column_name`
                :| ( FULL ) '(' `column_name` ')'
index_properties: index_property (AND index_property)*
index_property: OPTIONS = `map_literal`
              :| view_property
```

where view_property is any [property](https://docs.scylladb.com/manual/master/cql/mv.md#mv-options) that can be used when creating
a [materialized view](https://docs.scylladb.com/manual/master/features/materialized-views.md). The only exception is CLUSTERING ORDER BY,
which is not supported by secondary indexes.

If the statement is provided with a materialized view property, it will not be applied to the index itself.
Instead, it will be applied to the underlying materialized view of it.

For instance:

```cql
CREATE INDEX userIndex ON NerdMovies (user);
CREATE INDEX ON Mutants (abilityId);

-- Create a secondary index called `catsIndex` on the table `Animals`.
-- The indexed column is `cats`. Both properties, `comment` and
-- `synchronous_updates`, are view properties, so the underlying materialized
-- view will be configured with: `comment = 'everyone likes cats'` and
-- `synchronous_updates = true`.
CREATE INDEX catsIndex ON Animals (cats) WITH comment = 'everyone likes cats' AND synchronous_updates = true;

-- Create a secondary index called `dogsIndex` on the same table, `Animals`.
-- This time, the indexed column is `dogs`. The property `gc_grace_seconds` is
-- a view property, so the underlying materialized view will be configured with
-- `gc_grace_seconds = 13`.
CREATE INDEX dogsIndex ON Animals (dogs) WITH gc_grace_seconds = 13;

-- The view property `CLUSTERING ORDER BY` is not supported by secondary indexes,
-- so this statement will be rejected by Scylla.
CREATE INDEX bearsIndex ON Animals (bears) WITH CLUSTERING ORDER BY (bears ASC);
```

View properties of a secondary index have the same limitations as those imposed by materialized views.
For instance, a materialized view cannot be created specifying `gc_grace_seconds = 0`, so creating
a secondary index with the same property will not be possible either.

Example:

```cql
-- This statement will be rejected by Scylla because creating
-- a materialized view with `gc_grace_seconds = 0` is not possible.
CREATE INDEX names ON clients (name) WITH gc_grace_seconds = 0;

-- This statement will also be rejected by Scylla.
-- It's not possible to use `COMPACT STORAGE` with a materialized view.
CREATE INDEX names ON clients (name) WITH COMPACT STORAGE;
```

The `CREATE INDEX` statement is used to create a new (automatic) secondary index for a given (existing) column in a
given table. A name for the index itself can be specified before the `ON` keyword, if desired. If data already exists
for the column, it will be indexed asynchronously. After the index is created, new data for the column is indexed
automatically at insertion time.

## Local Secondary Index

[Local Secondary Indexes](https://docs.scylladb.com/manual/master/features/local-secondary-indexes.md) is an enhancement of [Global Secondary Indexes](https://docs.scylladb.com/manual/master/features/secondary-indexes.md), which allows ScyllaDB to optimize the use case in which the partition key of the base table is also the partition key of the index. Local Secondary Index syntax is the same as above, with extra parentheses on the partition key.

```cql
index_identifier: `column_name`
                :| ( PK ) | KEYS | VALUES | FULL ) '(' `column_name` ')'
```

Example:

```cql
CREATE TABLE menus (location text, name text, price float, dish_type text, PRIMARY KEY(location, name));
CREATE INDEX ON menus((location),dish_type);
```

More on [Local Secondary Indexes](https://docs.scylladb.com/manual/master/features/local-secondary-indexes.md)

<!-- Attempting to create an already existing index will return an error unless the ``IF NOT EXISTS`` option is used. If it -->
<!-- is used, the statement will be a no-op if the index already exists. -->
<!-- Indexes on Map Keys (supported in ScyllaDB 2.2) -->
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<!-- When creating an index on a :ref:`maps <maps>`, you may index either the keys or the values. If the column identifier is -->
<!-- placed within the ``keys()`` function, the index will be on the map keys, allowing you to use ``CONTAINS KEY`` in -->
<!-- ``WHERE`` clauses. Otherwise, the index will be on the map values. -->

<a id="create-vector-index-statement"></a>

## Vector Index ScyllaDB Cloud

#### NOTE
Vector indexes are supported in ScyllaDB Cloud only in clusters that have the Vector Search feature enabled.
Vector indexes do not support all ScyllaDB features (e.g., tracing, paging, and grouping). More information
about Vector Search is available in the
[ScyllaDB Cloud documentation](https://cloud.docs.scylladb.com/stable/vector-search/).

ScyllaDB supports creating vector indexes on tables, allowing queries on the table to use those indexes for efficient
similarity search on vector data. Vector indexes can be a global index for indexing vectors per table or a local
index for indexing vectors per partition.

The vector index is one of the custom indexes supported in ScyllaDB. It is
created using the `CUSTOM` keyword and specifying the index type as
`vector_index`. It is also possible to add additional columns to the index
for filtering the search results. The first column specified in the global
vector index definition must be the vector column, and any subsequent columns
are treated as filtering columns. The local vector index requires that the
partition key of the index is of a type allowed for filtering columns and the
vector column is the first one after the partition key definition, and any
subsequent columns are filtering columns.

ScyllaDB allows creating multiple **named** vector indexes on the same vector column.
This can be used to create a replacement index before dropping an older one.
Unnamed duplicate vector index definitions are still rejected, and index names
must remain unique within a keyspace.

Example of a simple index:

```cql
CREATE CUSTOM INDEX vectorIndex ON ImageEmbeddings (embedding)
USING 'vector_index'
WITH OPTIONS = {'similarity_function': 'COSINE', 'maximum_node_connections': '16'};
```

The vector column (`embedding`) is indexed to enable similarity search using
a global vector index. Additional filtering can be performed on the primary key
columns of the base table.

Example of a global vector index with additional filtering:

```cql
CREATE CUSTOM INDEX vectorIndex ON ImageEmbeddings (embedding, category, info)
USING 'vector_index'
WITH OPTIONS = {'similarity_function': 'COSINE', 'maximum_node_connections': '16'};
```

The vector column (`embedding`) is indexed to enable similarity search using
a global index. Additional columns are added for filtering the search results.
The filtering is possible on `category`, `info` and all primary key columns
of the base table.

Example of a local vector index:

```cql
CREATE CUSTOM INDEX vectorIndex ON ImageEmbeddings ((id, created_at), embedding, category, info)
USING 'vector_index'
WITH OPTIONS = {'similarity_function': 'COSINE', 'maximum_node_connections': '16'};
```

The vector column (`embedding`) is indexed for similarity search (a local
index) and additional columns are added for filtering the search results. The
filtering is possible on `category`, `info` and all primary key columns of
the base table. It is allowed to create a local vector index using
primary key columns of the base table or non-primary-key columns.

Vector indexes support a local index partition key or additional filtering
columns of native data types (excluding counter and duration). The first column
after the partition key definition must be a vector column, while the extra
columns can be used to filter search results.

The supported types are:

* `ascii`
* `bigint`
* `blob`
* `boolean`
* `date`
* `decimal`
* `double`
* `float`
* `inet`
* `int`
* `smallint`
* `text`
* `varchar`
* `time`
* `timestamp`
* `timeuuid`
* `tinyint`
* `uuid`
* `varint`

The following options are supported for vector indexes. All of them are optional.

| Option Name                | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                | Default Value   |
|----------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| `similarity_function`      | The similarity function to use for vector comparisons. Supported values are:<br/>`COSINE`, `EUCLIDEAN`, and `DOT_PRODUCT`. `DOT_PRODUCT` requires vectors to be<br/>normalized, meaning each vector should have unit length (L2 norm = 1). For more information, see<br/>[Vector normalization](https://en.wikipedia.org/wiki/Normalization_(statistics)#Vector_normalization).                                                                                            | `COSINE`        |
| `maximum_node_connections` | The maximum number of connections per node in the HNSW graph. In other HNSW implementations<br/>it is often denoted as `m`. Higher values lead to better recall (i.e., more relevant<br/>results are found) but increase memory usage and index size. Supported values are integers<br/>between 1 and 512.                                                                                                                                                                 | `16`            |
| `construction_beam_width`  | The beam width to use during index **construction**. In other HNSW implementations it is often<br/>denoted as `efConstruction`. Higher values lead to better recall (i.e., more relevant<br/>results are found) but increase index creation time and memory usage. Supported values are<br/>integers between 1 and 4096.                                                                                                                                                   | `128`           |
| `search_beam_width`        | The beam width to use during index **search**. In other HNSW implementations it is often denoted<br/>as `efSearch`. Higher values lead to better recall (i.e., more relevant results are found)<br/>but increase query latency. Supported values are integers between 1 and 4096.                                                                                                                                                                                          | `64`            |
| `quantization`             | The quantization method to use for compressing vectors in Vector Index. Vectors in base table<br/>are never compressed. Supported values (case-insensitive) are:<br/><br/>* `f32`: 32-bit single-precision IEEE 754 floating-point.<br/>* `f16`: 16-bit standard half-precision floating-point (IEEE 754).<br/>* `bf16`: 16-bit “Brain” floating-point (optimized for ML workloads).<br/>* `i8`: 8-bit signed integer.<br/>* `b1`: 1-bit binary value (packed 8 per byte). | `f32`           |
| `oversampling`             | A multiplier for the candidate set size during the search phase. For example, if a query asks for 10<br/>similar vectors (`LIMIT 10`) and `oversampling` is 2.0, the search will initially retrieve 20<br/>candidates. This can improve accuracy at the cost of latency. Supported values are<br/>floating-point numbers between 1.0 (no oversampling) and 100.0.                                                                                                          | `1.0`           |
| `rescoring`                | Flag enabling recalculation of similarity scores with full precision and re-ranking of the candidate set.<br/>Valid only for quantization below `f32`. Supported values are:<br/><br/>* `true`: Enable rescoring.<br/>* `false`: Disable rescoring.                                                                                                                                                                                                                        | `false`         |
| `source_model`             | The name of the embedding model that produced the vectors (e.g., `"ada002"`). Cassandra client<br/>libraries such as CassIO send this option to tag the index with the model. Cassandra SAI rejects it as<br/>an unrecognized property; ScyllaDB accepts and preserves it in `DESCRIBE` output for compatibility<br/>with those libraries, but does not act on it.                                                                                                         | *(none)*        |

<a id="cassandra-sai-compatibility"></a>

### Cassandra SAI Compatibility for Vector Search

ScyllaDB accepts the Cassandra `StorageAttachedIndex` (SAI) class name in `CREATE CUSTOM INDEX`
statements **for vector columns**. Cassandra libraries such as
[CassIO](https://github.com/CassioML) and [LangChain](https://www.langchain.com/) use SAI to create
vector indexes; ScyllaDB recognizes these statements for compatibility.

When ScyllaDB encounters an SAI class name on a **vector column**, the index is automatically
created as a native `vector_index`. The following class names are recognized:

* `org.apache.cassandra.index.sai.StorageAttachedIndex` (exact case required)
* `StorageAttachedIndex` (case-insensitive)
* `SAI` (case-insensitive)

Example:

```cql
-- Cassandra SAI statement accepted by ScyllaDB:
CREATE CUSTOM INDEX ON my_table (embedding)
USING 'org.apache.cassandra.index.sai.StorageAttachedIndex'
WITH OPTIONS = {'similarity_function': 'COSINE'};

-- Equivalent to:
CREATE CUSTOM INDEX ON my_table (embedding)
USING 'vector_index'
WITH OPTIONS = {'similarity_function': 'COSINE'};
```

The `similarity_function` option is supported by both Cassandra SAI and ScyllaDB.

#### NOTE
SAI class names are supported on **vector columns** and on **ENTRIES of non-frozen map
columns** (the CassIO metadata-map pattern).

* For vector columns, the index is rewritten to a native `vector_index`.
* For `ENTRIES(map_column)`, the SAI class is stripped and a standard secondary index
  is created instead. A CQL warning is emitted noting possible behavioral differences
  with Cassandra SAI metadata filtering. This rewrite requires the
  `enable_cassio_compatibility` configuration option to be set to `true`.

Using an SAI class name on any other non-vector column (e.g., `text` or `int`) will
result in an error. General SAI indexing is not supported by ScyllaDB; use a
[secondary index](https://docs.scylladb.com/manual/master/cql/secondary-indexes.md) instead.

Example of the metadata-map rewrite:

```cql
-- CassIO issues this during schema setup:
CREATE CUSTOM INDEX ON my_table (ENTRIES(metadata_s))
USING 'org.apache.cassandra.index.sai.StorageAttachedIndex';

-- ScyllaDB creates the equivalent of:
CREATE INDEX ON my_table (ENTRIES(metadata_s));
```

<a id="create-fulltext-index-statement"></a>

## Full-text Index ScyllaDB Cloud

#### NOTE
Full-text indexes are supported in ScyllaDB Cloud only in clusters that have the Vector and Text Search feature enabled.
For the full list of unsupported ScyllaDB features, see the
[Full-Text Search documentation](https://docs.scylladb.com/manual/master/features/fulltext-search.md).

ScyllaDB supports creating full-text indexes on text columns, enabling full-text search queries that rank results
by relevance using the BM25 scoring algorithm. A full-text index is a custom index created using the `CUSTOM`
keyword and specifying the index type as `fulltext_index`.

CDC is enabled automatically on the base table when a full-text index is created.

**Column restrictions:**

* The indexed column must be of type `text`, `varchar`, or `ascii`. Other types are rejected.
* The indexed column must be a regular or clustering-key column. Partition-key columns cannot be indexed.
* The table must use tablets (not vnodes).

Example:

```cql
CREATE CUSTOM INDEX ON articles (body) USING 'fulltext_index';
```

You can specify an analyzer to control how text is tokenized:

```cql
CREATE CUSTOM INDEX ON articles (body) USING 'fulltext_index'
    WITH OPTIONS = {'analyzer': 'english'};
```

The following options are supported for full-text indexes:

| Option      | Description                                                                                                                                                                                                                                                                                                    | Default Value   |
|-------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------|
| `analyzer`  | Text analyzer for tokenization. Determines how text is split into terms.<br/>Supported values (case-insensitive): `standard`, `english`, `german`,<br/>`french`, `spanish`, `italian`, `portuguese`, `russian`, `simple`,<br/>`whitespace`. CJK analyzers (`chinese`, `japanese`, `korean`) are not supported. | `standard`      |
| `positions` | Whether token positions are stored. Required for phrase queries.<br/>Supported values: `true`, `false` (case-insensitive).                                                                                                                                                                                     | `true`          |

<a id="drop-index-statement"></a>

## DROP INDEX

Dropping a secondary index uses the `DROP INDEX` statement:

```cql
drop_index_statement: DROP INDEX [ IF EXISTS ] `index_name`
```

The `DROP INDEX` statement is used to drop an existing secondary index. The argument of the statement is the index
name, which may optionally specify the keyspace of the index.

If the index is currently being built, the `DROP INDEX` can still be executed. Once the `DROP INDEX` command is issued,
the system stops the build process and cleans up any partially built data associated with the index.

<!-- If the index does not exists, the statement will return an error, unless ``IF EXISTS`` is used in which case the -->
<!-- operation is a no-op. -->

## Additional Information

* [Global Secondary Indexes](https://docs.scylladb.com/manual/master/features/secondary-indexes.md)
* [Local Secondary Indexes](https://docs.scylladb.com/manual/master/features/local-secondary-indexes.md)

The following courses are available from ScyllaDB University:

* [Materialized Views and Secondary Indexes](https://university.scylladb.com/courses/data-modeling/lessons/materialized-views-secondary-indexes-and-filtering/)
* [Global Secondary Indexes](https://university.scylladb.com/courses/data-modeling/lessons/materialized-views-secondary-indexes-and-filtering/topic/global-secondary-indexes/)
* [Local Secondary Indexes](https://university.scylladb.com/courses/data-modeling/lessons/materialized-views-secondary-indexes-and-filtering/topic/local-secondary-indexes-and-combining-both-types-of-indexes/)

Copyright

© 2016, The Apache Software Foundation.

Apache®, Apache Cassandra®, Cassandra®, the Apache feather logo and the Apache Cassandra® Eye logo are either registered trademarks or trademarks of the Apache Software Foundation in the United States and/or other countries. No endorsement by The Apache Software Foundation is implied by the use of these marks.
