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
1
vote
1 answer

gcloud deploy not making dist folder

Admittedly, I'm a novice at GCloud. I "inherited" a project abandoned by the previous developer. I'm trying to deploy a node app on the app engine. The app won't start because it can't find the dist/server.js file. That's because the entire dist…
Mike Hogan
  • 11
  • 1
1
vote
1 answer

Appengine app.yaml HTTPS redirect with secure flag isn't working

My application is deployed in Google AppEngine and my DNS is in GoDaddy. My app.yaml is like such: handlers: - url: /.* http_headers: X-Forwarded-Proto: https script: auto secure: always redirect_http_response_code: 301 -…
Sonal
  • 11
  • 2
1
vote
1 answer

ERROR: (gcloud.app.deploy) UNAVAILABLE: The service is currently unavailable

Since last night App Engine has been throwing 503 errors for deploy, delete, and traffic migration requests. This is happening from both the CLI and the console. App Engine is still serving traffic, but it seems all the admin functions are not…
1
vote
1 answer

Global variables in Google App Engine

Is there any problems when it comes to using global variables in a code that runs on Google App Engine ? Let's say that we have : const ws = []; function newUser(){ ws.push({name:"user"}); } I know that if we run this code locally, the array…
maysara
  • 113
  • 4
1
vote
1 answer

How to write an image in App engine

I am trying to write an image file in google app engine but getting an error "filesystem is read only". I checked for other option including "temp" folder and storage bucket. I cannot use temp folder due to this reason: "Files can be temporarily…
Ravi
  • 9
  • 2
0
votes
1 answer

How to host a Windows executable on Google cloud?

I have a Windows executable that I would like to host on Google cloud so that users can access it from any internet-connected device at any time. Which service would be best for me to do this? I thought the "App Engine" would be best, but it seems…
0
votes
0 answers

Google App Engine error “Upstream sent too big header”

I am running a Laravel app with Google App Engine Standard PHP 7.2, with Elfinder package. Today, I receive 502 error while trying to access Elfinder. Upon analyzing the log, I found this particular error: 96 upstream sent too big header while…
0
votes
1 answer

How to properly manage GCP Appengine standard environment instances?

I have an Appengine standard environment with an application that exposes a series of REST services to consume, everything works alright but the response times are a bit high. The first request takes around 40 seconds to respond, after that the…
0
votes
1 answer

Need help understanding the relationship of custom domain names and services in App Engine

I will freely admit that I am a newbie to GCP App Engine. I am the inheritor of a complex configuration that seems to have grown organically with multiple chefs and no code to back it up and documentation? Hah! So, I am looking at a list of Custom…
Kevin Buchs
  • 353
  • 1
  • 3
  • 20
0
votes
2 answers

Being abused by Google Server?

I got a lot of POST requests from google's server to my website. It requests time to time, never stops. 35.196.208.182 - - [18/Nov/2019:04:39:21 -0700] "POST /?wc-ajax=get_variation HTTP/1.1" 200 689 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X…
0
votes
1 answer

Google Cloud AI Platform job is completed but its status is running

I am facing a strange issue that status is not updated properly. I am using Google Cloud AI Platform to train my model. It's working as I expected, when the logs of the specific job shows that the job is completed (model file is stored in bucket),…
0
votes
1 answer

App Engine sample program on Windows 10 tries to run under the wrong GCP project

Working in nodejs-docs-samples on Windows 10 machine. Tried to follow ... /nodejs-docs-samples/datastore/README.md to run the Datastore sample app in App Engine Standard environment, and when I go to localhost:8080, I get this: Error: 5 NOT_FOUND:…
0
votes
1 answer

Guarantee one and only one instance of Google App Engine possible?

Once an App Engine instance is spun up, you are billed 15 minutes. If it goes idle, it'll shutdown and Google will spin up a new instance, billed, again, for 15 minutes. You can easily rack up 4.5 instance hours with 18 HTTP requests. I am wondering…
pairwiseseq
  • 173
  • 1
  • 1
  • 8
0
votes
1 answer

Google App Engine — Allow customers to connect their domain to my website builder app

I have a website builder on GAE which is successfully connected to my domain (example.com). A customer designs a website and connect it to his domain (customer.com). From programming side everything is alright (i.e. if customer.com hits my web…
0
votes
1 answer

App Engine health check not working

This is my app.yaml runtime: go112 instance_class: B1 manual_scaling: instances: 1 liveness_check: path: "/health" check_interval_sec: 5 timeout_sec: 1 failure_threshold: 1 initial_delay_sec: 10 App is not receiving health checks.…
Jonas
  • 337
  • 2
  • 10