Replies: 1 comment
-
|
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I'm designing some file management API that serves
presigned_urlto clients for direct file upload.It is currently done via
create_presigned_postwhich allows settingFieldsandConditionsin order to pass a callback and get notified on upload success and that is working without issue.Now I'm moving on to support chunked upload for large files, talking about 10s of GB if not 100s.
Following examples and the documentation I thought about the following process:
create_multipart_upload+> return 1upload_partpresigned_urlfor each expected chunketagand store it in my databasecomplete_multipart_uploadwith alletagsI am blocked at this 3rd step, as
generate_presigned_urlonly accepts the method name, its parameters and an expiration time.Is there a way to be notified back when a part gets uploaded in a multipart upload ?
Best,
Beta Was this translation helpful? Give feedback.
All reactions