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
-
Hello,
I'm designing some file management API that serves
presigned_url
to clients for direct file upload.It is currently done via
create_presigned_post
which allows settingFields
andConditions
in 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_part
presigned_url
for each expected chunketag
and store it in my databasecomplete_multipart_upload
with alletag
sI am blocked at this 3rd step, as
generate_presigned_url
only 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