HPCC-XXXXX Add S3 direct API storage plane support#21199
Open
giftyedwin1 wants to merge 1 commit intohpcc-systems:masterfrom
Open
HPCC-XXXXX Add S3 direct API storage plane support#21199giftyedwin1 wants to merge 1 commit intohpcc-systems:masterfrom
giftyedwin1 wants to merge 1 commit intohpcc-systems:masterfrom
Conversation
Add S3 storage plane support via the file hook mechanism, enabling Thor and Roxie to read/write S3 objects transparently through the IFile/IFileIO interfaces. Core implementation: - S3FileReadIO: read via HTTP GET with Range headers - S3FileWriteIO: buffered writes with automatic PutObject (<8MB) or multipart upload (>=8MB) selection - S3MultipartUpload: manages CreateMultipartUpload/UploadPart/Complete lifecycle with abort-on-destroy safety - S3File: IFile implementation with metadata caching, directory listing via ListObjectsV2 - S3APICopyClient: server-side copy for files <=5GB, multipart copy for larger files - Retry with exponential backoff and jitter for all S3 operations - S3 client cache keyed by storage plane name and device number Platform changes: - Add queryPlaneName() to IStorageApiInfo interface - Add S3 bucket/region/endpoint config to storage plane schema - Add jplane_compat.hpp shim for cross-version jlib compatibility - Update Helm template validation to accept buckets (S3) or containers (Azure) Deployment: - Dockerfile overlay for building S3 hook against stock platform-core - Helm values examples for S3 on EKS with IRSA authentication - Build and deployment guide (helm/examples/s3/README.md) Testing: - ECL integration test verifying putObject vs multipart upload paths - Unit tests for S3 URL validation
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.
Add S3 storage plane support via the file hook mechanism, enabling Thor and Roxie to read/write S3 objects transparently through the IFile/IFileIO interfaces.
Core implementation:
Platform changes:
Deployment:
Testing:
Type of change:
Checklist:
Smoketest:
Testing: