mirror of
https://github.com/fsouza/fake-gcs-server.git
synced 2026-04-27 06:35:54 +03:00
[GH-ISSUE #213] fake-gcs-server eats all memory #38
Labels
No labels
bug
compatibility-issue
docker
documentation
enhancement
help wanted
needs information
pull-request
question
stale
unfortunate
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/fake-gcs-server#38
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @pitrou on GitHub (Apr 9, 2020).
Original GitHub issue: https://github.com/fsouza/fake-gcs-server/issues/213
I've downloaded the v1.18.1 binaries version for Linux and launched the server like this:
Without even issuing a single request, fake-gcs-server started allocating a ton of memory and eating CPU, making my computer crawl:
I had to kill the process.
@pitrou commented on GitHub (Apr 9, 2020):
Uh, looks like it's because it loads data from
/databy default... and/datais a 300GB file tree on my computer :-/@pitrou commented on GitHub (Apr 9, 2020):
Closing as presumably not a bug...
@fsouza commented on GitHub (Apr 9, 2020):
Hi @pitrou, thanks for opening this. Perhaps we can disable pre-loading from any dir unless explicitly requested?
Will reopen to track.
@pitrou commented on GitHub (Apr 10, 2020):
Thanks for the quick response :-)
@nhoughto commented on GitHub (Apr 20, 2020):
FYI This broke my build =) We were assuming not specified meant /data and were volume mounting into that path. I've fixed it now by specifying it 👍