云搜索服务 CSS-示例:使用PV_GRAPH算法实现向量检索:导入向量和标量数据

时间:2024-08-15 16:33:56

导入向量和标量数据

针对使用了PV_GRPAH索引算法和“sub_fields”的字段,支持如下数据写入语法,其中联合标量字段仅支持写入keyword类型数据,且支持多值、单值场景。

# 写入单条数据
POST my_index/_doc
{
  "my_vector": {
    "data": [1.0, 1.0],
    "country": "cn",
    "category": ["1", "2"]
  }
}

# 批量写入多条数据
POST my_index/_bulk
{"index": {}}
{"my_vector": {"data": [1.0, 2.0], "country": "cn", "category": "1"}}
{"index": {}}
{"my_vector": {"data": [2.0, 2.0], "country": "cn", "category": ["1", "2"]}}
{"index": {}}
{"my_vector": {"data": [2.0, 3.0], "country": "eu", "category": "2"}}
support.huaweicloud.com/usermanual-css/css_01_0363.html