Storage pricing

Hi, I am a little suprised by the storage cost. Is it really just disk usage and no cost from in/egress? A big portion of my s3 bill in previous projects was egress... Is that not the case here and did i misread, or is it really true? Or is it counted towards the same egress cost as the db itself?
3 Replies
Idris
IdrisOP2w ago
Also no read and write costs? Does it use the database instance for processing? Or is there no reason to consider upgrading Also I found that you can limit MIME and file sizes of each bucket by doing
const { data, error } = await supabase.storage.createBucket('avatars', {
public: true,
allowedMimeTypes: ['image/*'],
fileSizeLimit: '1MB',
})
const { data, error } = await supabase.storage.createBucket('avatars', {
public: true,
allowedMimeTypes: ['image/*'],
fileSizeLimit: '1MB',
})
Is there also a sql command for this?
garyaustin
garyaustin2w ago
Storage is under egress and cached egress pricing
Idris
IdrisOP2w ago
Ah the one under the db section. I hoped it didnt count since its not under storage. But out of luck haha Thanks again gary!

Did you find this page helpful?