Topic 1 Question 90
A SysOps administrator wants to upload a file that is 1 TB in size from on-premises to an Amazon S3 bucket using multipart uploads. What should the SysOps administrator do to meet this requirement?
Upload the file using the S3 console.
Use the s3api copy-object command.
Use the s3api put-object command.
Use the s3 cp command
ユーザの投票
コメント(10)
- 正解だと思う選択肢: D
I vote for D!
It's a best practice to use aws s3 commands (such as aws s3 cp) for multipart uploads and downloads, because these aws s3 commands automatically perform multipart uploading and downloading based on the file size. By comparison, aws s3api commands, such as aws s3api create-multipart-upload, should be used only when aws s3 commands don't support a specific upload need, such as when the multipart upload involves multiple servers, a multipart upload is manually stopped and resumed later, or when the aws s3 command doesn't support a required request parameter.
https://aws.amazon.com/premiumsupport/knowledge-center/s3-multipart-upload-cli/
👍 11princajen2022/09/04 - 正解だと思う選択肢: D
Ill go with D (aws s3 cp) on that one. It's recommended at https://aws.amazon.com/premiumsupport/knowledge-center/s3-multipart-upload-cli/ and there is more to be done for s3api to work.
👍 4haxaffee2022/09/04 - 正解だと思う選択肢: C
Choose C. put-object is the answer. https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/put-object.html
👍 1kati2k22cz2022/09/04
シャッフルモード