GetCollectionInfo 用于查询指定数据集 Collection 的详情信息。
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
CollectionName/CollectionAlias |
| 是 | 数据集名称/数据集别名,二者选其一 |
declare class ListCollectionsResponse { readonly CollectionInfo: CollectionInfo; readonly OriginalRequest: string; readonly LogId: string; constructor( CollectionInfo: CollectionInfo, OriginalRequest: string, LogId: string ); }
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
CollectionName |
| 是 | 数据集名称 |
Description |
| 否 | 数据集描述 |
CollectionAliases |
| 否 | 数据集别名列表 |
Fields |
| 是 | 数据集字段 |
Stat |
| 是 | 数据集状态 |
IndexNames |
| 是 | 数据集下索引名称列表 |
IndexNumber |
| 是 | 数据集下索引数量 |
CreateTime |
| 是 | 数据集创建时间 |
UpdateTime |
| 是 | 数据集更新时间 |
UpdatePerson |
| 是 | 数据集更新人 |
type FieldInfo = | ScalarFieldInfo | PrimaryKeyFieldInfo | DenseVectorFieldInfo | SparseVectorFieldInfo | TextFieldInfo enum FieldType { Int64 = "int64", Float32 = "float32", String = "string", Boolean = "bool", ListString = "list<string>", ListInt64 = "list<int64>", /** 稠密向量 */ DenseVector = "vector", /** 稀疏向量 */ SparseVector = "sparse_vector", Text = "text", } type PipelineName = | "text_split_bge_large_zh" | "text_bge_large_zh" | "text_split_bge_m3" | "text_bge_m3" | "text_split_bge_large_and_m3" | "text_bge_large_and_m3"
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
FieldName |
| 是 | 字段名 |
FieldType |
| 是 | 字段类型 |
DefaultValue |
| 否 | 字段默认值,类型需要与传入的 FieldType 对齐 |
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
FieldName |
| 是 | 字段名 |
FieldType |
| 是 | 字段类型 |
IsPrimary |
| 是 | 是否主键字段,只允许传 |
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
FieldName |
| 是 | 字段名 |
FieldType |
| 是 | 字段类型 |
Dim |
| 是 | 向量维度,需要 4 的倍数 |
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
FieldName |
| 是 | 字段名 |
FieldType |
| 是 | 字段类型 |
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
FieldName |
| 是 | 字段名 |
FieldType |
| 是 | 字段类型 |
PipelineName |
| 否 | 绑定的 pipeline_name |
字段名 | 类型 | 是否必传 | 说明 |
---|---|---|---|
DataNumber |
| 是 | 数据量 |
import { vikingdb } from '@volcengine/openapi' declare const service: vikingdb.VikingdbService // 替换为你初始化好的实例 const response = await service.collection.GetCollectionInfo({ CollectionName: 'test_collection_1', }) console.log(response.CollectionInfo) // 数据集详情信息