环境:

  1. Elasticsearch 版本:7.10.1
  2. elasticsearch-analysis-ik 版本:7.10.1
  3. Elasticsearch 操作的 Python 库版本:7.16.1

问题:

python 的 elasticsearch 模块在执行 update、search、index 等方法的时候 提示:提示 DeprecationWarning: The ‘body’ parameter is deprecated

警告示例代码如下:

data = {
    "title": "窗前明月光",
    'url': 'http://www.xxx.com',
    'date': '2021-12-29',
    'number':1
}
es.update(index='news', body=data,id=1)
es.index(index='news', body=data)

dsl = {
    'query': {
        'match': {
            'title': '高考 圆梦'
        }
    }
}
 
result = es.search(index='news',body=dsl)

执行的时候能够正常执行。却提示:
DeprecationWarning: The ‘body’ parameter is deprecated for the ‘update’ API and will be removed in a future version. Instead use API parameters directly. See https://github.com/elastic/elasticsearch-py/issues/1698 for more information

根据提示在 https://github.com/elastic/elasticsearch-py/issues/1698 中提示到:
The parameter for APIs are deprecated body
For JSON requests each field within the top-level JSON object will become it’s own parameter of the API with full type hinting

# ✅ New usage:
es.search(query={...})

# ❌ Deprecated usage:
es.search(body={"query": {...}})

大概意思是:body 这个 API 的参数已被弃用,对于JSON请求,顶级JSON对象中的每个字段都将成为API自己的参数。

所以可以这样更改语句:

data = {
    "title": "窗前明月光",
    'url': 'http://www.xxx.com',
    'date': '2021-12-29',
    'number':1
}
es.update(index='news', id=2, doc=data)
es.index(index='news',doc_type='_doc', id=1, document=data)

query = {
    'match': {
        'title': '高考 圆梦'
    }
}
result = es.search(index='news',query=query)