carloea2 commented on code in PR #4130:
URL: https://github.com/apache/texera/pull/4130#discussion_r2621575065


##########
common/workflow-core/src/main/scala/org/apache/texera/service/util/S3StorageClient.scala:
##########
@@ -39,6 +39,12 @@ object S3StorageClient {
   val MINIMUM_NUM_OF_MULTIPART_S3_PART: Long = 5L * 1024 * 1024 // 5 MiB
   val MAXIMUM_NUM_OF_MULTIPART_S3_PARTS = 10_000
 
+  /** Minimal info about an active multipart upload. */
+  final case class MultipartUploadInfo(key: String, uploadId: String)
+
+  /** Minimal info about a completed part in an upload. */
+  final case class PartInfo(partNumber: Int, eTag: String)

Review Comment:
   Yes, I only keep the info needed and discard others



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to