[fix](hive) Fix StackOverflowError in insert overwrite on S3-compatible storage#58504
Merged
zy-kkk merged 1 commit intoapache:masterfrom Nov 30, 2025
Merged
[fix](hive) Fix StackOverflowError in insert overwrite on S3-compatible storage#58504zy-kkk merged 1 commit intoapache:masterfrom
zy-kkk merged 1 commit intoapache:masterfrom
Conversation
Contributor
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
Contributor
|
run buildall |
Contributor
FE UT Coverage ReportIncrement line coverage |
TPC-H: Total hot run time: 34137 ms |
TPC-DS: Total hot run time: 181711 ms |
ClickBench: Total hot run time: 27.59 s |
Contributor
FE Regression Coverage ReportIncrement line coverage |
morningman
approved these changes
Nov 29, 2025
Contributor
|
PR approved by at least one committer and no changes requested. |
Contributor
|
PR approved by anyone and no changes requested. |
CalvinKirs
approved these changes
Nov 29, 2025
github-actions bot
pushed a commit
that referenced
this pull request
Nov 30, 2025
…le storage (#58504) Fix StackOverflowError when executing insert overwrite on Hive tables stored in S3-compatible object storage (OBS, COS, OSS, etc.). The root cause is that S3ObjStorage.listDirectories hardcoded "s3://" scheme when constructing directory paths, causing scheme mismatch (e.g., obs:// becomes s3://) which leads to infinite recursion in HMSTransaction.doRecursiveDeleteFiles. This PR preserves the original scheme from input path。
github-actions bot
pushed a commit
that referenced
this pull request
Nov 30, 2025
…le storage (#58504) Fix StackOverflowError when executing insert overwrite on Hive tables stored in S3-compatible object storage (OBS, COS, OSS, etc.). The root cause is that S3ObjStorage.listDirectories hardcoded "s3://" scheme when constructing directory paths, causing scheme mismatch (e.g., obs:// becomes s3://) which leads to infinite recursion in HMSTransaction.doRecursiveDeleteFiles. This PR preserves the original scheme from input path。
morningman
pushed a commit
that referenced
this pull request
Dec 4, 2025
Related PR: #58504 hive on glue unsupported create db
github-actions bot
pushed a commit
that referenced
this pull request
Dec 4, 2025
Related PR: #58504 hive on glue unsupported create db
github-actions bot
pushed a commit
that referenced
this pull request
Dec 4, 2025
Related PR: #58504 hive on glue unsupported create db
morningman
pushed a commit
that referenced
this pull request
Dec 5, 2025
nagisa-kunhah
pushed a commit
to nagisa-kunhah/doris
that referenced
this pull request
Dec 14, 2025
…le storage (apache#58504) Fix StackOverflowError when executing insert overwrite on Hive tables stored in S3-compatible object storage (OBS, COS, OSS, etc.). The root cause is that S3ObjStorage.listDirectories hardcoded "s3://" scheme when constructing directory paths, causing scheme mismatch (e.g., obs:// becomes s3://) which leads to infinite recursion in HMSTransaction.doRecursiveDeleteFiles. This PR preserves the original scheme from input path。
nagisa-kunhah
pushed a commit
to nagisa-kunhah/doris
that referenced
this pull request
Dec 14, 2025
Related PR: apache#58504 hive on glue unsupported create db
nagisa-kunhah
pushed a commit
to nagisa-kunhah/doris
that referenced
this pull request
Dec 14, 2025
Related PR: [apache#58504](apache#58504) hive on glue unsupported create db
seawinde
pushed a commit
to seawinde/doris
that referenced
this pull request
Jan 30, 2026
seawinde
pushed a commit
to seawinde/doris
that referenced
this pull request
Jan 30, 2026
Related PR: apache#58504 hive on glue unsupported create db
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.
Fix StackOverflowError when executing insert overwrite on Hive tables stored in S3-compatible object storage (OBS, COS, OSS, etc.). The root cause is that
S3ObjStorage.listDirectories hardcoded "s3://" scheme when constructing directory paths, causing scheme mismatch (e.g., obs:// becomes s3://) which leads to
infinite recursion in HMSTransaction.doRecursiveDeleteFiles. This PR preserves the original scheme from input path。