-
Notifications
You must be signed in to change notification settings - Fork 25k
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
[HLRC] Add GetRollupIndexCaps API #35102
[HLRC] Add GetRollupIndexCaps API #35102
Conversation
Also refactors the caps response tests a bit to share the same abstract class to reduce duplication of test code
Pinging @elastic/es-core-infra |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good generally. Ill inspect it a bit more once youve modified the tests so they use the org.elasticsearch.test.AbstractXContentTestCase.xContentTester
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
public class GetRollupIndexCapsResponse implements ToXContentObject { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally speaking these responses shouldnt be ToXContent
classes. I assume this is for a test case below. We have some newer HLRC's that have a diff test, see TermVectorsResponseTests. It looks like you picked the short straw that came after we modified the tests, sorry :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, yeah, think I just c/p from some boilerplate before the testing changed. Will make the changes, sorry about that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no, we are just changing things quickly on the client :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great work updating the test. sorry it took a while to update.
Thanks @hub-cap! <3 |
* master: (22 commits) Introduce CCR getting started guide (elastic#35434) Correct typo in BuildPlugin exception message (elastic#35458) Correct implemented interface of ParsedReverseNested (elastic#35455) [ML] Fix find_file_structure NPE with should_trim_fields (elastic#35465) Handle OS pretty name on old OS without OS release (elastic#35453) Register remote cluster compress setting (elastic#35464) [DOCS] Clarify results_index_name description (elastic#35463) [TEST] add missing doc tests for HLRC GetRollupIndexCaps API [HLRC] Add GetRollupIndexCaps API (elastic#35102) Geo: enables coerce support in WKT polygon parser (elastic#35414) [ILM] fix retry so it picks up latest policy and executes async action (elastic#35406) Address handling of OS pretty name on some OS (elastic#35451) HLRC support for getTask (elastic#35166) upgrade to lucene-8.0.0-snapshot-6d9c714052 (elastic#35428) Add docs for CCR stats API (elastic#35439) Fix the names of CCR stats endpoints in usage API (elastic#35438) Switch to default to no build qualifier (elastic#35415) Clarify S3 repository storage class parameter (elastic#35400) SQL: Fix query translation for scripted queries (elastic#35408) [TEST] Instead of ignoring the ccr downgrade to basic license qa test avoid the assertions that check the log files, because that does not work on Windows. The rest of the test is still useful and should work on Windows CI. ...
Also refactors the caps response tests a bit to share the same abstract class to reduce duplication of test code
Nearly identical to the GetRollupCaps API since the response is basically the same format, just different content. The request object is slightly different too since it accepts a list of indices/index patterns and IndicesOptions
Also refactors the caps response tests a bit to share the same abstract class to reduce duplication of test code
Related to #29827