pysolr更新文档有错误

时间:2016-11-16 12:32:17

标签: python-2.7 pysolr

更新: Pysolr版本:3.2.0

这似乎是solr中的一个错误。如果在操作中没有更新任何内容,它将删除此文档。

前我使用了using pysolr in atomic update中的代码,但我在以下情况下犯了错误。

现在文档架构可能是这样的:

doc = {
   'id':    ...,
   'title': ...,
   'body':  ...,
}

我已经索引了一批文档,现在我想用新字段anchor_text更新每个文档。这是我的代码:

solr = pysolr.Solr(url_solr)
doc_update = {
   'id': ...,
   'anchor_text': [a,b,c,...]
}
solr.add([doc_update], fieldUpdates={
    'anchor_text': 'set'
})

但我发现只有 id 字段留下了一些原始文档已移除。 更新后的内容如下:

doc = {
  'id':...
}

特别是对于那些anchor_text字段为空列表的人,原始文档将被删除。而其他人则没有。(可能我猜是因为我只看到几个案例)。

我查看了源代码,但没有发现任何有价值的内容。这是怎么回事?

在更新文档中使用pysolr的正确方法是什么?

1 个答案:

答案 0 :(得分:2)

我遇到了同样的问题(python-3.6,pysolr-3.6,solr 6.4.1)。由于我在网上找不到更多信息,我使用了一个请求解决方法,我将留在这里,以防任何人使用。

import requests
import json

def update_single_solr_field(doc_id_field, doc_id, field_update_name, field_update_value):
    # Updates a single field in a document with id 'doc_id'.
    # Updates only the 'field_update_name' field to the 'field_update_value', leaving other fields intact

    base_url = 'http://localhost:8983/'
    solr_url = 'solr/mysolrcore/'
    update_url = 'update?commit=true'
    full_url = base_url + solr_url + update_url
    headers = {'content-type': "application/json"}

    payload = [{
        doc_id_field: doc_id,
        field_update_name: {
            'set': field_update_value
        }
    }]

    response = requests.post(full_url, data=json.dumps(payload), headers=headers)

    return response

# example
id_field_name = 'id'
doc_id_to_update = '1700370208'
field_to_update = 'weight_field'
field_to_update_value = 20000
response_update = update_single_solr_field(id_field_name, doc_id_to_update, field_to_update, field_to_update_value)

print(response_update)