feat(azure): add native Azure Blob Storage support and distributed leases - #114
Open
tomdesair wants to merge 14 commits into
Open
feat(azure): add native Azure Blob Storage support and distributed leases#114tomdesair wants to merge 14 commits into
tomdesair wants to merge 14 commits into
Conversation
… to skip gracefully without docker
… and native access
…on in tests, and update AGENTS.md
…eArgLine and failsafeArgLine from properties
…ckStopSignal happy path, and TusFileUploadService single-arg methods
… in S3LockingServiceTest
… ITAzureBlobConcatenationService
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.
Description
This PR introduces native Azure Blob Storage support for
tus-java-serverfollowing cloud-native architecture principles.Key Highlights:
AzureBlobStorageService: Block Blob staging with auto-calibrating block sizes (4 MiB up to 100 MiB supporting up to 4.75 TiB uploads),.partsub-threshold buffering, truncation,UploadInfoJSON metadata serialization, and self-cleaning checksum deduplication index.AzureBlobLockingService: Distributed locking using 30s native Azure Blob Leases with background renewal thread, JVM-local stream interruption, and cross-pod.stopsignal blobs for multi-replica container deployments.AzureBlobConcatenationService: Server-side zero-copy concatenation viastageBlockFromUrlwith fallback for Azurite emulator support.docs/AZURE_BLOB_STORAGE.md, updatedREADME.md, andCHANGELOG.md.