milvus的delete操作

本文涉及的产品
RDS PostgreSQL Serverless,0.5-4RCU 50GB 3个月
推荐场景:
对影评进行热评分析
阿里云百炼推荐规格 ADB PostgreSQL,4核16GB 100GB 1个月
简介: milvus的delete操作

milvus的delete操作

milvus版本:v2.3.2

milvus支持delete操作。

使用python sdk代码如下:

from pymilvus import (
    connections,
    Collection,
)

print("start connecting to Milvus")
connections.connect("default", host="192.168.230.71", port="19530")

hello_milvus = Collection("hello_milvus")

print("Start delete entities")
expr = "pk in [446576772095935668,446576772095935667]"
delete_result = hello_milvus.delete(expr)
print(delete_result)

不管pk是否存在都会返回对应的数量:
(insert count: 0, delete count: 2, upsert count: 0, timestamp: 446577115426193409, success count: 0, err count: 0)

这里例子指定了2个id需要删除,如果这2个id不存在,【delete count】也会返回2。

目录
相关文章
|
6月前
|
存储 SQL API
milvus insert api流程源码分析
milvus insert api流程源码分析
277 3
|
6月前
|
Go API 数据库
milvus的db和collection信息查询
milvus的db和collection信息查询
1125 0
|
3月前
|
存储 JSON API
【Azure 存储服务】使用REST API操作Azure Storage Table,删除数据(Delete Entity)
【Azure 存储服务】使用REST API操作Azure Storage Table,删除数据(Delete Entity)
【Azure 存储服务】使用REST API操作Azure Storage Table,删除数据(Delete Entity)
|
6月前
|
Oracle 关系型数据库 MySQL
【MySQL】8. 基本查询(update/delete/聚合/分组)
【MySQL】8. 基本查询(update/delete/聚合/分组)
59 0
|
6月前
|
索引
Elasticsearch update_by_query 语句使用记录
Elasticsearch update_by_query 语句使用记录
183 0
|
6月前
Hologres的INSERT ON CONFLICT语法暂时不支持多个values的直接插入
Hologres的INSERT ON CONFLICT语法暂时不支持多个values的直接插入
62 2
|
11月前
|
存储 API 开发工具
CreatePartition API执行流程_syncNewCreatedPartitionStep_milvus源码解析
CreatePartition API执行流程_syncNewCreatedPartitionStep_milvus源码解析
565 0
|
存储 API 开发工具
CreatePartition API执行流程_milvus源码解析
CreatePartition API执行流程_milvus源码解析
532 0
|
存储 SQL OLAP
57.【clickhouse】ClickHouse从入门到放弃-update和delete的使用
【clickhouse】ClickHouse从入门到放弃-update和delete的使用
57.【clickhouse】ClickHouse从入门到放弃-update和delete的使用