user11655328
user11655328

Reputation:

What is GCP egress?

I want to create an file sharing website, on gcp or amazon aws. But I do not understand what does that "egress" mean. When I create website, where users can download a file, thats 1gb big, when they download the file, the egress is going to be 1GB, and I need to pay for 1gb? Or it is just when I transfer the 1gb to some other gcp service (some other vm) or to storage etc..

Upvotes: 0

Views: 4127

Answers (1)

Gabe Weiss
Gabe Weiss

Reputation: 3332

Pretty sure it's wherever it's going, with some caveats:

https://cloud.google.com/storage/pricing#network-buckets

E.g. Storage -> Same region instance of app engine doesn't count.

So one of your friends downloads the file? Charged for it. You move the file to a multi-region bucket? Charged for it. You have an app engine application running in the same region as the GCS bucket it's stored in, NOT charged for it, BUT if that app engine application serves up the file to somewhere ELSE, you get charged for THAT egress.

Upvotes: 2

Related Questions