云数据库 GAUSSDB-向量函数和操作符:gs_vector_index_options

时间:2024-11-02 18:45:34

gs_vector_index_options

功能说明:显示相关向量索引的超参取值。

入参类型:text

出参类型:text

代码示例

--创建表。
gaussdb=# CREATE TABLE t1 (id int unique,repr floatvector(960)) with (storage_type=astore);
插入数据:
gaussdb=# copy t1 from '/data/gist1w.txt' delimiter '^';
创建索引:
gaussdb=# CREATE INDEX test1v on t1 using gsdiskann (repr l2) with (pq_nseg=120,pq_nclus=64,queue_size=120,num_parallels=30,enable_pq=true,using_clustering_for_parallel=false); 

gaussdb=# SELECT gs_vector_index_options('test1v');
support.huaweicloud.com/centralized-devg-v8-gaussdb/gaussdb-42-0422.html