Shouldn't it be API rather than protocol? Also my sympathies for having to support the so-called "S3 standard/protocol".
I hope you like the addition and we have the implementation all open-source on the Supabase Storage server
11–20 of 194 posts
Shouldn't it be API rather than protocol? Also my sympathies for having to support the so-called "S3 standard/protocol".
I hope you like the addition and we have the implementation all open-source on the Supabase Storage server
Friendly reminder that Supabase is really cool, and if you haven't tried it out you should do it (everything can be self hosted and they have generous free tiers!)
Friendly reminder that Supabase is really cool, and if you haven't tried it out you should do it (everything can be self hosted and they have generous free tiers!)
Shouldn't it be API rather than protocol? Also my sympathies for having to support the so-called "S3 standard/protocol".
A question about implementation, is the data really stored in a Postgres database? Do you support transactional updates like atomically updating two files at once? Is there a Postgres storage backend optimized for storing large files?
A question about implementation, is the data really stored in a Postgres database? Do you support transactional updates like atomically updating two files at once? Is there a Postgres storage backend optimized for storing large files?
We store the metadata of the objects and buckets in Postgres so that you can easily query it with SQL. You can also implement access control with RLS to allow access to certain resources.
It is not currently possible to guarantee atomicity on 2 different file uploads since each file is uploaded on a single request, this seems a more high-level functionality that could be implemented at the application level
Congrats on the release!
Does this mean that Supabase (via S3 protocol) supports file download streaming using an API now?
As far as I know, it was not achievable before and the only solution was to create a signed URL and stream using HTTP.
This is great news, and I agree with everyone in the thread - Supabase is a great product. Does this mean that Supabase (via S3 protocol) supports file download streaming using an API now? As far as I know, it was not achievable before and the only solution was to create a signed URL and stream using HTTP.
The good news is that the Standard API is also supporting stream!