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
4
votes
1 answer

Elasticsearch deployment on google app engine flex

Is it possible to deploy Elasticsearch on App engine flex environment using a docker image. I have tried the following My files on the local machine Folder : elasticsearch app.yaml Dockerfile docker-entrypoint.sh config folder(containing…
Akshata
  • 1,005
  • 2
  • 12
  • 22
4
votes
2 answers

Google Appengine: Budget and Daily Spending Limit not Working

I am using flexible environment. I setup a billing account and set the following: Budget: 0.01$ Daily Spending Limit: 0.01$ But I am already being charged 5$. How is that possible? This is the line which tells me where the charges are comming…
4
votes
1 answer

Google Cloud App Engine Flexible - Logs are not working

I am trying to write logs while using python on google app engine flexible environment. I want to use the default python logging library and use a handler for logging. This is my code: import logging import google.cloud.logging # Don't conflict with…
Lee
  • 781
  • 2
  • 11
  • 31
4
votes
2 answers

Multiple NodeJS Services/Modules on Google App Engine Flexible Environment

I'm struggling to figure out how to deploy multiple nodejs services on google app engine flexible. I'm using multiple nodejs classes with firebase-queue to process my tasks. Right now, i'm using my package.json to trigger starting everything at…
3
votes
1 answer

ERROR: (gcloud.app.deploy) Error Response: [9] Flex operation projects/.../regions/us-central1/operations/... error [FAILED_PRECONDITION]

I'm pretty new on Google Cloud, and I just wanted to deploy my first streamlit webapp. I'm on Windows in command line. I already did the Google Cloud "Hello World" Example, which worked without any error. When I deploy the streamlit webapp, I got…
3
votes
1 answer

AppEngine Flex deployment ERROR - INVALID_ARGUMENT: The following quotas were exceeded

I have been unable to deploy a new Ruby service in my project for quite a while now. Everytime I try, I get this error: ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: The following quotas were exceeded: CPUS (quota: 0, used: 0 + needed: 1). I have…
3
votes
1 answer

What is the best way to route traffic between instances of 2 App Engine Flexible services (inside a VPC?)?

We want to deploy two App Engine services inside one Google Cloud project (one would handle external HTTPS requests and the other one shall handle receive traffic from the first service). Communication between these two services is done over mTLS…
3
votes
4 answers

Google App Engine "Exceeded soft memory limit on "

We have a long-time running service on Google App Engine(GAE). However, after a while, we began to get the error in the image. No changes to the code. I don't understand why we're having the problem we didn't have before. 2020-01-05 08:31:32.704…
3
votes
0 answers

Split health checks cannot set custom path

This was originally an internal message and may refer to some of our projects, but the background information will be useful so have left references to these in. We are having an issue with Google App Engine preventing us from making new…
3
votes
1 answer

Legacy GCE Metadata Server endpoints and GAE flex app

I have a Python GAE flex app, and I received an email from Google stating: We are writing to let you know that the v0.1 and v1beta1 endpoints of the Compute Engine Metadata Server will be shut down on January 15, 2020. From January 15, 2020,…
3
votes
3 answers

How to allow cross site origin requests in Google App Engine?

I have a simple API made with Express that is returning json. The Express server is running on Google App Engine. I'm using cors (https://www.npmjs.com/package/cors) to enable ALL CORS-requests, but I still get "No 'Access-Control-Allow-Origin'…
borkanee
  • 49
  • 1
  • 4
3
votes
1 answer

Is it possible to mount Google Filestore in GAE Flexible custom runtime

The documentation for Google Filestore only makes specific reference to using it with "Google Compute Engine and Kubernetes Engine instances". Following the instructions here I have been successfully able to mount a Filestore share in a Compute…
3
votes
1 answer

403 Forbidden when creating a new version in Google Cloud Platform ML Engine

Using the Python Google API client library from AppEngine flex, I'm making calls to GCP ML Engine API. It works fine when I list the different models, get their default version and all "read-only" actions but when I try to create a new version for…
3
votes
0 answers

Google App Engine Flexible Environment at 0 instances

Over the past week I've been seeing the number of instances on my GAE Flexible Environment fall to 0, with no new instance spinning up. My understanding of the Flexible environment is that this shouldn't be possible...…
vrk7bp
  • 75
  • 1
  • 6
3
votes
3 answers

GCP App Engine flex (GAE): Error when deploying

When deploying using gcloud app deploy I get the following error: Timed out waiting for the app infrastructure to become healthy gcp I contacted GCP Support and they told me the same thing I had read in other threads: the error you are…