-
Notifications
You must be signed in to change notification settings - Fork 29
Conversation
Codecov Report
@@ Coverage Diff @@
## release-2.0.0 #126 +/- ##
===================================================
- Coverage 60.78% 60.66% -0.12%
- Complexity 79 80 +1
===================================================
Files 15 15
Lines 923 928 +5
Branches 224 226 +2
===================================================
+ Hits 561 563 +2
- Misses 216 217 +1
- Partials 146 148 +2
Continue to review full report at Codecov.
|
So I think this is fine, especially since 1.6 is such an old version. Having said that, given that the client is pure REST, it seems like we should be able to design it to be able to support multiple different versions, and that we might need to do that. I haven't looked in detail at which classes would have to move, but it feels to me like there's probably a tractable subset of the classes that we could put in packages whose names include a version number, and then we could expose a version of I'm not completely sure about the details, admittedly. E.g. #121 changes the state machine, so that makes me not completely confident that we'd be able to do this in a way that limits scope. (I guess the flip side is that it's also not completely obvious to me that it would be awful to copy basically everything when upgrading versions!) And it's not like there are that many serious changes between versions (at least if this plus #121 is representative of version changes), so maybe it's overkill - maybe we could just leave in support for old interfaces as well as new interfaces while using a uniform client. And, finally, there's the test issue - presumably when testing, we would have to specify a single elasticsearch version to test against, which would make it hard to detect regressions against old versions. (Hopefully we could do it in a way to make it easy enough to manually test against old versions, ideally by just temporarily editing one number in the pom, but who knows.) Anyways, I'm fine merging this specific one, given that there hopefully aren't too many other people on 1.6 and given that we believe that the new version should work with 1.6, it just might be a little less performant. But it feels like something where we'll want to develop a strategy at some point, possibly even for the 5.1 change? |
Completely agree on the better support for multiple different versions part. I created an issue #127 for tracking the efforts. |
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.
LGTM
The right answer is to maintain multiple branches for each version -- it's what all the other major ES libraries do. I'd rather not try to extract some shared classes and try to have one piece of code support multiple versions -- given the way we test and build the repo it just isn't pragmatic. In a world where we were trying to make the best possible public library, we'd maintain a 2.x branch and a 5.x branch. I'm not saying we should necessarily go to that length. Anyone still on 1.x won't be able to use the new releases (full stop). A 1.x branch will be created if it hasn't already to backport changes to 1.x. LGTM |
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.
See comment below
This submission upgrade ES to version 2.3. I was originally trying to upgrade to 5.1 directly. Unfortunately, I had to stop and go for 2.3 due to
The changes in this submission include:
In this change, if delete by query plugin is enabled, then we can use it. Otherwise, the execution via query, and bulkDelete.