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

What are default VPC firewall rules for App Engine Flex

I have a few services deployed in one App Engine flexible environment project. The service instances are running in the same VPC network (not default) which is specified in their app.yaml files and assigned IP addresses from the same subnetwork. By…
dmitryb
  • 281
  • 2
  • 12
5
votes
2 answers

How to Change the Size of /dev/shm in App Engine Flexible

How do you change the size of the shared memory folder /dev/shm in an App Engine Flexible app? By default it is set to 64M, too low to run many apps (e.g., chrome). I don't see any way to change it. There are ways to change it if you have access to…
speedplane
  • 15,673
  • 16
  • 86
  • 138
5
votes
1 answer

How can I run f1-micro instances on App Engine Flexible as of May 2017?

I know there are many such questions asked, but App Engine tends to have changed between each time I set up a new project, often without proper documentation. Earlier, during the (vm: true)-times, I used to run f1-micro instances with the following…
5
votes
0 answers

Error 502 in GAE flexible using Cloud Storage

I have created an application using GAE Flexible. I could deploy and use the app without any problem. Then I have added the Upload file to Google Cloud Storage using JSON service_account and it works correctly in localhost. I have deployed it…
Majico
  • 3,810
  • 2
  • 24
  • 36
5
votes
1 answer

Is there a way to customize nginx proxy in google flexible appengine

We are trying to running an application (a java servlet that connects to guacamole server) on flexible appengine, in our troubleshooting it looks like there is a nginx proxy on the google cloud instance (the instance from which docker image is…
5
votes
0 answers

Nodejs Google App Engine Logs Formatting

I have deployed a app to Nodejs environment on Google App Engine recently. Everything was fine till yesterday when the logs started to behave strangely. Earlier I could read the logs using a simple command gcloud app logs read Now the logs are…
4
votes
3 answers

Specifying Node.js version for Google Cloud App Engine Flexible

I'm trying to deploy a GCloud App Engine Flexible service. I have a yaml file, in which it has the Node.js runtime and the env specified. runtime: nodejs env: flex As the documentation says "You can specify a different Node.js version in your…
4
votes
2 answers

Access GCP Docker image from different project

I have two GCP projects. projectA contains an artifact registry where I store my docker images, projectB is where I want to use such an image to deploy it with app-engine (flexible). Here's how my command looks like: gcloud app deploy…
valenterry
  • 757
  • 6
  • 21
4
votes
2 answers

Connecting to Google Cloud SQL (PostgreSQL) locally and through App Engine Flex

Locally: My local environment is Mac OS. I'm attempting to connect to my Cloud SQL (PostgreSQL) db using Java 8. I've whitelisted my IP and I am able to connect to the DB using pgadmin. My service account is also project owner for the project that…
Adz
  • 2,809
  • 10
  • 43
  • 61
4
votes
2 answers

Up-to-date pip with AppEngine Python flex env?

I want to move an app from the Python 3.7 standard environment to the Python 3.6 flex environment. Python 3.7 comes with pip 18, Python 3.6 comes with pip 9. Pip 10 introduced a very useful feature, build dependencies. Many analytics packages need…
Adam
  • 16,808
  • 7
  • 52
  • 98
4
votes
1 answer

How to change environment variable of a Google App Engine Flex application and restart it, without redeploying

I have a Golang application deployed to Google App Engine Flex which has a lot of environment variables. Now and then, I need to change a couple of these environment variable to test my application. However, I could not find a way in GAE Flex…
4
votes
6 answers

Please suggest Google Cloud App Engine's smallest configuration

I have a node.js web application / website hosted in Google Cloud App Engine. The website will have no more than 10 users per day and does not have any complex resource consuming feature. I used app.yaml file given in tutorial # [START…
4
votes
1 answer

Is there anyway to get a callback after every insert/delete on Google Cloud Datastore?

I would like to sync my Cloud Datastore contents with an index in ElasticSearch. I would like for the ES index to always be up to date with the contents of Datastore. I noticed that an equivalent mechanism is available in the Appengine Python…
4
votes
0 answers

programatically enable IAP (Identity Aware Proxy) for google cloud

I'm trying to work out a way to programatically enable the IAP (Identity Aware Proxy) for our apps on GKE (Google Kubernetes Engine). In order to do this I first have to create an "OAuth 2.0 client ID". Using developer tools I was able to get this…
4
votes
1 answer

Google App Engine Nodejs Bad Gateway Error

We have a project hosted on Google App Engine in its Node.js Flexible Environment to collect data from sensors. We receive about 10 POST /collect requests/second that can be of very different sizes, but 99% of the times are really small requests…
1 2
3
31 32