在设计应用程序时,我想知道ElasticSearch是否适合实现它(以及如何实现)。任何建议将不胜感激!
我的应用程序需要存储(许多)文档,每个文档都表示为一系列单词。我还想将信息与每个单词联系起来。例如,假设我想将单词长度与每个单词相关联。所以我会有这样的事情:
The house is yellow
3 5 2 6
现在,我想执行查询,例如“给我长度为2的单词,然后单词'yellow'”。在关系数据库中,我将单词形式和长度存储为不同的属性,例如:
Word Length N
---------------------------
the 3 1
house 5 2
is 2 3
yellow 6 4
(其中N是单词的位置),在SQL中,我会做这样的事情:
SELECT word, N1 as N
FROM documents
WHERE (word=”yellow” AND N1 in (SELECT N2 as N
FROM documents
WHERE length=2 AND (N1-N2=1 OR N2-N1=1)
)
)
我正在努力将相同的功能实现到ElasticSearch中。我已经阅读了在线手册和参考书,但我无法弄清楚如何用ES做到这一点。因此,非常感谢您的任何建议。
考虑到: 数据库将具有许多与单词相关联的属性,我将需要查询它们的任何组合。 这些属性已预先计算并离线加载到数据库中。
谢谢!
答案 0 :(得分:0)
首先,谢谢你的回答。我已阅读有关自定义分析仪的信息和示例,但我仍然不知道该怎么做。
这是我完成的文档映射:
"mappings" : {
"Sentence": {
"properties" : {
"word":{
"type":"string",
"index" : "not_analyzed"
},
"attributes":{
"properties":{
"length”: {
"type": "integer",
"index_analyzer": "standard"
},
"N": {
"type": "integer",
"index_analyzer": "standard"
}
}
}
}
}
}
这是索引文件:
curl -XPUT http://localhost:9200/documents/Sentence/1 -d '
{
"Sentence":[
{"word":"the",
"attributes":{
"length”:3,
"N":1
}
},
{"word":"house",
"attributes":{
"length”:5,
"N":2
}
},
{"word":"is",
"attributes":{
"length”:2,
"N":3
}
},
{"word":"yellow",
"attributes":{
"length”:6,
"N":4
}
}
]
}';
我尝试执行上一个查询("使用跨度查询给我长度为2的单词,后跟单词'黄色'")
curl -XPOST http://localhost:9200/documents/Sentence/_search?pretty -d '
{
"query": {
"span_near": {
"clauses": [
{"span_term" : {"word":"yellow"}},
{"span_term" : {"length”:2}}
],
"slop":0
}
}
}';
但我无法做到这一点,因为条款必须具有相同的字段。所以我放弃了该选项(跨度查询)。
如何创建自定义分析器来执行我想要的查询?
谢谢。