python elasticserch:只有完全匹配才能返回结果

时间:2017-01-15 03:36:20

标签: python elasticsearch

我是elasticsearch的新手。我的索引中有一个标题为:使用Python和Elasticsearch 当我搜索它时,除了我正在搜索“使用Python与Elasticsearch”之外,我总是得到零命中。 像:

1,代码

    import elasticsearch 
    INDEX_NAME= 'test_1' 
    from elasticsearch import Elasticsearch 
    es = Elasticsearch() 
    es.index(index=INDEX_NAME, doc_type='post', id=1, body={'title': 'Using Python with Elasticsearch', 'tags': ['python', 'elasticsearch', 'tips'], })
    es.indices.refresh(index=INDEX_NAME) 
    res = es.indices.get(index=INDEX_NAME) 
    print res

输出结果为:

{u'test_1': {u'warmers': {}, u'settings': {u'index': {u'number_of_replicas': u'1', u'number_of_shards': u'5', u'uuid': u'Z2KLxeQLRay4rFgdK4yo9A', u'version': {u'created': u'2020199'}, u'creation_date': u'1484405704970'}}, u'mappings': {u'post': {u'properties': {u'blog': {u'type': u'string'}, u'title': {u'type': u'string'}, u'tags': {u'type': u'string'}, u'author': {u'type': u'string'}}}}, u'aliases': {}}}

2,我使用以下代码更改映射:

INDEX_NAME = 'test_1'
from elasticsearch import Elasticsearch
es = Elasticsearch()
request_body = {
'mappings':{
'post': {
'properties': {
'title': {'type':'text'}
}
}
}
}
if es.indices.exists(INDEX_NAME):
res = es.indices.delete(index = INDEX_NAME)
print(" response: '%s'" % (res))
res = es.indices.create(index = INDEX_NAME, body= request_body, ignore=400)
print res

输出

response: '{u'acknowledged': True}'
{u'status': 400, u'error': {u'caused_by': {u'reason': u**'No handler for type [text] declared on field [title]**', u'type': u'mapper_parsing_exception'}, u'root_cause': [{u'reason': u'No handler for type [text] declared on field [title]', u'type': u'mapper_parsing_exception'}], u'type': u'mapper_parsing_exception', u'reason': u'Failed to parse mapping [post]: No handler for type [text] declared on field [title]'}}

3,我将弹性搜索从1.9更新为(5,1,0,'dev')

4,我还尝试使用下面的代码更改映射

request_body = {
'mappings':{
'post': {
'properties': {
**'title': {'type':'string', "index": "not_analyzed"}**
}
}
}
}

5我也以这种方式更改映射

    request_body = {
'mappings':{
'post': {
'properties': {
**'title': {'type':'string', "index": "analyzed"}**
}
}
}
}

但是,仍然无法使用“使用Python”查询获得命中! 非常感谢!!

我只安装了python版本的elasticsearch。代码只是网络上的简单演示代码。

非常感谢!

1 个答案:

答案 0 :(得分:0)

在映射中指定{"index" : "not_analyzed"}时,意味着elasticsearch将按原样存储它而不进行分析。这就是为什么当你搜索“使用Python”时你没有得到结果。使用elasticsearch 5.x,如果您将字段type的数据类型指定为text,则elasticsearch将首先对其进行分析,然后将其存储。有了它,您将能够在查询中获得“使用Python”的匹配。您可以在text类型here

周围找到更多文档