REBUILD_INDEX
Use the DBMS_VECTOR.REBUILD_INDEX
function to rebuild a vector index.
Purpose
To rebuild a vector index such as Hierarchical Navigable Small World (HNSW) vector index or Inverted File Flat (IVF) vector index. In case only the idx_name
is provided, it rebuilds the index using get_ddl
. When all the parameters are provided, it performs a drop index followed by a call to dbms_vector.create_index()
.
Syntax
DBMS_VECTOR.REBUILD_INDEX (
idx_name IN VARCHAR2,
table_name IN VARCHAR2 DEFAULT NULL,
idx_vector_col IN VARCHAR2 DEFAULT NULL,
idx_include_cols IN VARCHAR2 DEFAULT NULL,
idx_partitioning_scheme IN VARCHAR2 DEFAULT NULL,
idx_organization IN VARCHAR2 DEFAULT NULL,
idx_distance_metric IN VARCHAR2 DEFAULT 'COSINE',
idx_accuracy IN NUMBER DEFAULT 90,
idx_parameters IN CLOB DEFAULT NULL,
idx_parallel_creation IN NUMBER DEFAULT 1,
);
Parameters
Parameter | Description |
---|---|
|
Name of the index to rebuild. |
|
Table on which to create the index. |
|
Vector column on which to create the index. |
idx_include_cols |
A comma-separated list of column names to be covered by the index. |
|
Partitioning scheme for IVF indexes:
IVF indexes support both global and local indexes on partitioned tables. By default, these indexes are globally partitioned by centroid. You can choose to create a local IVF index, which provides a one-to-one relationship between the base table partitions or subpartitions and the index partitions. For detailed information on these partitioning schemes, see Inverted File Flat Vector Indexes Partitioning Schemes. |
|
Index organization:
For detailed information on these organization types, see Manage the Different Categories of Vector Indexes. |
|
Distance metric or mathematical function used to compute the distance between vectors:
For detailed information on each of these metrics, see Vector Distance Functions and Operators. |
|
Target accuracy at which the approximate search should be performed when running an approximate search query. As explained in Understand Approximate Similarity Search Using Vector Indexes, you can specify non-default target accuracy values either by specifying a percentage value or by specifying internal parameters values, depending on the index type you are using.
|
|
Type of vector index and associated parameters. Specify the indexing parameters in JSON format:
|
|
Number of parallel threads used for index construction. |
Examples
-
Specify neighbors and efConstruction for HNSW indexes:
dbms_vector.rebuild_index( 'v_hnsw_01', 'vpt01', 'EMBEDDING', NULL, NULL, 'INMEMORY NEIGHBOR GRAPH', 'EUCLIDEAN', 95, '{"type" : "HNSW", "neighbors" : 3, "efConstruction" : 4}');
-
Specify the number of partitions for IVF indexes:
dbms_vector.rebuild_index( 'V_IVF_01', 'vpt01', 'EMBEDDING', NULL, NULL, 'NEIGHBOR PARTITIONS', 'EUCLIDEAN', 95, '{"type" : "IVF", "partitions" : 5}');
Parent topic: DBMS_VECTOR