Skip to content
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

Update archival indices logic to support ES 7 indices #116565

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
95ba9c4
WIP
cbuescher Nov 6, 2024
d2817fa
Trying to add new qa test project for 7x archival indices
cbuescher Nov 21, 2024
1bd696d
iter
cbuescher Nov 22, 2024
85b61cd
Add basic search test
cbuescher Nov 22, 2024
93b95fb
Rework OldMappingIT
cbuescher Nov 25, 2024
6b8177c
iter
cbuescher Nov 25, 2024
b27ab02
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 25, 2024
33f3f36
Use system property for version
cbuescher Nov 25, 2024
dce64b2
Add BWCLucene86Codec
cbuescher Nov 25, 2024
8aae226
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 25, 2024
2f3b6d0
Fix codec name
cbuescher Nov 25, 2024
feaee28
Change version to 7.9.0
cbuescher Nov 26, 2024
becea6b
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 26, 2024
41d69c7
Add modified version of OldRepositoryAccessIT
cbuescher Nov 26, 2024
8b3acb8
Adding back test for source_only repo
cbuescher Nov 26, 2024
55ed6d0
Add looping over versions
cbuescher Nov 26, 2024
1351e2e
Change looping over version
cbuescher Nov 27, 2024
4d35161
Fix cluster version checks
cbuescher Nov 27, 2024
d4be0ac
No snapshot cache for old cluster
cbuescher Nov 27, 2024
9919159
Add DocValueOnlyFieldsIT yaml rest test
cbuescher Nov 27, 2024
2406751
Fix wiring of yaml specs to test tasks
breskeby Nov 27, 2024
85d01c2
Make DocValueOnlyFieldsIT work for V7x
cbuescher Nov 27, 2024
f17527f
Using 7.9.0 instead of 7.16
cbuescher Nov 27, 2024
6cabe33
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 27, 2024
da3db30
Cleanups
cbuescher Nov 27, 2024
4a46d80
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 28, 2024
01ba741
Add _field_names disabling to new tests
cbuescher Nov 28, 2024
3d257dd
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Nov 29, 2024
c7693b3
Add restart cluster test
cbuescher Nov 29, 2024
3bf231d
Merge branch 'main' into add-bwcLucene87Codec
cbuescher Dec 2, 2024
050d195
Pulling in test changes from 117649
cbuescher Dec 2, 2024
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
Prev Previous commit
Next Next commit
Fix cluster version checks
  • Loading branch information
cbuescher committed Nov 27, 2024
commit 4d35161fafdf0b83d4b92c10785e7319e28ce7f7
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@ private static void checkClusterVersion(RestClient client, Version version) thro
// check expected Cluster version
Request infoRequest = new Request("GET", "/");
Response response = assertOK(client.performRequest(infoRequest));
assertEquals(version.toString(), ObjectPath.createFromResponse(response).evaluate("version.number"));
assertEquals(
version.toString(),
((String) ObjectPath.createFromResponse(response).evaluate("version.number")).replace("-SNAPSHOT", "")
);
}

@Override
Expand Down