Data size & limitations #4
-
Hi, Just learned about Flat and I had a few questions.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hey @luisquintanilla! So, there's a difference between the size of the intermediate data and the size of data committed to the repo at the end. The hosted Actions runners from Github come with 14GB of disk space, some of which is used by the operating system. In principle, your action can fill up a few gigabytes of space on disk! However, you can't then commit all that data to a repo. Per the documentation regarding repo limits, individual files cannot be larger than 100mb and repos should not be larger than 1gb. In practice, if you're getting towards these limits, your performance is going to be quite bad. It's probably a sign that you should be looking at other tools for your workflow! Files are saved in your repository wherever you decide to save them! You can specify a pathname in the workflow. That pathname is relative to the root of your repo. Yes, the committed files are a part of your repo, and they count towards your repo. There's no magic! 😂 |
Beta Was this translation helpful? Give feedback.
Hey @luisquintanilla!
So, there's a difference between the size of the intermediate data and the size of data committed to the repo at the end.
The hosted Actions runners from Github come with 14GB of disk space, some of which is used by the operating system. In principle, your action can fill up a few gigabytes of space on disk! However, you can't then commit all that data to a repo.
Per the documentation regarding repo limits, individual files cannot be larger than 100mb and repos should not be larger than 1gb. In practice, if you're getting towards these limits, your performance is going to be quite bad. It's probably a sign that you should be looking at other tools for your workflow!
F…