Questions tagged [app-engine-flexible]

App Engine Flexible is a cloud computing technology for hosting web applications in Google-managed data centers. Google App Engine is a Platform as a Service (PaaS) offering for Node.js, Ruby, Java, Python, Go and PHP.

Learn more about App Engine Flexible. App Engine allows developers to focus on doing what they do best, writing code. Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while balancing the load. Microservices, authorization, SQL and noSQL databases, traffic splitting, logging, search, versioning, security scanning, memcache, and content delivery networks are all supported natively. In addition, the App Engine flexible environment allows you to customize your runtime and even the operating system of your virtual machine using Docker.

467 questions
2
votes
3 answers

Disable default healthcheck on Google Cloud App Engine

We are running .Net Core app on App Engine Flex. Trying to disable healthcheck, which hits our service with pretty high rate ~72 reqs/sec: This app.yaml doesn't disable healthcheck for some reason: env: flex runtime: aspnetcore vm_health_check: …
2
votes
2 answers

Is there a way to deploy internal facing applications in Google App Engine?

Is there a way to deploy "internal facing" applications in Google App Engine. AWS offers this capability as explained here and so does Azure as explained here. What is the GCP equivalent for this? It appears App Engine Flexible Environment could be…
2
votes
1 answer

Deploy Google App Engine failed with timed out

I have problem deploying my nodejs to app engine with gcloud app deploy. In the log file, it keeps reporting this error for about ~20mins 2018-02-14 13:48:50,271 DEBUG root Operation…
spondbob
  • 1,523
  • 2
  • 17
  • 34
2
votes
1 answer

App Engine Flexible running out of disk space

Stopping and deleting old versions and instances in my project doesn't seem to free up disk space. After stopping and deleting a working instance and then spinning up a new instance I get error messages related to disk space (health_check returns…
2
votes
1 answer

Jetty fails to start spring boot application in appengine flexible

Note: This is a cross post because I wasn't sure if this was a technical issue or a bug so the bug can be found here A couple weeks ago I wrote up a prototype for adding a flexible environment service to our appengine project that is primarily…
Myles
  • 20,860
  • 4
  • 28
  • 37
2
votes
2 answers

Google Cloud Appengine Flex websockets support

Is there a way for deploying websockets server on Google Cloud Appengine?
2
votes
1 answer

GAE Datastore - How to create non-indexed Entity Property

I'm using GAE flexible environment, .Net, and Datastore. The issue I'm having is that I cannot figure out how to remove the index that Datastore automatically adds to every property of an Entity. I know I can view the Entities on the GCP site and…
2
votes
1 answer

Google Cloud Python Flexible Environment Multithreaded database worker freezes

I run a flexible service for heavy load on Google App Engine Python Flexible Environment. I run PSQ workers to handle tasks through Pub/Sub. This is all fine and dandy as long as I work with single-threaded workers. On single threaded workers, if I…
2
votes
0 answers

Request google app engine flex environment

I do a http request with module requests in django (python 3), import requests url = 'https://www.google.es' r = requests.get(url) str = str(r.content) and It work right in localhost, but when I deploy in Google App Engine, It return a…
2
votes
1 answer

How to allow only internal (cron) requests in my App Engine

Currently I'm using a nodejs App Engine (flexible environment), to do scheduled tasks, like shutting down and starting instances or creating shapshots. The problem is that these App Engines are accessible from everywhere, but I only want them to be…
2
votes
1 answer

How to allow CORS in Google Cloud Endpoints?

As stated in the January 2017 Endpoints release notes, I tried to update my openapi.yaml file to stop the Extensible Service Proxy (ESP) from blocking cross-origin requests by adding to x-google-endpoints: swagger: "2.0" info: description: "Market…
2
votes
1 answer

Disable caching of files on google cloud storage (flexible app engine java)

In Java on FLEXIBLE google app engine, how do you disable caching of files? I don't care if it's disabled on the entire bucket with gsutil, or individual files when I save them, or when they're read. (I just don't want anything cached, as files…
2
votes
1 answer

App Engine Flexible - requirements.txt include GCP repository

I am trying to set up an application running in a python 3 App Engine Flexible environment. I have an app.yaml file: runtime: python env: flex entrypoint: gunicorn -b :$PORT application:app runtime_config: python_version: 3 I have a…
Jon G
  • 1,656
  • 3
  • 16
  • 42
2
votes
0 answers

How to deploy a Websockets App on GAE flexible?

I have a spring boot application that I want to deploy on Google App Engine Flexible. This container/web-server for this App is Jetty 9.4 and since Jetty runs on Websockets internally, GAE doesn't allow me to deploy the App. My question is that, is…
2
votes
0 answers

Storing secrets in GAE Flex environment, making it easy to work with in local/dev env

This is for GAE Flex Env, application written in Go. Two parts to the question: Where is it idiomatic to store application secrets such as passwords/keys to connect to other services? In Heroku for example they are env vars. But in GAE Flex you…