Skip to content

Commit 2cb9e30

Browse files
committed
Search with MoreLikeThisQuery should use Pageable.
Original Pull Request #1789 Closes #1787 (cherry picked from commit a2ca312) (cherry picked from commit 85af546) # Conflicts: # src/test/java/org/springframework/data/elasticsearch/core/ElasticsearchTemplateTests.java
1 parent 461d70e commit 2cb9e30

File tree

3 files changed

+50
-2
lines changed

3 files changed

+50
-2
lines changed

src/main/java/org/springframework/data/elasticsearch/core/AbstractElasticsearchTemplate.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public <T> SearchHits<T> search(MoreLikeThisQuery query, Class<T> clazz, IndexCo
352352
Assert.notNull(query.getId(), "No document id defined for MoreLikeThisQuery");
353353

354354
MoreLikeThisQueryBuilder moreLikeThisQueryBuilder = requestFactory.moreLikeThisQueryBuilder(query, index);
355-
return search(new NativeSearchQueryBuilder().withQuery(moreLikeThisQueryBuilder).build(), clazz, index);
355+
return search(new NativeSearchQueryBuilder().withQuery(moreLikeThisQueryBuilder).withPageable(query.getPageable()).build(), clazz, index);
356356
}
357357

358358
@Override

src/main/java/org/springframework/data/elasticsearch/core/query/MoreLikeThisQuery.java

+4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import org.springframework.data.domain.Pageable;
2525
import org.springframework.lang.Nullable;
26+
import org.springframework.util.Assert;
2627

2728
/**
2829
* MoreLikeThisQuery
@@ -176,6 +177,9 @@ public Pageable getPageable() {
176177
}
177178

178179
public void setPageable(Pageable pageable) {
180+
181+
Assert.notNull(pageable, "pageable must not be null");
182+
179183
this.pageable = pageable;
180184
}
181185
}

src/test/java/org/springframework/data/elasticsearch/core/ElasticsearchTemplateTests.java

+45-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2014-2020 the original author or authors.
2+
* Copyright 2014-2021 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -1095,6 +1095,49 @@ public void shouldReturnSimilarResultsGivenMoreLikeThisQuery() {
10951095
assertThat(content).contains(sampleEntity);
10961096
}
10971097

1098+
@Test // #1787
1099+
@DisplayName("should use Pageable on MoreLikeThis queries")
1100+
void shouldUsePageableOnMoreLikeThisQueries() {
1101+
1102+
String sampleMessage = "So we build a web site or an application and want to add search to it, "
1103+
+ "and then it hits us: getting search working is hard. We want our search solution to be fast,"
1104+
+ " we want a painless setup and a completely free search schema, we want to be able to index data simply using JSON over HTTP, "
1105+
+ "we want our search server to be always available, we want to be able to start with one machine and scale to hundreds, "
1106+
+ "we want real-time search, we want simple multi-tenancy, and we want a solution that is built for the cloud.";
1107+
String referenceId = nextIdAsString();
1108+
Collection<String> ids = IntStream.rangeClosed(1, 10).mapToObj(i -> nextIdAsString()).collect(Collectors.toList());
1109+
ids.add(referenceId);
1110+
ids.stream()
1111+
.map(id -> getIndexQuery(SampleEntity.builder().id(id).message(sampleMessage).version(System.currentTimeMillis()).build()))
1112+
.forEach(indexQuery -> operations.index(indexQuery, index));
1113+
indexOperations.refresh();
1114+
1115+
MoreLikeThisQuery moreLikeThisQuery = new MoreLikeThisQuery();
1116+
moreLikeThisQuery.setId(referenceId);
1117+
moreLikeThisQuery.addFields("message");
1118+
moreLikeThisQuery.setMinDocFreq(1);
1119+
moreLikeThisQuery.setPageable(PageRequest.of(0, 5));
1120+
1121+
SearchHits<SampleEntity> searchHits = operations.search(moreLikeThisQuery, SampleEntity.class, index);
1122+
1123+
assertThat(searchHits.getTotalHits()).isEqualTo(10);
1124+
assertThat(searchHits.getSearchHits()).hasSize(5);
1125+
1126+
Collection<String> returnedIds = searchHits.getSearchHits().stream().map(SearchHit::getId).collect(Collectors.toList());
1127+
1128+
moreLikeThisQuery.setPageable(PageRequest.of(1, 5));
1129+
1130+
searchHits = operations.search(moreLikeThisQuery, SampleEntity.class, index);
1131+
1132+
assertThat(searchHits.getTotalHits()).isEqualTo(10);
1133+
assertThat(searchHits.getSearchHits()).hasSize(5);
1134+
1135+
searchHits.getSearchHits().stream().map(SearchHit::getId).forEach(returnedIds::add);
1136+
1137+
assertThat(returnedIds).hasSize(10);
1138+
assertThat(ids).containsAll(returnedIds);
1139+
}
1140+
10981141
@Test // DATAES-167
10991142
public void shouldReturnResultsWithScanAndScrollForGivenCriteriaQuery() {
11001143

@@ -3822,4 +3865,5 @@ static class SampleJoinEntity {
38223865
@JoinTypeRelation(parent = "question", children = { "answer" }) }) private JoinField<String> myJoinField;
38233866
@Field(type = Text) private String text;
38243867
}
3868+
//endregion
38253869
}

0 commit comments

Comments
 (0)