You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For optimal performance when uploading large files you should always use the direct storage hostname. This provides several performance enhancements that will greatly improve performance when uploading large files.
31
+
32
+
Instead of `https://project-id.supabase.co` use `https://project-id.storage.supabase.co`
33
+
34
+
</Admonition>
35
+
28
36
<Tabs
29
37
scrollable
30
38
size="small"
@@ -39,7 +47,7 @@ This is all the information you need to connect to Supabase Storage using any S3
Copy file name to clipboardExpand all lines: apps/docs/content/guides/storage/uploads/resumable-uploads.mdx
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,14 @@ The resumable upload method is recommended when:
14
14
15
15
Supabase Storage implements the [TUS protocol](https://tus.io/) to enable resumable uploads. TUS stands for The Upload Server and is an open protocol for supporting resumable uploads. The protocol allows the upload process to be resumed from where it left off in case of interruptions. This method can be implemented using the [`tus-js-client`](https://github.com/tus/tus-js-client) library, or other client-side libraries like [Uppy](https://uppy.io/docs/tus/) that support the TUS protocol.
16
16
17
+
<Admonitiontype="note">
18
+
19
+
For optimal performance when uploading large files you should always use the direct storage hostname. This provides several performance enhancements that will greatly improve performance when uploading large files.
20
+
21
+
Instead of `https://project-id.supabase.co` use `https://project-id.storage.supabase.co`
22
+
23
+
</Admonition>
24
+
17
25
<Tabs
18
26
scrollable
19
27
size="small"
@@ -35,7 +43,8 @@ Supabase Storage implements the [TUS protocol](https://tus.io/) to enable resuma
0 commit comments