クエリ対象オブジェクト(MyObject)内の配列にネストされているオブジェクト(Location)にネストされているgeo_point
(geo_coordinates)に対してフィルタリングしようとしています。
問題は、オブジェクトMyObjectにのためのマッピングはgeo_pointとしてgeo_coordinatesフィールドを見ていないということです。入れ子オブジェクトの配列内のgeo_pointに対するフィルタ
// Index mapping for object MyObject
"myobjects": {
"mappings": {
"myobject": {
"properties": {
"locations": {
"type": "nested",
"include_in_parent": true,
"properties": {
"geo_coordinates": {
"properties": {
"lat": { "type": "double" },
"lon": { "type": "double" }
}
},
}
[...]
// Index mapping for object Location
"locations": {
"mappings": {
"location": {
"properties": {
"geo_coordinates": {
"type": "geo_point"
},
}
}
}
マングースオブジェクトMyObjectには、次のようになります。
var MyObjectSchema = new Schema(
[...]
locations: {
type: [{ type: Schema.Types.ObjectId, ref: 'Location', es_schema: LocationSchema.schema}],
es_type: 'nested',
es_include_in_parent: true
},
[...]
)
マングースオブジェクトの場所のように見えますこの:
var LocationSchema = new Schema(
[...]
geo_coordinates: {
type: {
geo_point: {
type: String,
es_type: 'geo_point',
es_lat_lon: true
},
lat: {type: Number, default: 0},
lon: {type: Number, default: 0}
},
es_type: 'geo_point'
}
[...]
);
私のクエリは次のようになります。
// POST http://ES-endpoint/locations/_search
{
"query": {
"filtered" : {
"query": {
"match_all" : {}
},
"filter" : {
"geo_distance" : {
"distance" : "20000km",
"locations.geo_coordinates" : {
"lat" : 40,
"lon" : -70
}}}}}}
私は何かを欠場する必要がありますが、何ですか?
PS:Kibanaと索引を探索する場合、両方のオブジェクトがgeo_locationに対して同じデータを持っている:
"geo_coordinates": {
"lat": x.xxxx,
"lon": y.yyy
}