25

I got the below error, when I tried to deploy my GAE app through gcloud.

Updating service [default]...failed.                                                                  
ERROR: (gcloud.app.deploy) Error Response: [400] This deployment has too many files. New versions are limited to 10000 files for this app.

Details: [
  [
    {
      "@type": "type.googleapis.com/google.rpc.BadRequest",
      "fieldViolations": [
        {
          "description": "This deployment has too many files. New versions are limited to 10000 files for this app.",
          "field": "version.deployment.files[...]"
        }
      ]
    }
  ]
]

Is there any way to tackle this problem?

Avinash Raj
  • 172,303
  • 28
  • 230
  • 274

10 Answers10

22

If you really have more than the 10000 files quota in the service you're trying to deploy then you might have to reduce the number accordingly.

Other things to try:

Assuming you do not actually hit the files quota then the error usually indicates you have looping/circular referencing symlinks in your app directory. Which could also explain a path like the one you mentioned in a comment to this post: https://stackoverflow.com/a/42425048/4495081. You just have to fix the offending symlink(s). Again, a simple/consistent directory structure could help prevent such issues.

Dan Cornilescu
  • 39,470
  • 12
  • 57
  • 97
  • I tried adding to my list of skipped files in app.yaml, but whenever I did a deploy, this file was removed. I had not committed the change since its a global file, but I would have expected it to be used and preserved. How can I ensure it is being used? How do I tell what files are being downloaded by the deploy? – ScottK Apr 08 '20 at 18:08
  • 1
    Dee Dave's answer below. Or use the [--verbosity](https://cloud.google.com/sdk/gcloud/reference#--verbosity) option for [gcloud app deploy](https://cloud.google.com/sdk/gcloud/reference/app/deploy) – Dan Cornilescu Apr 09 '20 at 05:09
16

gcloud app deploy writes a log file, and tells you where that log is early in its output. Examine that log. It'll tell you what's being uploaded.

Two common ways I've seen people get into trouble are

  1. Using virtualenv, but not adding venv (or .venv, if that's the name you picked) to skip_files.
  2. Using git, but forgetting to add .git to skip_files
Dave W. Smith
  • 24,318
  • 4
  • 40
  • 46
  • 4
    For python runtime 3.7, this error is solved by adding these files to a .gcloudingore not to skip_files in the app.yaml – zardilior Feb 25 '19 at 18:56
  • Adding a .gcloudignore file resulted in the error: ERROR: (gcloud.beta.app.deploy) Cannot have both a .gcloudignore file and skip_files defined in the same application. We recommend you translate your skip_files ignore patterns to your .gcloudignore file. See https://cloud.google.com/sdk/gcloud/reference/topic/gcloudignore for more information about gcloudignore. gcloud update failed. Bailing out – ScottK Apr 08 '20 at 17:30
  • What is the syntax for the skip section in app.yaml? I want to have it skip my .tox directory but when I add the line: "- ^(.tox/), the deploy command reports a syntax error, and then it promptly overwrites my changes. – ScottK Apr 08 '20 at 17:34
  • 1
    @ScottK https://cloud.google.com/appengine/docs/standard/python/config/appref#skip_files – Dave W. Smith Apr 08 '20 at 18:55
  • Thanks @DaveW.Smith. How can I tell what these 10k+ files are, so I can start excluding them from the deploy? My change only has 4 files, so there must be a lot of extra files that I don't need. – ScottK Apr 08 '20 at 20:16
  • 1
    @ScottK Post this as a question so that others can benefit from the answer. Nobody will ever see this if it's several comments in. – Dave W. Smith Apr 08 '20 at 23:19
  • @DaveW.Smith I have posted the question here. https://stackoverflow.com/q/61112873/6693299 – ScottK Apr 09 '20 at 02:14
  • I have web app that contains 19k files , all is script files and folder what should I do or just app engine is made for small apps – Mahmoud Magdy May 26 '21 at 08:12
4

Maybe your need ignore some files in file .gcloudignore

/vendor/
/node_modules/
/.git/

This work for me!

Neftalí Yagua
  • 360
  • 3
  • 10
3

As mentioned in some comment, virtualenv folder can have a lot of files.

I just added venv/ as a new line into .gcloudignore file.

vperezb
  • 373
  • 4
  • 7
1

For python runtime 3.7, this error is solved by adding these files to a .gcloudingore not to skip_files in the app.yaml

zardilior
  • 2,810
  • 25
  • 30
1

I was able to reduce my uploaded files by adding the google cloud sdk folder to .gcloudignore in the project root folder.

Keita
  • 335
  • 2
  • 3
1

Few things:

  1. Sometimes the static folder can get a bit messy. Try deleting it and rerunning python manage.py collectstatic, this cut down about 2000 files for me.
  2. Make sure your .gcloudignore file ignores the assets folder, given they've just been moved to static.
  3. Ignore virtualenv folders, they're big
martinedwards
  • 5,577
  • 1
  • 33
  • 35
1

I made a request to Google Cloud support, and this is their official response to this issue:

Thank you for contacting Google Cloud Support. I understand you’re unable to deploy your app since you’re hitting a 10,000 file limit upload as indicated in the error message, let me know if I misunderstood.

GAE is unable to perform deployments with over 10,000 files. Please run the following command to see the number of files being deployed: find . -type f | wc -l. In case you see that the number is above 10,000; make sure to prevent unnecessary files from being deployed by using the app.yaml option skip_files [1]. This element helps you to indicate which files should not be uploaded [1].

If the error persists, there are two other ways to solve this problem:

  1. If the files that you are using are static content, use Cloud Storage bucket to store your files. You can store them in a GCS bucket and serve them through App Engine [2]. When you create an app, App Engine creates a default bucket. To use it you will have to list the bucket in your project [3] and then declare Cloud Storage as a dependency by adding it to the app’s dependency files [4]. This will allow you to upload or download data from the buckets [5][6]. Please consider that using this alternative may impact your monthly expenses.

  2. Increase the number of uploaded files by submitting a quota increase. To do so, I will require the following information which will be submitted to the product team so they can review it and make a decision on it: A business justification for this quota increase The new desired limit.

  1. https://cloud.google.com/appengine/docs/standard/python/config/appref#skip_files
  2. https://cloud.google.com/appengine/docs/standard/java/using-cloud-storage
  3. https://cloud.google.com/storage/docs/listing-buckets
  4. https://cloud.google.com/storage/docs/reference/libraries#installing_the_client_library
  5. https://cloud.google.com/storage/docs/uploading-objects
  6. https://cloud.google.com/storage/docs/downloading-objects
speedplane
  • 15,673
  • 16
  • 86
  • 138
0

I had the same issue. Using .gcouldignore helped reduce from 15000 plus to 30.

 node_modules/
.gitignore
.git
Walker
  • 891
  • 2
  • 11
  • 26
0

Like other answers, my problem was that gcloud app deploy does not ignore virtual envs or node modules. The following helped me figure it out:

  1. gcloud meta list-files-for-upload will show you the list of files that will be uploaded, without having to go through the deploy process.

  2. Add the line:

    #!include:.gitignore
    

    to your .gcloudignore file, unless there are git-ignored files you want to upload. You can't add .gitignore files from other directories, but this can get you a lot of the way there.

  3. Add additional entries to .gcloudignore as needed until the list of files for upload is manageable.

Sarkom
  • 823
  • 10
  • 12