User12547645
User12547645

Reputation: 8507

How much disk space does a GCP Function have?

I am looking into different FaaS providers and am interested how much disk space I have per function. A function in AWS Lambda has 512 MB of disk space available (see here) and Azure functions have up to 1000 GB of disk space, depending on the pricing model (see here).

How much does a GCP Function have?

When searching the documentation, I could only find that functions do have disk storage, but not how much (see here).

Upvotes: 4

Views: 3058

Answers (3)

labroid
labroid

Reputation: 463

Currently cloud functions can be configured for 8GB of memory, which as correctly noted includes the 'filesystem'

Upvotes: 3

Tony
Tony

Reputation: 41

Maybe a better documentation redirection is (as per 2021-10-14):

The filesystem itself is entirely writeable (except for files used by the underlying OS) and is stored within the Cloud Functions instance's memory.

https://cloud.google.com/functions/docs/concepts/exec#file_system

So as per Chris' response/comments,

Cloud Function doesn't have a 'disk space'

Or to be more accurate, the disk space IS the memory space.

Upvotes: 3

Chris32
Chris32

Reputation: 4961

A google Cloud function can have between 128 MiB and 2 GiB of memmory.

enter image description here

You can find here the quotas for Cloud Functions

Upvotes: 0

Related Questions