使用ES 修改id为555的数据的一个字段 索引 test 字段名alarm_tags 值 [测试标签1号]
时间: 2023-05-28 15:01:37 浏览: 103
修改数据标签
以下为使用 Elasticsearch 官方提供的 Python API 进行操作的示例代码:
```python
from elasticsearch import Elasticsearch
# 创建 Elasticsearch 客户端实例
es = Elasticsearch()
# 修改 id 为 555 的文档
doc = {
"doc": {
"alarm_tags": ["测试标签1号"]
}
}
es.update(index="test", id="555", body=doc)
```
解释:
- `Elasticsearch()`:创建一个 Elasticsearch 客户端实例
- `update()`:更新一个文档的信息,需要传入以下参数:
- `index`:索引名称
- `id`:文档的 `_id` 值
- `body`:文档的更新内容,使用 `doc` 字段指定需要更新的字段及其新值。
阅读全文