0

我正在尝试使用 Solr 搜索检索文档,然后尝试将具有相同 ID 的相同文档添加回 Solr。在这样做时,我遇到了版本冲突。基本上我正在添加url链接,如下面的代码所示。

solr = pysolr.Solr('http://**** ', timeout=10)
results = solr.search('resourceType:abc', rows=10)

for res in results:
    if 'url' not in res:
        print("adding...........")
        print(res['id'])
        link = 'https://twitter.com/twitter/statuses/' + res['id']
        res['url'] = link
        solr.add(res)
        print(link)
    else:
        print("no need to add")

输出:

pysolr.SolrError: Solr responded with an error (HTTP 409): [Reason: version conflict for 1402196942545952769 expected=1703466479926640640 actual=1703528530413879296]
4

0 回答 0