Ankit Kala
Ankit Kala
> I gave this a quick look. I'm not strongly opposed including this so we can cleanly support the current CCR implementation so long as we have deprecation markings to...
Gradle check failing due to the error below. Will rebase after [#4455](https://github.com/opensearch-project/OpenSearch/pull/4455) is merged ``` Execution failed for task ':distribution:bwc:minor:buildBwcLinuxTar'. > Building 2.3.0 didn't generate expected file /Volumes/ws/OpenSearch/distribution/bwc/minor/build/bwc/checkout-2.x/distribution/archives/linux-tar/build/distributions/opensearch-min-2.3.0-SNAPSHOT-linux-x64.tar.gz ```
Gradle check has been failing for last 2 days on all the PRs. its failing as the Jenkins workflow fails to install JDK 14. Not related to any OpenSearch changes....
The only trade-off I see is that changes might take longer to be available on all replicas. We might have to implement this in a way that replica doesn't wait...
@mch2 I again tested the compatibility between segrep & CCR. - Didn't observe any issue with manual testing. I could verify that leader index and follower index both were using...
Since the new changes to follower shard are sent by one of the leader shard randomly (between primary and replicas), I also verified that leader's replica shards are also able...
Based on the error message, it does look like an issue with JDK where it is not able to resolve `java.util.stream.Stream.toList()`. Can you verify again that JDK 11 is getting...
Related issue: https://github.com/opensearch-project/opensearch-build/issues/4610
We do not support synchronous replication. During DR, follower stats can give you the last tracked `leaderCheckpoint` & `followerCheckpoint` but 1) it tracks changes at shard level whereas user is...
It looks like we're seeing a NPE while writing to translog [here](https://github.com/opensearch-project/OpenSearch/blob/1.2/server/src/main/java/org/opensearch/index/translog/Translog.java#L1315C29-L1315C31) The doc ID here seems to be null. Are you using autogenerated IDs? if not, can you check...