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

[Backport 2.x] Repository stats for remote store #10715

Merged
merged 5 commits into from
Oct 19, 2023

Conversation

gbbafna
Copy link
Collaborator

@gbbafna gbbafna commented Oct 18, 2023

Description

Backport of https://github.com/opensearch-project/OpenSearch/pull/10567/files

Related Issues

Resolves #8917

Check List

  • New functionality includes testing.
    • All tests pass
  • New functionality has been documented.
    • New functionality has javadoc added
  • Commits are signed per the DCO using --signoff
  • Commit changes are listed out in CHANGELOG.md file (See: Changelog)
  • Public documentation issue/PR created

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

Bukhtawar and others added 2 commits October 18, 2023 23:56
Signed-off-by: Bukhtawar Khan <bukhtawa@amazon.com>
Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
@github-actions github-actions bot added enhancement Enhancement or improvement to existing feature or request Storage Issues and PRs relating to data and metadata storage Storage:Durability Issues and PRs related to the durability framework labels Oct 18, 2023
@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
@github-actions
Copy link
Contributor

github-actions bot commented Oct 18, 2023

Compatibility status:

Checks if related components are compatible with change 7b7d853

Incompatible components

Skipped components

Compatible components

Compatible components: [https://github.com/opensearch-project/security.git, https://github.com/opensearch-project/security-analytics.git, https://github.com/opensearch-project/custom-codecs.git, https://github.com/opensearch-project/geospatial.git, https://github.com/opensearch-project/index-management.git, https://github.com/opensearch-project/notifications.git, https://github.com/opensearch-project/sql.git, https://github.com/opensearch-project/job-scheduler.git, https://github.com/opensearch-project/neural-search.git, https://github.com/opensearch-project/observability.git, https://github.com/opensearch-project/k-nn.git, https://github.com/opensearch-project/cross-cluster-replication.git, https://github.com/opensearch-project/alerting.git, https://github.com/opensearch-project/anomaly-detection.git, https://github.com/opensearch-project/asynchronous-search.git, https://github.com/opensearch-project/common-utils.git, https://github.com/opensearch-project/performance-analyzer.git, https://github.com/opensearch-project/reporting.git, https://github.com/opensearch-project/ml-commons.git, https://github.com/opensearch-project/performance-analyzer-rca.git]

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@gbbafna
Copy link
Collaborator Author

gbbafna commented Oct 19, 2023

1 Failing test in gradle.

org.opensearch.search.query.QueryPhaseTests.testQueryTimeoutChecker {p0=0 p1=org.opensearch.search.query.QueryPhase$DefaultQueryPhaseSearcher@10724a72}

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@gbbafna
Copy link
Collaborator Author

gbbafna commented Oct 19, 2023

* What went wrong:
Execution failed for task ':distribution:bwc:minor:buildBwcLinuxTar'.
> Building 2.11.0 didn't generate expected file /var/jenkins/workspace/gradle-check/search/distribution/bwc/minor/build/bwc/checkout-2.11/distribution/archives/linux-tar/build/distributions/opensearch-min-2.11.0-SNAPSHOT-linux-x64.tar.gz

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

Signed-off-by: Gaurav Bafna <gbbafna@amazon.com>
Signed-off-by: Gaurav Bafna <85113518+gbbafna@users.noreply.github.com>
@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@github-actions
Copy link
Contributor

Gradle Check (Jenkins) Run Completed with:

@codecov
Copy link

codecov bot commented Oct 19, 2023

Codecov Report

Merging #10715 (7b7d853) into 2.x (6fff21e) will decrease coverage by 0.06%.
Report is 2 commits behind head on 2.x.
The diff coverage is 55.79%.

@@             Coverage Diff              @@
##                2.x   #10715      +/-   ##
============================================
- Coverage     70.91%   70.86%   -0.06%     
+ Complexity    58629    58626       -3     
============================================
  Files          4838     4839       +1     
  Lines        276810   276997     +187     
  Branches      40617    40639      +22     
============================================
- Hits         196313   196296      -17     
- Misses        63791    64006     +215     
+ Partials      16706    16695      -11     
Files Coverage Δ
...rg/opensearch/repositories/s3/S3BlobContainer.java 81.25% <100.00%> (+0.05%) ⬆️
...ch/repositories/s3/async/AsyncTransferManager.java 83.67% <100.00%> (+0.22%) ⬆️
...on/admin/cluster/node/stats/NodesStatsRequest.java 69.90% <100.00%> (+0.29%) ⬆️
.../cluster/node/stats/TransportNodesStatsAction.java 100.00% <100.00%> (ø)
...min/cluster/stats/TransportClusterStatsAction.java 70.83% <ø> (ø)
server/src/main/java/org/opensearch/node/Node.java 85.18% <ø> (ø)
...nsearch/repositories/RepositoriesStatsArchive.java 100.00% <ø> (+7.50%) ⬆️
...epositories/blobstore/ChecksumBlobStoreFormat.java 95.00% <100.00%> (ø)
...sitories/blobstore/MeteredBlobStoreRepository.java 66.66% <100.00%> (-17.95%) ⬇️
...pensearch/common/blobstore/EncryptedBlobStore.java 0.00% <0.00%> (ø)
... and 13 more

... and 484 files with indirect coverage changes

@gbbafna gbbafna merged commit 822b9d3 into opensearch-project:2.x Oct 19, 2023
15 of 16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Enhancement or improvement to existing feature or request Storage:Durability Issues and PRs related to the durability framework Storage Issues and PRs relating to data and metadata storage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants