Добрый день
очень странно работает elastic search, не фильтрует или криво фильтрует по range
Фильтрую по полю price, тип integer
Этот запрос возвращает 1 запись
{
"query": {
"bool": {
"filter": [
{
"range": {
"price": {
"gte": 100,
"lte" : 10000000
}
}
}
]
}
}
}
Возвращает
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 1,
"relation": "eq"
},
"max_score": 0.0,
"hits": [
{
"_index": "indexsearchj",
"_type": "_doc",
"_id": "4064",
"_score": 0.0,
"_source": {
"name": "Раз два три",
"id": 4064,
"id_category": 1,
"price": 100000,
"is_my": 1,
"business_type": "3",
"area": "1123",
"property-type": "1",
"itemType": "2",
"metro": "18",
"metro-closest": "7"
}
}
]
}
}
а вот этот больше
{
"query": {
"bool": {
"filter": [
{
"range": {
"price": {
"gte": 100,
"lte" : 6000000
}
}
}
]
}
}
}
{
"took": 5,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 12,
"relation": "eq"
},
"max_score": 0.0,
"hits": [
{
"_index": "indexsearch",
"_type": "_doc",
"_id": "1311",
"_score": 0.0,
"_source": {
"name": "",
"id": 1311,
"id_category": 1,
"price": 60000,
"is_my": 0,
"area": "40",
"property-type": "1",
"itemType": "2",
"business_type": "3",
"metro": "4",
"metro-closest": "8"
}
},
очень странное поведение, и не понимаю уже куда смотреть