Hey Matt,

So looking a bit into this, my first guess would be that, while your PC has 
enough room, the image built doesn't, so your "VM" doesn't have enough 
memory even if your computer does.

Do you mind running gcloud preview app deploy (or run, for that matters) 
with "--verbosity debug"?

In general, if your error is really a size issue on your VM, I would try 
giving it a bigger hard drive. You can specify the size of your VM by using 
"resources" in your app.yaml, like so:

resources:
    cpu: 5
    memory_gb: 2
    disk_size_gb: 24


I think what may be happening is that, since the default size (if you don't 
specify any) is 10GB, it's possible that while your image has 23.6 GB, when 
you build it with gcloud, it only allocates 10 gigs to your VM, and 
therefore would cause these issues.

Can you try adding the resources configuration to your yaml, trying again, 
and telling me if this helps?

Cheers!

On Thursday, August 27, 2015 at 11:03:38 AM UTC-4, Matt Hanson wrote:
>
> Sure, here's my app.yaml file
>
> ###############
> runtime: python27
> threadsafe: true
> api_version: 1
> vm: true
>
> handlers:
> - url: /.*
>   script: miru.api.app
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d1eabff0-d104-489c-bc9e-8b5436f91b3f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to