will Cloud Function affect Firebase Storage bandwidth usage?

后端 未结 1 1583
故里飘歌
故里飘歌 2020-12-06 11:45

I am trying to figure out why firebase storage usage is far above my expectation

I only have few photo files in my Firebase storage, just around 75 photos, 100kb for

相关标签:
1条回答
  • 2020-12-06 12:06

    The part of the documentation you quoted that's relevant here is:

    Cloud Functions accesses this image when it needs to run the container to execute your function.

    The built images are being accessed by Cloud Functions in order to run your code that's built into the image. Although the documentation doesn't specify, I would guess that every cold start of a function requires a download of the image from the artifacts bucket. This would explain the usage on that bucket.

    0 讨论(0)
提交回复
热议问题