Skip to content

EQL: Add result_position to correctness test #66761

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ public void test() throws Exception {
eqlSearchRequest.tiebreakerField("serial_id");
eqlSearchRequest.size(Integer.parseInt(CFG.getProperty("size")));
eqlSearchRequest.fetchSize(Integer.parseInt(CFG.getProperty("fetch_size")));
eqlSearchRequest.resultPosition(CFG.getProperty("result_position"));
EqlSearchResponse response = highLevelClient().eql().search(eqlSearchRequest, RequestOptions.DEFAULT);
long responseTime = response.took();
LOGGER.info("QueryNo: {}, took: {}ms", queryNo, responseTime);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ index_name=mitre
index_doc_count=3950632
fetch_size=1000
size=2000
result_position=tail
gcs_repo_name=eql_correctness_gcs_repo
gcs_snapshot_name=correctness-snapshot_es7.10_lucene8.7.0
gcs_bucket_name=eql-gcs
Expand Down