几天后,我的弹性查询不再起作用了。我没有问题填充,如果我删除GeoDistance部分请求已执行,我得到结果。目前,在跟踪中,我收到以下消息:
"message": "1",
"class": "Elastica\\Exception\\PartialShardFailureException",
"trace": [
{
"namespace": "",
"short_class": "",
"class": "",
"type": "",
"function": "",
"file": "/Applications/MAMP/htdocs/GTAB/what2days/api/vendor/ruflin/elastica/lib/Elastica/Transport/Http.php",
"line": 150,
"args": []
}
这对我来说没什么意义所以我只是创建了一个$shardsStatistics
变量的var_export,我明白了:
array (
'total' => 6,
'successful' => 5,
'failed' => 1,
'failures' =>
array (
0 =>
array (
'index' => '.marvel-2014.09.16',
'shard' => 0,
'status' => 400,
'reason' => 'SearchParseException[[.marvel-2014.09.16][0]: from[-1],size[-1]: Parse Failure [Failed to parse source [{"query":{"filtered":{"query":{"bool":{"must":[{"term":{"online":{"value":1}}}]}},"filter":{"bool":{"must":[{"geo_distance":{"distance":"100mi","location.latlon":{"lat":48.891773,"lon":2.3379156}}}]}}}}}},"size":"100"}]]]; nested: QueryParsingException[[.marvel-2014.09.16] failed to find geo_point field [location.latlon]]; ',
),
),
)
错误完成“找不到geo_point字段[location.latlon]]”。我不知道为什么它不起作用,因为当我检查_mapping时,geo_point存在并且我没有错误地使用该属性的名称。
location: {
properties: {
latitude: {
type: "float",
store: true
},
latlon: {
type: "geo_point",
store: true,
lat_lon: true
},
longitude: {
type: "float",
store: true
}
}
},
这就是我设置fos_elastica
的方式fos_elastica:
clients:
default: { host: localhost, port: 9200 }
indexes:
search:
finder: ~
types:
mytype:
mappings:
title:
type: string
online:
type: integer
information: ~
location:
type: object
properties:
longitude:
type: float
latlon:
type: geo_point
lat_lon: true
boost: 10
persistence:
driver: orm
model: API\Rest\v1\MyBundle\Entity\MyEntity
provider: ~
listener: ~
finder: ~
repository: API\Rest\v1\MyBundle\Repository\MyRepository
当我使用$ query-> getQuery()检索的查询值(参见下面的查询)发出kopf请求时,我得到了正确的结果。
{
"query": {
"filtered": {
"query": {
"bool": {
"must": [
{
"term": {
"online": {
"value": 1
}
}
}
]
}
},
"filter": {
"bool": {
"must": [
{
"geo_distance": {
"distance": "1mi",
"location.latlon": {
"lat": 48.891773,
"lon": 2.3379156
}
}
}
]
}
}
}
}
}
我不知道该怎么办。我在3.0.*@alpha版本,现在我正在尝试开发大师。我希望有人能帮助我找出问题所在。
当我在Elastica / Response.php的方法getData
中创建一个var_export时,我遇到了我之前解释过的失败,我也有一次命中(我想要得到的)。
答案 0 :(得分:0)
我终于找到了解决方案。
我必须添加一个index_name并告诉\Elastica\Search
addIndex('new_index')
和addType('specific type')
我认为搜索会自动获取正确的索引,因为我使用的是特定的存储库,但我错了。