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

[Feat](Storage)Refactor Storage Integration: Unified Storage Parameter Handling for Export, TVF, and Backup #49163

Conversation

CalvinKirs
Copy link
Member

@CalvinKirs CalvinKirs commented Mar 17, 2025

PR Description

This PR introduces a unified storage parameter handling mechanism for storage-related functionalities, including Export, Table-Valued Functions (TVF), and Backup. The key objective is to decouple business logic from the underlying storage implementation, ensuring that the business layer only focuses on its domain logic while storage parameters manage the interaction with the storage system.

Key Changes

Centralized Storage Parameter Management:

Instead of handling storage configurations in multiple places, storage parameters now serve as the sole interface between the business logic and the storage layer. This improves maintainability, avoids scattered storage-related logic, and simplifies future storage extensions. ### Separation of Concerns:
The business layer is storage-agnostic, meaning it does not need to handle storage-specific details. Storage parameters are responsible for translating high-level storage configurations into system-specific settings.

Phase 1 Implementation:

This PR focuses on integrating Export, TVF, and Backup with the new storage parameter mechanism. Subsequent PRs will address Broker and additional components, ensuring a smooth and incremental migration.

Next Steps

Gradually extend this unified approach to Broker and other storage-dependent functionalities. Continue refining the abstraction to support future storage systems with minimal modifications.

Why This Change?

Enhances maintainability by consolidating storage-related logic. Improves extensibility for future storage backends. Simplifies business logic, ensuring a cleaner separation of concerns.

What problem does this PR solve?

Issue Number: close #xxx

Related PR: #xxx

Problem Summary:

Release note

None

Check List (For Author)

  • Test

    • Regression test
    • Unit Test
    • Manual test (add detailed scripts or steps below)
    • No need to test or manual test. Explain why:
      • This is a refactor/code format and no logic has been changed.
      • Previous test can cover this change.
      • No code files have been changed.
      • Other reason
  • Behavior changed:

    • No.
    • Yes.
  • Does this need documentation?

    • No.
    • Yes.

Check List (For Reviewer who merge this PR)

  • Confirm the release note
  • Confirm test cases
  • Confirm document
  • Add branch pick label

…r Handling for Export, TVF, and Backup

## PR Description
This PR introduces a unified storage parameter handling mechanism for storage-related functionalities, including Export, Table-Valued Functions (TVF), and Backup. The key objective is to decouple business logic from the underlying storage implementation, ensuring that the business layer only focuses on its domain logic while storage parameters manage the interaction with the storage system.

##Key Changes
### Centralized Storage Parameter Management:
Instead of handling storage configurations in multiple places, storage parameters now serve as the sole interface between the business logic and the storage layer.
This improves maintainability, avoids scattered storage-related logic, and simplifies future storage extensions.
### Separation of Concerns:
The business layer is storage-agnostic, meaning it does not need to handle storage-specific details.
Storage parameters are responsible for translating high-level storage configurations into system-specific settings.
### Phase 1 Implementation:
This PR focuses on integrating Export, TVF, and Backup with the new storage parameter mechanism.
Subsequent PRs will address Broker and additional components, ensuring a smooth and incremental migration.
##Next Steps
Gradually extend this unified approach to Broker and other storage-dependent functionalities.
Continue refining the abstraction to support future storage systems with minimal modifications.
## Why This Change?
Enhances maintainability by consolidating storage-related logic.
Improves extensibility for future storage backends.
Simplifies business logic, ensuring a cleaner separation of concerns.
@CalvinKirs CalvinKirs requested a review from morningman as a code owner March 17, 2025 11:47
@Thearas
Copy link
Contributor

Thearas commented Mar 17, 2025

Thank you for your contribution to Apache Doris.
Don't know what should be done next? See How to process your PR.

Please clearly describe your PR:

  1. What problem was fixed (it's best to include specific error reporting information). How it was fixed.
  2. Which behaviors were modified. What was the previous behavior, what is it now, why was it modified, and what possible impacts might there be.
  3. What features were added. Why was this function added?
  4. Which code was refactored and why was this part of the code refactored?
  5. Which functions were optimized and what is the difference before and after the optimization?

@@ -643,42 +633,15 @@ private void analyzeBrokerDesc(Set<String> processedPropKeys) throws UserExcepti
} else if (filePath.toUpperCase().startsWith(HDFS_FILE_PREFIX.toUpperCase())) {
brokerName = StorageBackend.StorageType.HDFS.name();
storageType = StorageBackend.StorageType.HDFS;
} else if (filePath.toUpperCase().startsWith("oss".toUpperCase())) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why only handle oss seperately?

@morningman morningman merged commit faeb098 into apache:branch-refactor_property Mar 18, 2025
11 of 12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants