Questions tagged [managed-vm]

The managed VM hosting environment lets you run App Engine applications on configurable Compute Engine Virtual Machines (VMs). The VM hosting environment offers more flexibility and provides more CPU and memory options.

41 questions
8
votes
3 answers

How to fix "`The --custom_entrypoint flag must be set for custom runtimes`"?

I get this error on appengine when I run gcloud preview app run app.yaml: The --custom_entrypoint flag must be set for custom runtimes My app.yamllooks like: version: 0-1-1 runtime: custom vm: true api_version: 1 manual_scaling: instances:…
eloone
  • 4,248
  • 2
  • 32
  • 35
6
votes
1 answer

Google Managed VM deployment error

FROM google/debian:wheezy MAINTAINER mchouan@gpartner.eu # Fetch and install Node.js RUN apt-get update -y && apt-get install --no-install-recommends -y -q curl python build-essential git ca-certificates RUN mkdir /nodejs && curl…
6
votes
1 answer

gcloud connect to docker Daemon fail

I'm trying to test the new managed VM feature, following this tutorial (using OS X) The boot2docker installation it's okay. Executing $(boot2docker shellinit) give the following output: Writing…
5
votes
1 answer

Unable to update VM with nodejs app on Google App Engine

When I try to deploy from the gcloud CLI I get the following error. Copying files to Google Cloud Storage... Synchronizing files to [gs://staging.logically-abstract-www-site.appspot.com/]. Updating module [default]...\Deleted…
ajklein
  • 1,194
  • 2
  • 7
  • 9
5
votes
0 answers

How does logging in managed VMs work?

I'm reading Google's docs on logging in managed VMs, and they're rather thin on detail, and I have more questions than answers after reading: Files in /var/log/app_engine/custom_logs are picked up automatically it says – is this path pre-existing…
Marcus Stade
  • 4,724
  • 3
  • 33
  • 54
4
votes
2 answers

Google managed VM module stuck in reboot loop

I've been trying to add a new App Engine Module that uses Managed VMs instead of the default GAE sandbox. The intent is to provide a module where I can run newer versions of SciPy and NumPy, which can be called by my user-facing Module. I have…
4
votes
1 answer

Load balancing websocket connections in the Google Cloud

I've got a problem I'm unable to fully solve using Google technology. I need to serve >500 parallel websocket connections over SSL. The clients ideally connect to wss://wss.mydomain.com and get served by an instance. Option 1: I currently use a…
kvdb
  • 725
  • 6
  • 18
4
votes
1 answer

"Failed to import google/appengine/ext/deferred/handler.py" in Google App Engine Flexible Environment

I use App Engine Flexible Environment (previously called Managed VMs), and recently upgraded to the latest gcloud SDK. It included some new errors: ERROR: (gcloud.preview.app.deploy) Error Response: [400] Invalid character in filename:…
Mike Lambert
  • 1,976
  • 1
  • 17
  • 31
4
votes
1 answer

My java App Engine Managed VMs build doesn't deploy after 4/14/2015 update

My java App Engine Managed VMs build doesn't deploy any more using gcloud preview app deploy target/myapp-SNAPSHOT I get this: ERROR: Found no valid App Engine configuration files in directory
4
votes
0 answers

Can no longer deploy Dart app to appengine - "Could not start serving the given version"

I can no longer deploy my app to appengine. I've tried several times today and yesterday. It seems to deploy OK but then can't start it. Seems to be the same as Suddenly Getting and Error When Deploying Dart App to GAE I'm on docker 1.5. Latest…
Anders
  • 1,337
  • 1
  • 8
  • 17
3
votes
2 answers

Undocumented Managed VM task queue RPCFailedError

I'm running into a very peculiar and undocumented issue with a GAE Managed VM and Task Queues. I understand that the Managed VM service is in beta, so this question may not be relevant forever, but it's definitely causing me lots of headache…
Kevin
  • 1,132
  • 2
  • 13
  • 24
3
votes
2 answers

Using google memcache in nodejs session

I would like to migrate from vm to app engine with an node.js app. How can i use session in this case, I know i should use 'google memcache' to make an cross vm session but how should i do it? I saw that there are some node module that can store the…
Dor Shay
  • 189
  • 11
3
votes
0 answers

region error thrown while gcloud preview app deploy

While trying to deploy a module of a VM instance in us-central1-a, the :gcloud preview app deploy .yaml throws an error: Error:(gcloud.preview.app.deploy) Could not pick a region and/or zone. I ve set the region us-central1 in gcloud config list and…
raul
  • 631
  • 2
  • 10
  • 23
3
votes
1 answer

Cannot seem to install Google Cloud Managed VMs

Following Google instructions to install managed VMs, everything seems to work smoothly until I get to this step: gcloud preview app setup-managed-vms The result is the following error: ERROR: (gcloud.preview.app) Invalid choice:…
Gabriel Kohen
  • 4,166
  • 4
  • 31
  • 46
2
votes
2 answers

Appengine deployments are extraodinarily slow today?

We have a small java project need to deploy it include 9000+ files command : mvn gcloud:deploy but I get the Log: ... [INFO] INFO: Uploading…
1
2 3