
Explanation:
App Engine has a request size limit of 32MB in the standard environment. To handle a 500MB file upload, using signed URLs (Option C) allows clients to upload files directly to Google Cloud Storage (GCS), bypassing App Engine's request size limitation. This approach offloads the upload process to GCS, which supports large files. Options A (FTP) and B (CPanel) are not supported by App Engine. Option D (multipart upload) does not resolve the 32MB request size constraint, as the total request size (including all parts) would still exceed the limit.
Ultimate access to all questions.
How should you migrate an internal file upload API that enforces a 500-MB file size limit to Google App Engine?
A
Use FTP to upload files.
B
Use CPanel to upload files.
C
Use signed URLs to upload files.
D
Change the API to be a multipart file upload API.
No comments yet.