嗨,请给我指示。/我正在使用 elasticsearch 0.17.6 和 couchdb 1.1.0
我在 couchdb 上创建了两个文档:每个文档都有字符串字段:名称、消息。第一个由文本文件“test.txt”附加,第二个不是。CouchDB生成的JSON代码是这样的:
{
"_id": "ID1",
"_rev": "6-e1ab4c5c65b98e9a0d91e5c8fc1629bb",
"name": "Document1",
"message": "Evaluate Elastic Search",
"_attachments": {
"test.txt": {
"content_type": "text/plain",
"revpos": 5,
"digest": "md5-REzvAVEZoSV69SLI/vaflQ==",
"length": 86,
"stub": true
}
}
}
{
"_id": "ID2",
"_rev": "2-72142ec18248cedb4dba67305d136aa8",
"name": "Document2",
"message": "test Elastic Search"
}
这两个文档位于名为 my_test_couch_db 的数据库中
我使用 Elasticsearch (ES) 使用插件索引这些文档:河流和映射器附件。对于每个给定的文本,我希望 ES 不仅可以在文档的字段中找到相应的文本,还可以在附件 *.txt 文件中找到相应的文本。但这是不可能的。我尝试了很多方法:我手动创建了索引,映射(自动和手动),配置河流等。但是 ES 只能在文档的字段中找到单词,在 *.txt 附件文件中找不到单词。我遵循站点http://www.elasticsearch.org的指示,但它也不起作用。
感谢您的回答。
这是我的命令:
curl -X PUT "localhost:9200/test_idx_1"
curl -X PUT "localhost:9200/test_idx_1/test_mapping_1/_mapping" -d '{
"test_mapping_1": {
"properties": {
"_attachments": {
"type": "attachment",
"index": "yes"
}
}
}
}'
curl -XPUT 'http://localhost:9200/_river/test_river_1/_meta' -d '{
"type": "couchdb",
"couchdb": {
"host": "localhost",
"port": 5984,
"db": "my_test_couch_db",
"filter": null
},
"index": {
"index": "test_idx_1",
"type": "test_mapping_1"
}
}'
然后,我尝试搜索
curl -XPOST 'http://localhost:9200/my_test_couch_db/my_test_couch_db/_search'
(两个文件都很好找)
curl -XPOST 'http://localhost:9200/my_test_couch_db/my_test_couch_db/_search' -d '{
"query": {
"text": {
"_all": "test"
}
}
}'
这是输出
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 1,
"max_score": 0.081366636,
"hits": [
{
"_index": "my_test_couch_db",
"_type": "my_test_couch_db",
"_id": "ID2",
"_score": 0.081366636,
"_source": {
"message": "test Elastic Search",
"_rev": "2-72142ec18248cedb4dba67305d136aa8",
"_id": "ID2",
"name": "Document2"
}
}
]
}
}
如您所见,ES 只能在消息字段中找到“test”这个词,他们在 *.text 附件文件中找不到这个词。
我尝试其他查询:
curl -XPOST 'http://localhost:9200/my_test_couch_db/my_test_couch_db/_search' -d '{
"query": {
"text": {
"_attachments": "test"
}
}
}'
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}
curl -XPOST 'http://localhost:9200/my_test_couch_db/my_test_couch_db/_search' -d '{
"query": {
"text": {
"_attachments.fields.file": "test"
}
}
}'
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 5,
"successful": 5,
"failed": 0
},
"hits": {
"total": 0,
"max_score": null,
"hits": []
}
}
输出什么都没有。我尝试了其他映射,但它也不起作用。
为什么会这样以及如何解决这个问题?