【发布时间】:2014-04-27 10:29:36
【问题描述】:
给定一个地理定位点,我试图在 10 公里内找到一些站点,并按最接近给定位置的位置对其进行排序。
我设法返回了 10 公里内的位置列表,但是当我尝试对其进行排序时,我得到了异常:
我正在使用以下版本:
<properties>
<commonscollections>3.2.1</commonscollections>
<commonslang>2.6</commonslang>
<spring.data.elasticsearch>1.0.0.BUILD-SNAPSHOT</spring.data.elasticsearch>
<springversion>3.2.5.RELEASE</springversion>
</properties>
java代码如下:
public List<SiteResource> findByGeoLocation(Double longitude, Double latitude, String channelKey, String distance) {
if(StringUtils.isEmpty(distance)){
distance = defaultRadius;
}
GeoPoint location = new GeoPoint(latitude, longitude);
CriteriaQuery criteriaQuery = new CriteriaQuery(new Criteria("location").within(location, distance+"km"));
criteriaQuery.addIndices(channelKey);
criteriaQuery.addTypes("site");
criteriaQuery.addSort(new Sort(Sort.Direction.ASC, "location"));
List<SiteResource> sites = esTemplate.queryForList(criteriaQuery, com.company.domain.site.SiteResource.class);
return sites;
}
如果我删除该行:
criteriaQuery.addSort(new Sort(Sort.Direction.ASC, "location"));
然后代码将返回所有位置,问题在于排序
我从 elasticsearch 日志得到的错误:
[2014-03-20 13:37:02,720][DEBUG][action.search.type ] [Smuggler II] [210a9696a28545f2bbeecf88d64fbad8_20140318_153743][4], node[dB9dCIXMRZGmdUExquMWlQ], [P], s[STARTED]: Failed to execute [org.elasticsearch.action.search.SearchRequest@71b978fe] lastShard [true]
org.elasticsearch.search.SearchParseException: [210a9696a28545f2bbeecf88d64fbad8_20140318_153743][4]: query[ConstantScore(*:*)],from[0],size[-1]: Parse Failure [Failed to parse source [{"from":0,"query":{"match_all":{}},"post_filter":{"geo_distance":{"location":[-2.217753,53.432703],"distance":"10km"}},"sort":[{"location":{"order":"asc"}}]}]]
at org.elasticsearch.search.SearchService.parseSource(SearchService.java:595)
at org.elasticsearch.search.SearchService.createContext(SearchService.java:498)
at org.elasticsearch.search.SearchService.createAndPutContext(SearchService.java:472)
at org.elasticsearch.search.SearchService.executeDfsPhase(SearchService.java:178)
at org.elasticsearch.search.action.SearchServiceTransportAction.sendExecuteDfs(SearchServiceTransportAction.java:168)
at org.elasticsearch.action.search.type.TransportSearchDfsQueryThenFetchAction$AsyncAction.sendExecuteFirstPhase(TransportSearchDfsQueryThenFetchAction.java:85)
at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.performFirstPhase(TransportSearchTypeAction.java:216)
at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.performFirstPhase(TransportSearchTypeAction.java:203)
at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction$2.run(TransportSearchTypeAction.java:186)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1146)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
at java.lang.Thread.run(Thread.java:701)
Caused by: org.elasticsearch.ElasticsearchIllegalArgumentException: can't sort on geo_point field without using specific sorting feature, like geo_distance
at org.elasticsearch.index.fielddata.plain.AbstractGeoPointIndexFieldData.comparatorSource(AbstractGeoPointIndexFieldData.java:142)
at org.elasticsearch.search.sort.SortParseElement.addSortField(SortParseElement.java:222)
at org.elasticsearch.search.sort.SortParseElement.addCompoundSortField(SortParseElement.java:172)
at org.elasticsearch.search.sort.SortParseElement.parse(SortParseElement.java:80)
at org.elasticsearch.search.SearchService.parseSource(SearchService.java:583)
... 11 more
[2014-03-20 13:37:02,722][DEBUG][action.search.type ] [Smuggler II] All shards failed for phase: [dfs]
如果有人告诉我是否可以按离我最近的位置对位置进行排序,我非常感谢。
提前致谢
【问题讨论】:
标签: java elasticsearch spring-data