-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Refactor writeObject to only use MultipartUpload when required #27877
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,10 +28,11 @@ | |
|
|
||
| use Aws\S3\Exception\S3MultipartUploadException; | ||
| use Aws\S3\MultipartUploader; | ||
| use Aws\S3\ObjectUploader; | ||
| use Aws\S3\S3Client; | ||
| use Icewind\Streams\CallbackWrapper; | ||
| use GuzzleHttp\Psr7\Utils; | ||
| use OC\Files\Stream\SeekableHttpStream; | ||
| use GuzzleHttp\Psr7; | ||
| use Psr\Http\Message\StreamInterface; | ||
|
|
||
| trait S3ObjectTrait { | ||
| /** | ||
|
|
@@ -80,37 +81,77 @@ public function readObject($urn) { | |
| } | ||
|
|
||
| /** | ||
| * Single object put helper | ||
| * | ||
| * @param string $urn the unified resource name used to identify the object | ||
| * @param resource $stream stream with the data to write | ||
| * @param StreamInterface $stream stream with the data to write | ||
| * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0 | ||
| * @throws \Exception when something goes wrong, message will be logged | ||
| * @since 7.0.0 | ||
| */ | ||
| public function writeObject($urn, $stream, string $mimetype = null) { | ||
| $count = 0; | ||
| $countStream = CallbackWrapper::wrap($stream, function ($read) use (&$count) { | ||
| $count += $read; | ||
| }); | ||
| protected function writeSingle(string $urn, StreamInterface $stream, string $mimetype = null): void { | ||
| $this->getConnection()->putObject([ | ||
| 'Bucket' => $this->bucket, | ||
| 'Key' => $urn, | ||
| 'Body' => $stream, | ||
| 'ACL' => 'private', | ||
| 'ContentType' => $mimetype, | ||
| ]); | ||
| } | ||
|
|
||
| $uploader = new MultipartUploader($this->getConnection(), $countStream, [ | ||
|
|
||
| /** | ||
| * Multipart upload helper that tries to avoid orphaned fragments in S3 | ||
juliusknorr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| * | ||
| * @param string $urn the unified resource name used to identify the object | ||
| * @param StreamInterface $stream stream with the data to write | ||
| * @param string|null $mimetype the mimetype to set for the remove object | ||
| * @throws \Exception when something goes wrong, message will be logged | ||
| */ | ||
| protected function writeMultiPart(string $urn, StreamInterface $stream, string $mimetype = null): void { | ||
| $uploader = new MultipartUploader($this->getConnection(), $stream, [ | ||
| 'bucket' => $this->bucket, | ||
| 'key' => $urn, | ||
| 'part_size' => $this->uploadPartSize, | ||
| 'params' => [ | ||
| 'ContentType' => $mimetype | ||
| ] | ||
| ], | ||
| ]); | ||
|
|
||
| try { | ||
| $uploader->upload(); | ||
| } catch (S3MultipartUploadException $e) { | ||
| // This is an empty file so just touch it then | ||
| if ($count === 0 && feof($countStream)) { | ||
| $uploader = new ObjectUploader($this->getConnection(), $this->bucket, $urn, ''); | ||
| $uploader->upload(); | ||
| } else { | ||
| throw $e; | ||
| // if anything goes wrong with multipart, make sure that you don´t poison and | ||
| // slow down s3 bucket with orphaned fragments | ||
| $uploadInfo = $e->getState()->getId(); | ||
| if ($e->getState()->isInitiated() && (array_key_exists('UploadId', $uploadInfo))) { | ||
| $this->getConnection()->abortMultipartUpload($uploadInfo); | ||
| } | ||
| throw $e; | ||
| } | ||
| } | ||
|
|
||
|
|
||
| /** | ||
| * @param string $urn the unified resource name used to identify the object | ||
| * @param resource $stream stream with the data to write | ||
| * @param string|null $mimetype the mimetype to set for the remove object @since 22.0.0 | ||
| * @throws \Exception when something goes wrong, message will be logged | ||
| * @since 7.0.0 | ||
| */ | ||
| public function writeObject($urn, $stream, string $mimetype = null) { | ||
| $psrStream = Utils::streamFor($stream); | ||
|
|
||
| // ($psrStream->isSeekable() && $psrStream->getSize() !== null) evaluates to true for a On-Seekable stream | ||
| // so the optimisation does not apply | ||
| $buffer = new Psr7\Stream(fopen("php://memory", 'rwb+')); | ||
| Utils::copyToStream($psrStream, $buffer, MultipartUploader::PART_MIN_SIZE); | ||
| $buffer->seek(0); | ||
| if ($buffer->getSize() < MultipartUploader::PART_MIN_SIZE) { | ||
| // buffer is fully seekable, so use it directly for the small upload | ||
| $this->writeSingle($urn, $buffer, $mimetype); | ||
| } else { | ||
| $loadStream = new Psr7\AppendStream([$buffer, $psrStream]); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We append buffer and psrStream because the psrStream might be non-seekable?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes |
||
| $this->writeMultiPart($urn, $loadStream, $mimetype); | ||
| } | ||
| } | ||
|
|
||
|
|
||
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.