fix.plonds-s3-multipart-upload

This commit is contained in:
lincube
2026-06-02 10:09:06 +08:00
parent 04b95020bd
commit 54d97e312d
5 changed files with 308 additions and 6 deletions

View File

@@ -12,4 +12,10 @@ public sealed record PlondsS3ClientOptions(
public TimeSpan RequestTimeout { get; init; } = TimeSpan.FromMinutes(30);
public int MaxUploadAttempts { get; init; } = 3;
public long MultipartThresholdBytes { get; init; } = 8L * 1024 * 1024;
public long MultipartPartSizeBytes { get; init; } = 8L * 1024 * 1024;
public int MultipartConcurrency { get; init; } = 4;
}