Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
60 views

Previously, I was using Cloud Functions (Gen1), and I could access App Engine–specific headers such as: X-Appengine-Country X-Appengine-Region X-Appengine-City X-Appengine-Citylatlong These were ...
Muhsin Onur Kılınç's user avatar
1 vote
0 answers
56 views

I'm receiving the error below with a google app engine search. This error appears to have started recently and is repeatable. Can I ask for a breadcrumb to help interpret/find root cause? Was ...
ffejrekaburb's user avatar
0 votes
0 answers
179 views

I have a Jakarta 10 application which i deploy to google app engine standard java runtime 21. With the current dependencies JSP has been working well along with jstl tags. This is a snippet of my pom....
Henschel lungu's user avatar
0 votes
1 answer
110 views

The google appengine documentation states websockets are supported, but in their example they use socket.io instead of a "regular" WebSocketServer. my (simplified) nodejs server is super ...
Basti's user avatar
  • 769
0 votes
1 answer
70 views

My Plan I’m deploying a React frontend and a Flask backend on App Engine. I want to use dispatch.yaml to send traffic from the frontend to the backend and hide the backend URL, so users can’t see or ...
Test's user avatar
  • 1
0 votes
1 answer
62 views

I have successfully deployed a spring boot application deployed in google cloud app engine flex environment on May 20, 2025. I tried to deploy same version of the application without any success on ...
VMA's user avatar
  • 119
0 votes
1 answer
132 views

Does anybody know if Google App Engine (GAE) runs the npm install in dev mode even when NODE_ENV is set to production (regardless if it is set by default or explicitly in the app.yaml)? Or the broader ...
Георги Кременлиев's user avatar
-1 votes
1 answer
90 views

