[chore](dep) pin esdk-obs-java-bundle to 3.21.11 to fix version range resolution failure#63278
Merged
hello-stephen merged 1 commit intoMay 15, 2026
Merged
Conversation
… resolution failure The version range `[3.21.11,)` causes build failures because the Huawei OBS Maven repository (repo.huaweicloud.com/repository/maven/huaweicloudsdk/) does not have the artifact metadata for this library, so Maven cannot resolve the range and reports `jar:null`. Pin to the minimum required version 3.21.11, which is available on Maven Central (aliyunmaven mirror), making the build resilient to the unstable Huawei OBS repository. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
Author
|
/review |
Contributor
There was a problem hiding this comment.
Reviewed PR 63278. I did not find any blocking issues.
Critical checkpoint conclusions:
- Goal and proof: The PR aims to avoid Maven range-resolution failures for
com.huaweicloud:esdk-obs-java-bundleby replacing[3.21.11,)with fixed3.21.11. The changed property is used by FE OBS dependency management andfe-filesystem-obs; a targetedmvn -pl fe-filesystem/fe-filesystem-obs -am dependency:tree -Dincludes=com.huaweicloud:esdk-obs-java-bundle -DskipTests -Dskip.doc=truecompleted successfully and resolved3.21.11. - Scope/focus: The change is small and focused on the problematic dependency property.
- Concurrency/lifecycle: Not applicable; this is a build dependency pin only.
- Configuration/compatibility: No runtime config, persisted format, protocol, or rolling-upgrade compatibility impact found.
- Parallel paths: The parent property covers the FE OBS module usage. Other Maven modules using Huawei dependencies were checked at a high level; no distinct required follow-up was found for this PR scope.
- Tests/results: No test outputs are modified. Dependency resolution was verified with Maven for the affected FE OBS module.
- Observability/transactions/data writes/performance: Not applicable to this dependency-resolution change.
- User focus: No additional user-provided review focus was present.
Contributor
Author
|
run buildall |
Contributor
Author
TPC-H: Total hot run time: 29388 ms |
Contributor
Author
TPC-DS: Total hot run time: 170906 ms |
Contributor
Author
FE UT Coverage ReportIncrement line coverage `` 🎉 |
CalvinKirs
approved these changes
May 15, 2026
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
github-actions Bot
pushed a commit
that referenced
this pull request
May 15, 2026
… resolution failure (#63278) ## Problem The version `[3.21.11,)` in `fe/pom.xml` is a Maven version range, which requires Maven to download `maven-metadata.xml` from **every configured repository** and merge the results before selecting a version. The Huawei OBS Maven repository (`https://repo.huaweicloud.com/repository/maven/huaweicloudsdk/`) does not carry this artifact at all (returns 404 for its metadata) or is not stable. This causes `maven-remote-resources-plugin` to fail the entire range resolution and report: ``` No versions are present in the repository for the artifact with a range [3.21.11,) com.huaweicloud:esdk-obs-java-bundle:jar:null ``` ## Fix Pin the version to the specific minimum `3.21.11`, which is available on Maven Central (and its mirrors such as aliyunmaven). With a fixed version, Maven resolves the artifact by trying repositories one by one and succeeds as soon as any working repository (e.g. aliyunmaven) responds — it no longer depends on the unstable Huawei OBS repository for range resolution. ## Verification `3.21.11` is confirmed present on Maven Central: ``` https://repo1.maven.org/maven2/com/huaweicloud/esdk-obs-java-bundle/3.21.11/ ``` Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
github-actions Bot
pushed a commit
that referenced
this pull request
May 15, 2026
… resolution failure (#63278) ## Problem The version `[3.21.11,)` in `fe/pom.xml` is a Maven version range, which requires Maven to download `maven-metadata.xml` from **every configured repository** and merge the results before selecting a version. The Huawei OBS Maven repository (`https://repo.huaweicloud.com/repository/maven/huaweicloudsdk/`) does not carry this artifact at all (returns 404 for its metadata) or is not stable. This causes `maven-remote-resources-plugin` to fail the entire range resolution and report: ``` No versions are present in the repository for the artifact with a range [3.21.11,) com.huaweicloud:esdk-obs-java-bundle:jar:null ``` ## Fix Pin the version to the specific minimum `3.21.11`, which is available on Maven Central (and its mirrors such as aliyunmaven). With a fixed version, Maven resolves the artifact by trying repositories one by one and succeeds as soon as any working repository (e.g. aliyunmaven) responds — it no longer depends on the unstable Huawei OBS repository for range resolution. ## Verification `3.21.11` is confirmed present on Maven Central: ``` https://repo1.maven.org/maven2/com/huaweicloud/esdk-obs-java-bundle/3.21.11/ ``` Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
FE Regression Coverage ReportIncrement line coverage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The version
[3.21.11,)infe/pom.xmlis a Maven version range, which requires Maven to downloadmaven-metadata.xmlfrom every configured repository and merge the results before selecting a version.The Huawei OBS Maven repository (
https://repo.huaweicloud.com/repository/maven/huaweicloudsdk/) does not carry this artifact at all (returns 404 for its metadata) or is not stable. This causesmaven-remote-resources-pluginto fail the entire range resolution and report:Fix
Pin the version to the specific minimum
3.21.11, which is available on Maven Central (and its mirrors such as aliyunmaven).With a fixed version, Maven resolves the artifact by trying repositories one by one and succeeds as soon as any working repository (e.g. aliyunmaven) responds — it no longer depends on the unstable Huawei OBS repository for range resolution.
Verification
3.21.11is confirmed present on Maven Central: