-
Notifications
You must be signed in to change notification settings - Fork 55
feat: project setup and upload file #1712
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
base: s3-tm-main
Are you sure you want to change the base?
Conversation
|
A new generated diff is ready to view.
|
|
A new generated diff is ready to view.
|
|
A new generated diff is ready to view.
|
|
A new generated diff is ready to view.
|
|
A new generated diff is ready to view.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice start
...mmon/src/aws/sdk/kotlin/runtime/http/interceptors/businessmetrics/AwsBusinessMetricsUtils.kt
Show resolved
Hide resolved
hll/s3-transfer-manager/jvm/test/aws/sdk/kotlin/hll/s3transfermanager/UploadFileTest.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/utils/UploadFile.kt
Outdated
Show resolved
Hide resolved
...ransfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/BusinessMetricInterceptor.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
...-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/model/UploadFileRequest.kt
Outdated
Show resolved
Hide resolved
...-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/model/UploadFileRequest.kt
Outdated
Show resolved
Hide resolved
...-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/model/UploadFileRequest.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/utils/UploadFile.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/utils/UploadFile.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/TransferInterceptor.kt
Outdated
Show resolved
Hide resolved
|
A new generated diff is ready to view.
|
|
A new generated diff is ready to view. |
|
A new generated diff is ready to view. |
|
A new generated diff is ready to view. |
|
A new generated diff is ready to view. |
...n/kotlin/aws/sdk/kotlin/hll/dynamodbmapper/codegen/operations/rendering/OperationRenderer.kt
Outdated
Show resolved
Hide resolved
...odegen/src/main/kotlin/aws/sdk/kotlin/hll/s3transfermanager/codegen/mappings/MappingTypes.kt
Outdated
Show resolved
Hide resolved
hll/s3-transfer-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/S3TransferManager.kt
Show resolved
Hide resolved
...-manager/common/src/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadfile/UploadFile.kt
Outdated
Show resolved
Hide resolved
...ger/common/src/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadfile/HelperFunctions.kt
Outdated
Show resolved
Hide resolved
...mon/src/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadfile/hooks/InitiateTransfer.kt
Outdated
Show resolved
Hide resolved
...common/test/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadobject/UploadObjectTest.kt
Show resolved
Hide resolved
|
A new generated diff is ready to view. |
hll/build.gradle.kts
Outdated
|
|
||
| "s3-transfer-manager-codegen", // TODO: Disable publishing ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment: 👍 Yes, this is in the right place. We don't want to publish this since we have no use case for it right now. We can scratch the TODO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't disable publication right? Just API validation and docgen
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is configured in repo tools right?
|
|
||
| java { | ||
| sourceCompatibility = JavaVersion.VERSION_1_8 | ||
| targetCompatibility = JavaVersion.VERSION_1_8 | ||
| } | ||
|
|
||
| tasks.withType<KotlinCompile> { | ||
| compilerOptions { | ||
| jvmTarget.set(JvmTarget.JVM_1_8) | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: Why are these additions necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was getting error messages about this being compiled with a higher version of Java than S3 TM codegen (11 vs 8)
| val mpuUploadId = initiateTransfer( | ||
| multipartUpload, | ||
| transferContext, | ||
| contentLength, | ||
| uploadFileRequest, | ||
| interceptors, | ||
| client, | ||
| ) | ||
|
|
||
| val uploadedParts = transferBytes( | ||
| multipartUpload, | ||
| contentLength, | ||
| partSizeBytes, | ||
| logger, | ||
| uploadFileRequest, | ||
| transferContext, | ||
| mpuUploadId, | ||
| interceptors, | ||
| client, | ||
| maxInMemoryParts, | ||
| maxConcurrentPartUploads, | ||
| ) | ||
|
|
||
| completeTransfer( | ||
| multipartUpload, | ||
| transferContext, | ||
| uploadFileRequest, | ||
| mpuUploadId, | ||
| uploadedParts, | ||
| interceptors, | ||
| client, | ||
| ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style: The volume of arguments passed into these functions is too great. Can any of these be grouped into objects, derived from other parameters, etc.? This level of data coupling is an indicator that we might be better served modelling a base operation type which can be implemented for each operation type (e.g., UploadFile) or for each subtype (e.g., UploadFileSingle and UploadFileMultipart), which would reduce the amount of if (multipartUpload) calls.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I left a TODO for this, once we write other operations it'll be easier to create a common abstraction.
...c/main/kotlin/aws/sdk/kotlin/hll/s3transfermanager/codegen/mappings/uploadfile/Converters.kt
Outdated
Show resolved
Hide resolved
...common/src/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadfile/hooks/TransferBytes.kt
Outdated
Show resolved
Hide resolved
| ) = produce( | ||
| capacity = maxInMemoryParts, | ||
| ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correctness: Isn't maxInMemoryParts supposed to limit the parts for the entire S3TM? This looks like it applies to individual objects but we'll be parallelizing multi-object transfers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I decided to use a Channel for each object but while keeping track of total parts in memory using a Semaphore.
...common/src/aws/sdk/kotlin/hll/s3transfermanager/operations/uploadfile/hooks/TransferBytes.kt
Show resolved
Hide resolved
hll/build.gradle.kts
Outdated
|
|
||
| "s3-transfer-manager-codegen", // TODO: Disable publishing ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't disable publication right? Just API validation and docgen
| internal val uploadFileConversions = listOf( | ||
| ConversionMapping( | ||
| source = TypeRef( | ||
| "aws.sdk.kotlin.services.s3.model", | ||
| "PutObjectResponse", | ||
| ), | ||
| destination = TypeRef( | ||
| "aws.sdk.kotlin.hll.s3transfermanager.model", | ||
| "UploadFileResponse", | ||
| ), | ||
| setOf( | ||
| "bucketKeyEnabled", | ||
| "checksumCrc32", | ||
| "checksumCrc32C", | ||
| "checksumCrc64Nvme", | ||
| "checksumSha1", | ||
| "checksumSha256", | ||
| "checksumType", | ||
| "eTag", | ||
| "expiration", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think a data string will make this any more readable / maintainable? The internal spec already has this modeled as a JSON list, we can make changes (which I believe are unlikely) by inspecting the diff of that file
| /** | ||
| * Preferred part size for multipart uploads. | ||
| * If using this size would require more than 10,000 parts (the S3 limit), | ||
| * the smallest possible part size that results in 10,000 parts is used instead. | ||
| * | ||
| * Default to 8,000,000 bytes. | ||
| */ | ||
| public val partSizeBytes: Long = builder.partSizeBytes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is my fault since I left a comment asking to change it to just partSize to simplify the name. We are logging a warning when deviating from the configured part size. It's not a strong opinion so I will let @0marperez make the decision
|
A new generated diff is ready to view. |
Issue #
N/A
Description of changes
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.