How does GAE (Google App Engine) treat NODE_ENV on deployment and run with a NodeJS runtime? Google docs clearly states that some variables are automatically set and cannot overridden except the `...
Георги Кременлиев's user avatar
0 votes
0 answers
71 views

I have the code below to update an entity in the Google data store. I'm now getting an internal error on the model.Collection.put(vhighest) sync.yaml service: sync instance_class: F2 ...
ffejrekaburb's user avatar
1 vote
1 answer
77 views

I have the code below which is built on top of ndb. When running I receive the two errors below. Can I ask for some guidance, specifically what is the connection_from_host referring to? import flask ...
ffejrekaburb's user avatar
1 vote
1 answer
71 views

I have the following sync service written as a microservice. Per the google cloud instructions I could add the middleware? shown at the bottom as a type of shim? I don't have a good mental model of ...
ffejrekaburb's user avatar
0 votes
1 answer
79 views

I am deploying this sync service. I thought that after the python 3 migration adding this prevents such an error. client = ndb.Client() I am not sure how to interpet the error. For the controller ...
ffejrekaburb's user avatar
0 votes
1 answer
152 views

I am working on some code that was recently upgrade from python 2 to python 3 that is part of google app engine. Can I ask for some assistance tracing this? I do not know if this is because something ...
ffejrekaburb's user avatar
0 votes
1 answer
21 views

Google App Engine (GAE) enforces a limit of 1,000 static files per directory during deployment. Nuxt's .output/public/_nuxt folder often contains more than 1,000 hashed static assets (JS/CSS chunks, ...
patb's user avatar
  • 1,826
0 votes
1 answer
77 views

I am trying to put yet another Ruby on rails application on Google App Engine, but this time without success. I get an error in the cloud build that I just can't decipher === Ruby - Appengine ...
Mauro's user avatar
  • 1,271
0 votes
1 answer
121 views

I have two apps, one is a full stack spring boot app serving Angular files running on a VM, and the second one is app to deploy a spring boot client to the AppEngine environment. The second one is ...
Ganesh's user avatar
  • 46
2 votes
1 answer
94 views

We have Private VM Instance ( Twingate ) which will hit to our app engine applications ( NodeJS ) through private dns zone. Please note that we have 2 same domain for Private and Public Zones, let's ...
Kaslie's user avatar
  • 573
0 votes
1 answer
343 views

I've implemented Otel for my python app sending telemetry to GCP backend. I'm seeing these trace spans for https://otel-collector-xxx.asia-southeast1.run.app/opentelemetry.proto.collector.metrics.v1....
Deepanshu Kalra's user avatar
0 votes
2 answers
69 views

I have been using the following cloudbuild.yaml file for a number of years and it has worked perfectly steps: - name: "gcr.io/cloud-builders/mvn:appengine" args: ["-D", &...
DaveH's user avatar
  • 7,367
1 vote
2 answers
81 views

I have a bunch of AppEngine services in a GCP project. Let's call them red-service, green-service and default, with the project being myproject. According to the docs, the standard way to reach a ...
Simone Mariottini's user avatar
1 vote
1 answer
87 views

I am trying to extract random points from a layer in a collection. It is showing this error "FeatureCollection (Error) A mapped function's arguments cannot be used in client-side operations" ...
payel ghosh's user avatar
-1 votes
1 answer
107 views

A few hours ago, indexing documents on AppEngine search started failing. Been working for years. The following error occurs when saving a single document: Caused by: com.google.appengine.api.search....
Arnold PM's user avatar
0 votes
1 answer
317 views

When deploying my next.js application to Google App Engine (Standard Environment), one specific js chunk cannot be loaded but throws a 404 error and makes the app crash. Happens everytime when I load ...
ansonthecaptain82's user avatar
0 votes
1 answer
71 views

When updating my application's configuration from scaling to manual, I repeatedly encountered this error in the console: Error: Cannot find module '/workspace/index.js', followed by multiple errors of ...
gru's user avatar
  • 41
1 vote
1 answer
161 views

When trying to deploy to App Engine from GitHub Actions, the process fails with the error: Error Response: [13] An internal error occurred. However, running the equivalent commands from my local ...
Fumito Ito's user avatar
0 votes
0 answers
53 views

I recently setup a Redis Essentials (Free) plan (Link. I set it up in US-East region, and I realised that any requests from other regions such as Asia Pacific or Europe, were facing additional ...
John Doe's user avatar
0 votes
0 answers
44 views

I have multiple projects on Google App Engine and manage my domain through a third-party DNS provider. My main domain (A/AAAA records) works fine, but subdomains (CNAME records) like app.domain.com ...
Alma Lika's user avatar
1 vote
1 answer
342 views

I received this email from Google today: [Action Advised] Opt-in to allow only secure TLS 1.2+ traffic in your App Engine applications I have several projects. I tried in a "testing" project ...
Blodhgard's user avatar
  • 9,415
0 votes
0 answers
58 views

I am deploying a Flask application to Google App Engine (Standard Environment, Python 3.9). I am using Firebase Admin SDK to access Firestore, and I have set GOOGLE_APPLICATION_CREDENTIALS in app.yaml ...
shuhskw's user avatar
0 votes
0 answers
80 views

I am trying to deploy an API on Google App Engine (GAE) Standard Environment, but I keep encountering the following error: ERROR: failed to initialize analyzer: validating registry read access: ensure ...
shuhskw's user avatar
0 votes
1 answer
142 views

I have a Google App Engine app. It is a "Standard" (vs "Flexible"), it is NodeJS, the first few lines of the config are: runtime: nodejs20 env: standard instance_class: F2 ... ...
Nate Anderson's user avatar
0 votes
0 answers
33 views

I have many application-<environment>.yaml files in my resources folder. I would like to only include the default and active profile files in my builds for deployment. I have this in my build....
billoreid's user avatar
  • 357
0 votes
1 answer
60 views

I have a node.js app which is serving data from a Google Sheet to Slack on request (via slash commands). The app reads the sheet into memory at start-up and once a day and then serves the slack ...
Jim Burke's user avatar
  • 435
0 votes
0 answers
42 views

I'm trying to set up an older project that was using eclipse plugins for app engine and gwt. These plugins won't work moving foward and I'm now looking to set this up using eclipse and maven plugins ...
Viktor Eklund's user avatar
0 votes
1 answer
148 views

I'm new with GCP and I've been reading some articles online on how to create Auto Scaling on GCP. I found this StackOverflow answer that answered all my questions on how to setup Auto Scaling with MIG ...
siegewallace06's user avatar
-1 votes
1 answer
210 views

I'm developing a Node.js application and trying to create a queue using Google Cloud Tasks, but I encounter the following error: Error: 7 PERMISSION_DENIED: The principal (user or service account) ...
rafik's user avatar
  • 67
2 votes
0 answers
211 views

I have a python application deployed in Google Cloud App Engine. When I deploy including google-genai in requirements.txt and doing "import google.genai as genai" in my code, the application ...
Enrique's user avatar
  • 21
0 votes
0 answers
74 views

I'm new on Strapi Cloud and Google Cloud. I have tried to deploy my Strapi Cloud app by using Google App Engine, and I followed a website/videos (https://kevinblanco.dev/strapi-cms-on-google-cloud-...
Hikaru's user avatar
  • 1
0 votes
0 answers
41 views

So, now that I added SSL instead of TLS there's at least some progress, but it still doesn't work. I click the button, it processes for a 5-10 seconds and I get the error that connection unexpectedly ...
lumba's user avatar
  • 43
3 votes
1 answer
205 views

I'm using Google App Engine on Google Cloud to run a Flask app. It used to be that whenever an error appeared on the production server I would receive an email from Google Console that an error ...
Jan Verderber's user avatar
2 votes
1 answer
442 views

I am currently using Google App Engine Standard and deploying a Java application via Gradle task appengineDeploy. At the moment, my deployments are being routed through Container Registry, but I would ...
Luca Biasotto's user avatar
1 vote
1 answer
66 views

I'm trying to connect my .NET app(MySqlConnector 2.4.0) running in App Engine to my MySQL instance running in Cloud SQL using Cloud IAM. I'm using the App Engine default service account for the IAM ...
Johan Bengtsson's user avatar
0 votes
0 answers
18 views

I'm trying to host my Django app on the Google app engine. I tested the app locally using a .env file for the environmental variables, but when I moved the variables to the secret manager, the app ...
Zannelle Ooko's user avatar
0 votes
0 answers
38 views

I have a Node.js API running on express, that I deploy to Google App Engine (GAE) using GitHub Actions. Currently, I use a .env file for managing environment variables locally, but I want to securely ...
Rishav's user avatar
  • 1
0 votes
1 answer
63 views

Something very strange has just started happening. Our API on Google Cloud Endpoints won't startup. This happened just after trying to deploy to a new test environment. Now we can't deploy to the ...
Mike Dee's user avatar
  • 615
0 votes
2 answers
143 views

I have created mysql instance v-8.4 in gcp with ssl. But it is not able to connect to app engine. When I connect to mysql using command line in google cloud shell, after that it connects with app ...
Komal's user avatar
  • 1,107
0 votes
0 answers
238 views

Up until now, I was using the following command for testing a GAE application on my local dev env: e: cd E:\myProj\myWebApp "E:\Google\Cloud SDK\google-cloud-sdk\bin\java_dev_appserver.cmd" -...
Applix Systems's user avatar
0 votes
0 answers
25 views

When deploying to Docker, routes work fine but when I deploy to gcloud App Engine, clicking on the submit button returns to /search (the search bar route), anybody knows why? <div class="...
Joris Stocker's user avatar
0 votes
1 answer
41 views

app.yaml: runtime: nodejs20 env_variables: REACT_APP_BASE_URL: https://api-dot-gd-goenka-school.uc.r.appspot.com/ handlers: - url: /static static_dir: build - url: /(.+) static_files: ...
Chetan Singh's user avatar
0 votes
0 answers
31 views

I have a GitHub Actions workflow setup to deploy to my GCP App Engine when ever changes are pushed to my production branch. This is the YML file for the workflow: name: Deploy to App Engine on: ...
ajaybhatta49's user avatar

1
2 3 4 5
954