mirror of https://github.com/pelias/api.git
Browse Source
adjusted tests to account for new querying strategies, renamed all existing test fixture files to `*_original`. pointed query module to a PR for testing.pull/666/head
Stephen Hess
8 years ago
27 changed files with 2204 additions and 1896 deletions
@ -1,99 +1,59 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [ |
'query': { |
||||||
{ |
'filtered': { |
||||||
'match': { |
|
||||||
'parent.country_a': { |
|
||||||
'analyzer': 'standard', |
|
||||||
'query': 'ABC' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'match': { |
|
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'filter': { |
||||||
'score_mode': 'first', |
'bool': { |
||||||
'boost_mode': 'replace', |
'must': [ |
||||||
'functions': [{ |
{ |
||||||
'field_value_factor': { |
'match': { |
||||||
'modifier': 'log1p', |
'parent.country_a': { |
||||||
'field': 'popularity', |
'analyzer': 'standard', |
||||||
'missing': 1 |
'query': 'ABC' |
||||||
}, |
} |
||||||
'weight': 1 |
} |
||||||
}] |
}, |
||||||
} |
{ |
||||||
},{ |
'terms': { |
||||||
'function_score': { |
'layer': [ |
||||||
'query': { |
'test' |
||||||
'match': { |
] |
||||||
'phrase.default': { |
} |
||||||
'query': 'test', |
} |
||||||
'analyzer': 'peliasPhrase', |
] |
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
} |
||||||
}], |
}, |
||||||
'filter': [ |
'max_boost': 20, |
||||||
|
'functions': [ |
||||||
{ |
{ |
||||||
'terms': { |
'field_value_factor': { |
||||||
'layer': [ |
'modifier': 'log1p', |
||||||
'test' |
'field': 'popularity', |
||||||
] |
'missing': 1 |
||||||
} |
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
||||||
|
@ -0,0 +1,99 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [ |
||||||
|
{ |
||||||
|
'match': { |
||||||
|
'parent.country_a': { |
||||||
|
'analyzer': 'standard', |
||||||
|
'query': 'ABC' |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [ |
||||||
|
{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
File diff suppressed because it is too large
Load Diff
@ -1,98 +1,62 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'filter': { |
||||||
'score_mode': 'first', |
'bool': { |
||||||
'boost_mode': 'replace', |
'must': [ |
||||||
'functions': [{ |
{ |
||||||
'field_value_factor': { |
'geo_bounding_box': { |
||||||
'modifier': 'log1p', |
'type': 'indexed', |
||||||
'field': 'popularity', |
'center_point': { |
||||||
'missing': 1 |
'top': 11.51, |
||||||
}, |
'right': -61.84, |
||||||
'weight': 1 |
'bottom': 47.47, |
||||||
}] |
'left': -103.16 |
||||||
} |
} |
||||||
},{ |
} |
||||||
'function_score': { |
}, |
||||||
'query': { |
{ |
||||||
'match': { |
'terms': { |
||||||
'phrase.default': { |
'layer': [ |
||||||
'query': 'test', |
'test' |
||||||
'analyzer': 'peliasPhrase', |
] |
||||||
'type': 'phrase', |
} |
||||||
'slop': 2, |
} |
||||||
'boost': 1 |
] |
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
|
||||||
}], |
|
||||||
'filter': [{ |
|
||||||
'geo_bounding_box': { |
|
||||||
'type': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'top': 11.51, |
|
||||||
'right': -61.84, |
|
||||||
'bottom': 47.47, |
|
||||||
'left': -103.16 |
|
||||||
} |
} |
||||||
} |
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'functions': [ |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
}, |
}, |
||||||
{ |
{ |
||||||
'terms': { |
'field_value_factor': { |
||||||
'layer': [ |
'modifier': 'log1p', |
||||||
'test' |
'field': 'population', |
||||||
] |
'missing': 1 |
||||||
} |
}, |
||||||
}] |
'weight': 2 |
||||||
|
} |
||||||
|
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -0,0 +1,98 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [{ |
||||||
|
'geo_bounding_box': { |
||||||
|
'type': 'indexed', |
||||||
|
'center_point': { |
||||||
|
'top': 11.51, |
||||||
|
'right': -61.84, |
||||||
|
'bottom': 47.47, |
||||||
|
'left': -103.16 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
@ -1,119 +1,65 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, { |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'functions': [{ |
'filter': { |
||||||
'linear': { |
'bool': { |
||||||
'center_point': { |
'must': [ |
||||||
'origin': { |
{ |
||||||
'lat': 29.49136, |
'terms': { |
||||||
'lon': -82.50622 |
'layer': [ |
||||||
}, |
'test' |
||||||
'offset': '0km', |
] |
||||||
'scale': '50km', |
} |
||||||
'decay': 0.5 |
} |
||||||
} |
] |
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}] |
|
||||||
} |
} |
||||||
},{ |
}, |
||||||
'function_score': { |
'max_boost': 20, |
||||||
'query': { |
'functions': [ |
||||||
'match': { |
{ |
||||||
'phrase.default': { |
'weight': 2, |
||||||
'query': 'test', |
'linear': { |
||||||
'analyzer': 'peliasPhrase', |
'center_point': { |
||||||
'type': 'phrase', |
'origin': { |
||||||
'slop': 2, |
'lat': 29.49136, |
||||||
'boost': 1 |
'lon': -82.50622 |
||||||
} |
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
} |
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'weight': 1 |
||||||
'score_mode': 'first', |
}, |
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
|
||||||
}], |
|
||||||
'filter': [ |
|
||||||
{ |
{ |
||||||
'terms': { |
'field_value_factor': { |
||||||
'layer': [ |
'modifier': 'log1p', |
||||||
'test' |
'field': 'population', |
||||||
] |
'missing': 1 |
||||||
} |
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -1,128 +1,76 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, { |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'functions': [{ |
'filter': { |
||||||
'linear': { |
'bool': { |
||||||
'center_point': { |
'must': [ |
||||||
'origin': { |
{ |
||||||
'lat': 29.49136, |
'geo_bounding_box': { |
||||||
'lon': -82.50622 |
'type': 'indexed', |
||||||
|
'center_point': { |
||||||
|
'top': 11.51, |
||||||
|
'right': -61.84, |
||||||
|
'bottom': 47.47, |
||||||
|
'left': -103.16 |
||||||
|
} |
||||||
|
} |
||||||
}, |
}, |
||||||
'offset': '0km', |
{ |
||||||
'scale': '50km', |
'terms': { |
||||||
'decay': 0.5 |
'layer': [ |
||||||
} |
'test' |
||||||
}, |
] |
||||||
'weight': 2 |
} |
||||||
}], |
} |
||||||
'score_mode': 'avg', |
] |
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}] |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
|
||||||
}], |
|
||||||
'filter': [{ |
|
||||||
'geo_bounding_box': { |
|
||||||
'type': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'top': 11.51, |
|
||||||
'right': -61.84, |
|
||||||
'bottom': 47.47, |
|
||||||
'left': -103.16 |
|
||||||
} |
} |
||||||
} |
} |
||||||
}, |
}, |
||||||
{ |
'max_boost': 20, |
||||||
'terms': { |
'functions': [ |
||||||
'layer': [ |
{ |
||||||
'test' |
'weight': 2, |
||||||
] |
'linear': { |
||||||
|
'center_point': { |
||||||
|
'origin': { |
||||||
|
'lat': 29.49136, |
||||||
|
'lon': -82.50622 |
||||||
|
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
}] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -0,0 +1,128 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
}, { |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2, |
||||||
|
'query': 'test' |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'functions': [{ |
||||||
|
'linear': { |
||||||
|
'center_point': { |
||||||
|
'origin': { |
||||||
|
'lat': 29.49136, |
||||||
|
'lon': -82.50622 |
||||||
|
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
|
} |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [{ |
||||||
|
'geo_bounding_box': { |
||||||
|
'type': 'indexed', |
||||||
|
'center_point': { |
||||||
|
'top': 11.51, |
||||||
|
'right': -61.84, |
||||||
|
'bottom': 47.47, |
||||||
|
'left': -103.16 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
@ -1,117 +1,65 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, { |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'functions': [{ |
'filter': { |
||||||
'linear': { |
'bool': { |
||||||
'center_point': { |
'must': [ |
||||||
'origin': { |
{ |
||||||
'lat': 0, |
'terms': { |
||||||
'lon': 0 |
'layer': [ |
||||||
}, |
'test' |
||||||
'offset': '0km', |
] |
||||||
'scale': '50km', |
} |
||||||
'decay': 0.5 |
} |
||||||
} |
] |
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}] |
|
||||||
} |
} |
||||||
},{ |
}, |
||||||
'function_score': { |
'max_boost': 20, |
||||||
'query': { |
'functions': [ |
||||||
'match': { |
{ |
||||||
'phrase.default': { |
'weight': 2, |
||||||
'query': 'test', |
'linear': { |
||||||
'analyzer': 'peliasPhrase', |
'center_point': { |
||||||
'type': 'phrase', |
'origin': { |
||||||
'slop': 2, |
'lat': 0, |
||||||
'boost': 1 |
'lon': 0 |
||||||
} |
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
} |
} |
||||||
|
} |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'weight': 1 |
||||||
'score_mode': 'first', |
}, |
||||||
'boost_mode': 'replace', |
{ |
||||||
'functions': [{ |
'field_value_factor': { |
||||||
'field_value_factor': { |
'modifier': 'log1p', |
||||||
'modifier': 'log1p', |
'field': 'population', |
||||||
'field': 'population', |
'missing': 1 |
||||||
'missing': 1 |
}, |
||||||
}, |
'weight': 2 |
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
|
||||||
}], |
|
||||||
'filter':[{ |
|
||||||
'terms': { |
|
||||||
'layer': [ |
|
||||||
'test' |
|
||||||
] |
|
||||||
} |
} |
||||||
}] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -0,0 +1,117 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
}, { |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2, |
||||||
|
'query': 'test' |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'functions': [{ |
||||||
|
'linear': { |
||||||
|
'center_point': { |
||||||
|
'origin': { |
||||||
|
'lat': 0, |
||||||
|
'lon': 0 |
||||||
|
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
|
} |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter':[{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
@ -0,0 +1,119 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
}, { |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2, |
||||||
|
'query': 'test' |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'functions': [{ |
||||||
|
'linear': { |
||||||
|
'center_point': { |
||||||
|
'origin': { |
||||||
|
'lat': 29.49136, |
||||||
|
'lon': -82.50622 |
||||||
|
}, |
||||||
|
'offset': '0km', |
||||||
|
'scale': '50km', |
||||||
|
'decay': 0.5 |
||||||
|
} |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [ |
||||||
|
{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
@ -1,89 +1,51 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'filter': { |
||||||
'score_mode': 'first', |
'bool': { |
||||||
'boost_mode': 'replace', |
'must': [ |
||||||
'functions': [{ |
{ |
||||||
'field_value_factor': { |
'terms': { |
||||||
'modifier': 'log1p', |
'layer': [ |
||||||
'field': 'popularity', |
'test' |
||||||
'missing': 1 |
] |
||||||
}, |
} |
||||||
'weight': 1 |
} |
||||||
}] |
] |
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
} |
||||||
}], |
}, |
||||||
'filter': [ |
'max_boost': 20, |
||||||
|
'functions': [ |
||||||
{ |
{ |
||||||
'terms': { |
'field_value_factor': { |
||||||
'layer': [ |
'modifier': 'log1p', |
||||||
'test' |
'field': 'popularity', |
||||||
] |
'missing': 1 |
||||||
} |
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -0,0 +1,89 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [ |
||||||
|
{ |
||||||
|
'terms': { |
||||||
|
'layer': [ |
||||||
|
'test' |
||||||
|
] |
||||||
|
} |
||||||
|
} |
||||||
|
] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 10, |
||||||
|
'track_scores': true |
||||||
|
}; |
@ -1,133 +1,51 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [ |
'query': { |
||||||
{ |
'filtered': { |
||||||
'match': { |
'query': { |
||||||
'name.default': { |
'bool': { |
||||||
'analyzer': 'peliasQueryFullToken', |
'should': [] |
||||||
'boost': 1, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'should': [ |
|
||||||
{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
} |
||||||
} |
}, |
||||||
}, |
'filter': { |
||||||
{ |
'bool': { |
||||||
'function_score': { |
'must': [ |
||||||
'query': { |
{ |
||||||
'match': { |
'terms': { |
||||||
'phrase.default': { |
'layer': [ |
||||||
'analyzer': 'peliasPhrase', |
'test' |
||||||
'type': 'phrase', |
] |
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'weight': 2, |
|
||||||
'linear': { |
|
||||||
'center_point': { |
|
||||||
'origin': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'offset': '0km', |
|
||||||
'scale': '50km', |
|
||||||
'decay': 0.5 |
|
||||||
} |
} |
||||||
} |
} |
||||||
} |
] |
||||||
], |
} |
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
} |
||||||
}, |
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'functions': [ |
||||||
{ |
{ |
||||||
'function_score': { |
'field_value_factor': { |
||||||
'query': { |
'modifier': 'log1p', |
||||||
'match': { |
'field': 'popularity', |
||||||
'phrase.default': { |
'missing': 1 |
||||||
'analyzer': 'peliasPhrase', |
}, |
||||||
'type': 'phrase', |
'weight': 1 |
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
}, |
}, |
||||||
{ |
{ |
||||||
'function_score': { |
'field_value_factor': { |
||||||
'query': { |
'modifier': 'log1p', |
||||||
'match': { |
'field': 'population', |
||||||
'phrase.default': { |
'missing': 1 |
||||||
'analyzer': 'peliasPhrase', |
}, |
||||||
'type': 'phrase', |
'weight': 2 |
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
} |
} |
||||||
], |
], |
||||||
'filter': [ |
'score_mode': 'avg', |
||||||
{ |
'boost_mode': 'replace' |
||||||
'terms': { |
|
||||||
'layer': [ |
|
||||||
'test' |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true, |
'track_scores': true |
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
}; |
@ -1,128 +1,51 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'filtered': { |
'function_score': { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'filtered': { |
||||||
'must': [ |
'query': { |
||||||
{ |
'bool': { |
||||||
'match': { |
'should': [] |
||||||
'name.default': { |
|
||||||
'analyzer': 'peliasQueryFullToken', |
|
||||||
'boost': 1, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
||||||
], |
}, |
||||||
'should': [ |
'filter': { |
||||||
{ |
'bool': { |
||||||
'match': { |
'must': [ |
||||||
'phrase.default': { |
{ |
||||||
'analyzer': 'peliasPhrase', |
'terms': { |
||||||
'type': 'phrase', |
'layer': [ |
||||||
'boost': 1, |
'test' |
||||||
'slop': 2, |
] |
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'weight': 2, |
|
||||||
'linear': { |
|
||||||
'center_point': { |
|
||||||
'origin': { |
|
||||||
'lat': 28.49136, |
|
||||||
'lon': -87.50623 |
|
||||||
}, |
|
||||||
'offset': '0km', |
|
||||||
'scale': '1km', |
|
||||||
'decay': 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
} |
} |
||||||
], |
} |
||||||
'score_mode': 'first', |
] |
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2, |
|
||||||
'query': 'test' |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace' |
|
||||||
} |
|
||||||
} |
} |
||||||
] |
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'functions': [ |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
} |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'size': 10, |
'size': 10, |
||||||
'track_scores': true, |
'track_scores': true |
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
}; |
@ -1,86 +1,52 @@ |
|||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
}, { |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'filter': { |
||||||
'score_mode': 'first', |
'bool': { |
||||||
'boost_mode': 'replace', |
'must': [ |
||||||
'functions': [{ |
{ |
||||||
'field_value_factor': { |
'terms': { |
||||||
'modifier': 'log1p', |
'category': [ |
||||||
'field': 'popularity', |
'retail', |
||||||
'missing': 1 |
'food' |
||||||
}, |
] |
||||||
'weight': 1 |
} |
||||||
}] |
} |
||||||
} |
] |
||||||
}, { |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
} |
||||||
}], |
}, |
||||||
'filter': [{ |
'max_boost': 20, |
||||||
'terms': { |
'functions': [ |
||||||
'category': ['retail', 'food'] |
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
}] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'size': 20, |
'size': 20, |
||||||
'track_scores': true, |
'track_scores': true |
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
}; |
@ -0,0 +1,86 @@ |
|||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
}, { |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
}, { |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [{ |
||||||
|
'terms': { |
||||||
|
'category': ['retail', 'food'] |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
'size': 20, |
||||||
|
'track_scores': true, |
||||||
|
'sort': [ |
||||||
|
'_score' |
||||||
|
] |
||||||
|
}; |
@ -1,85 +1,51 @@ |
|||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
'query': { |
'query': { |
||||||
'bool': { |
'function_score': { |
||||||
'must': [{ |
'query': { |
||||||
'match': { |
'filtered': { |
||||||
'name.default': { |
|
||||||
'query': 'test', |
|
||||||
'boost': 1, |
|
||||||
'analyzer': 'peliasQueryFullToken' |
|
||||||
} |
|
||||||
} |
|
||||||
}], |
|
||||||
'should': [{ |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'boost': 1, |
|
||||||
'slop': 2 |
|
||||||
} |
|
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
'query': { |
||||||
'match': { |
'bool': { |
||||||
'phrase.default': { |
'should': [] |
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
}, |
||||||
'max_boost': 20, |
'filter': { |
||||||
'score_mode': 'first', |
'bool': { |
||||||
'boost_mode': 'replace', |
'must': [ |
||||||
'functions': [{ |
{ |
||||||
'field_value_factor': { |
'terms': { |
||||||
'modifier': 'log1p', |
'source': [ |
||||||
'field': 'popularity', |
'test_source' |
||||||
'missing': 1 |
] |
||||||
}, |
} |
||||||
'weight': 1 |
} |
||||||
}] |
] |
||||||
} |
|
||||||
},{ |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'match': { |
|
||||||
'phrase.default': { |
|
||||||
'query': 'test', |
|
||||||
'analyzer': 'peliasPhrase', |
|
||||||
'type': 'phrase', |
|
||||||
'slop': 2, |
|
||||||
'boost': 1 |
|
||||||
} |
|
||||||
} |
} |
||||||
}, |
} |
||||||
'max_boost': 20, |
|
||||||
'score_mode': 'first', |
|
||||||
'boost_mode': 'replace', |
|
||||||
'functions': [{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
}] |
|
||||||
} |
} |
||||||
}], |
}, |
||||||
'filter': [{ |
'max_boost': 20, |
||||||
'terms': { |
'functions': [ |
||||||
'source': ['test_source'] |
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
} |
} |
||||||
}] |
], |
||||||
|
'score_mode': 'avg', |
||||||
|
'boost_mode': 'replace' |
||||||
} |
} |
||||||
}, |
}, |
||||||
'sort': [ '_score' ], |
|
||||||
'size': 20, |
'size': 20, |
||||||
'track_scores': true |
'track_scores': true |
||||||
}; |
}; |
@ -0,0 +1,85 @@ |
|||||||
|
|
||||||
|
module.exports = { |
||||||
|
'query': { |
||||||
|
'bool': { |
||||||
|
'must': [{ |
||||||
|
'match': { |
||||||
|
'name.default': { |
||||||
|
'query': 'test', |
||||||
|
'boost': 1, |
||||||
|
'analyzer': 'peliasQueryFullToken' |
||||||
|
} |
||||||
|
} |
||||||
|
}], |
||||||
|
'should': [{ |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'boost': 1, |
||||||
|
'slop': 2 |
||||||
|
} |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'popularity', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 1 |
||||||
|
}] |
||||||
|
} |
||||||
|
},{ |
||||||
|
'function_score': { |
||||||
|
'query': { |
||||||
|
'match': { |
||||||
|
'phrase.default': { |
||||||
|
'query': 'test', |
||||||
|
'analyzer': 'peliasPhrase', |
||||||
|
'type': 'phrase', |
||||||
|
'slop': 2, |
||||||
|
'boost': 1 |
||||||
|
} |
||||||
|
} |
||||||
|
}, |
||||||
|
'max_boost': 20, |
||||||
|
'score_mode': 'first', |
||||||
|
'boost_mode': 'replace', |
||||||
|
'functions': [{ |
||||||
|
'field_value_factor': { |
||||||
|
'modifier': 'log1p', |
||||||
|
'field': 'population', |
||||||
|
'missing': 1 |
||||||
|
}, |
||||||
|
'weight': 2 |
||||||
|
}] |
||||||
|
} |
||||||
|
}], |
||||||
|
'filter': [{ |
||||||
|
'terms': { |
||||||
|
'source': ['test_source'] |
||||||
|
} |
||||||
|
}] |
||||||
|
} |
||||||
|
}, |
||||||
|
'sort': [ '_score' ], |
||||||
|
'size': 20, |
||||||
|
'track_scores': true |
||||||
|
}; |
Loading…
Reference in new issue