Questions tagged [google-app-engine]

Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers.

Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers.

Google App Engine lets you run your web applications on Google's infrastructure; applications are easy to build, easy to maintain, and easy to scale as your traffic and data storage needs grow. With App Engine, there are no servers to maintain: You just upload your application, and it's ready to serve your users.

401 questions
0
votes
2 answers

App engine Instances placement

Whenever we provision an app in app engine flexible, where does google place these instances? In the documentation it only mentions that google manages these instances, but there is no mention of placement of these servers and how they are connected…
0
votes
1 answer

Strange traffic to Google Cloud VPS

I have one small project running on Google Cloud. And during last couple of weeks I notice serious unexpected traffic to it and (a bit surprisingly in 2020-ths) additional bills for it. The volume of traffic is like This is November. I am not…
0
votes
1 answer

How to only allow internal access between two AppEngine projects

I have two backend projects in GCP - And I want to to have a firewall on both of these such that the only thing that can access either of them is an IP and the backends themselves. It is straightforward to set the IP (I can simply create a new rule…
user1511956
  • 103
  • 2
0
votes
3 answers

CORS Error in Google App Engine on java server

I have two apps. Frontend(Angular) running on Firebase Backend Spring Boot (Java11) running on App Engine Got this error while trying to reach any endpoints in app engine "Access has been blocked by CORS policy: Response to preflight request doesn't…
0
votes
1 answer

App engine --ignore-file not working

Depending on the env I deploy to I want to ignore diffrent files but using --ignore-file option does not work. I have tried: gcloud app deploy app.prod.yaml --ignore-file=.gcloudignore.prod --project project-id gcloud app deploy app.prod.yaml…
Code Spirit
  • 101
  • 1
  • 1
0
votes
1 answer

GCP: Change OAuth Client ID referred to by IAP

In a GCP project, a App Engine IAP is now configured with one OAuth2 Client ID. I need to point this IAP to another OAuth2 Client ID. Is there a way to change the OAuth2 Client ID that this App Engine IAP is referring to now? Thanks.
Kim
  • 325
  • 1
  • 5
  • 10
0
votes
1 answer

App Engine Flex service randomly crashes returning 502 error

I work in a company that decided to move backend services to Google App Engine back in April. It's been pretty smooth sailing until today. We have Standard service for handling REST API calls and Flex service for handling WebSocket API. Few hours…
0
votes
1 answer

I want to increase the number of files that can be GCP deployed to 10,000 or more

After adding a new library in my local environment and deploying to GCP I got the following error. $ gcloud app deploy ERROR: (gcloud.app.deploy) INVALID_ARGUMENT: This deployment has too many files. New versions are limited to 10000 files for this…
imori
  • 17
  • 5
0
votes
0 answers

f1-micro shuts down instance with high CPU usage

I use f1-micro mainly for main dev environment, I connect to the instance using vscode ssh extension. But whenever I try to open a medium sized javascript file, or an extension loading up in the background, the ssh connection always timed out. I've…
0
votes
1 answer

Request Whitelisting for Java 7 Deployment

I just took over a project last month.When I tried to deploy the project, it popped up a message told me to migrate to Java 8 application or add to whitelist. I have tried the steps on the document of migrating to Java 8, but the project couldn't…
0
votes
1 answer

App Engine connection to PostgreSQL Database suddenly lost

App Engine connection to PostgreSQL Database suddenly lost My App Engine connection to its CloudSQL Database doesn't work anymore. Till yesterday (26/08/2020) I was able to use my App Engine website normally. Suddenly something has changed and it…
0
votes
1 answer

Does deleting App Engine standard environment instances have any effect on billing?

We have an App Engine standard environment with automatic scaling. When we release a new version we allocate traffic to it and manually delete instances on the old version to save money. This seems a sensible thing to do but since reading the docs…
0
votes
1 answer

Spring application low performance when filtering data

I have created Spring application in app engine B2, I can see in logs that application takes 1s to complete data filtering(after wakening application up). When in my local machine it takes 10ms. Data size is really small and logic is not so…
Vilius
  • 1
  • 1
0
votes
1 answer

Will google appengine legacy services based python2 standard runtime application continue to work after appcfg tool shutdown?

One of our projects uses Memcache, Mail API, Task Queue, Cloud KMS V1, and other legacy app engine services for Python 2 (standard env). If we can build this project with gcloud, will this continue to work after August 30 (after appcfg build tool…
0
votes
1 answer

Appengine Flex unable to connect on cloudSQL mysql DB

I have a Java application running on GAE Flex but it's falling to connect on my private mysql instance with the error: at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:115) at…