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
0
votes
0 answers

Memory leak when reading from GCS buckets

import cloudstorage as gcs import logging DEFAULT_BUFFER_SIZE = 1024 * 1024 default_retry_params = gcs.RetryParams( initial_delay=0.2, max_delay=5.0, backoff_factor=2, …
0
votes
1 answer

Possible? How to setup VNC in a Google Managed VM Environment

I'm using Java but this isn't necessarily a Java question. Google's "java-compat" image is Debian (3.16.7-ckt20-1+deb8u3~bpo70+1 (2016-01-19)). Here is my Dockerfile: FROM gcr.io/google_appengine/java-compat RUN apt-get -qqy update && apt-get qqy…
Robert
  • 1,220
  • 16
  • 19
0
votes
1 answer

Java Google AppEngine Managed VMs: What logs are obtainable through the Logging API?

I like that I can use the Logs API (described here: https://cloud.google.com/appengine/docs/java/logs/) to programatically access and display app & request logs as I see fit--it's great. Now that I'm using Managed VMs on AppEngine you can see on…
0
votes
1 answer

Django Manage.py Migrate from Google Managed VM Dockerfile - How?

I'm working on a simple implementation of Django hosted on Google's Managed VM service, backed by Google Cloud SQL. I'm able to deploy my application just fine, but when I try to issue some Django manage.py commands within the Dockerfile, I get…
0
votes
2 answers

Updating code of managed vm on google compute engine

I understand this might be an easy solution, but I am very new to this so any help would be appreciated. I have been running through the hello world application for node.js with managed vms on google compute engine, and I have just done this…
0
votes
1 answer

Failing to run ZK Spreadsheet on App Engine Managed VM

I wrote a very simple application based on the example here. When I try to run it with standalone Jetty 9.2.10.v20150310 (which is the same version used by GAE Managed VM) it works fine (loading and saving). When I try to run it with the Google…
Gabriel
  • 862
  • 6
  • 18
0
votes
1 answer

Django on App Engine Managed VM

I have a minimal Django project that I am trying to deploy onto Google App Engine Managed VMs. I'm having a bit of trouble understanding exactly what is going on and what is serving what. I have an app.yaml file that looks like this: runtime:…
TowMater7
  • 111
  • 2
  • 12
0
votes
1 answer

Possible to run Google Standard Managed VM Locally with Docker for Development?

Is it possible to run a Google Standard Managed VM for Java locally for development purposes? I am asking cause dev_appserver.py, mvn gcloud:run or gcloud preview app run are good for a simple hello world application, but anything bigger than that…
0
votes
0 answers

Managed VM not running on production

I'm trying to deploy a managed VM application to google cloud platform and I get the following error: ERROR: (gcloud.preview.app.deploy) Not enough VMs ready (0/1 ready, 1 still deploying). Deployed Version: converter:dev.386894231648366298 Also, a…
0
votes
1 answer

NodeJS Managed VM receiving 403 on datastore writes

Dear Google Team & GAE Enthusiasts: I tried deploying my NodeJS app to my GAE project with the new remote dockerless option: "gcloud preview app deploy app.yaml --set-default --remote" The deployment process seemed to be fine -- meaning no errors…
0
votes
1 answer

Store data to Cloud storage In GAE Managed VMs

Environment is running app in GAE's Managed VMs. When I run shell : gcloud preview app run build/exploded-app And tried to upload a file and store data of the file to cloud storage: private final GcsService gcsService =…
1 2
3