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
2
votes
4 answers

When should one use the following: Amazon EC2, Google App Engine, Microsoft Azure and Salesforce.com?

I had asked this question on StackOverflow. It was suggested to post it here too. When should one use the following: Amazon EC2, Google App Engine, Microsoft Azure and Salesforce.com? Please share your understanding and experiences.
2
votes
1 answer

Google App Engine vertical scaling

I know Google Cloud (Google App Engine) can autoscale instances horizontally: you have 1 server with certain parameters, when it's overloaded autoscaler launches new server and balances load between them. But I can't find any informations if Google…
2
votes
1 answer

Is it possible to mange AWS on Google App Engine?

Say I want to schedule EC2 instant start up, or something like this. I did some reading on the Google App Engine document, find that scheduler is supported, however I am not familiar with Google API, before I do further investigation, maybe I can…
2
votes
1 answer

GAE dev server behind Apache proxy sometimes slow

As the Google App Engine development server only serves one file at a time, I decided to have static resources served instead by: Apache 2.2.17 / XAMPP 1.7.4 / WinXP32. Requests for dynamically created resources are routed to the GAE development…
2
votes
2 answers

Send email through local SMTP vs google app engine

My web site is supposed to send email to customers and its hosted on a VPS. Should I use local SMTP or is it better to use a third party SMTP provider like Google App Engine? What are the disadvantages and advantages for each method (Spam,…
2
votes
1 answer

Setup Amazon EC2 instance to forward Appengine urlfetch requests

I currently have an appengine app and need to make calls to an API that requires IP whitelisting. I can't whitelist the entire appengine IP blocks (as outlined here) because the range is too big. So - I'd like to use an Amazon EC2 instance with an…
aloo
2
votes
1 answer

Google App Engine periodic failures

We have recently noticed that our Google App Engine project was experiencing failures periodically every 25 hours and 10 minutes (1510 mins) for three consecutive days for no apparent reason. During the issue we saw requests failing with the code…
robert
  • 21
  • 1
2
votes
3 answers

Using Google App Engine for static files

I want to serve the static data for my website from Google App Engine. How do I configure GAE to serve static content?
vipin sahu
  • 35
  • 2
  • 7
2
votes
1 answer

Google App Engine HTTPS listening ports 8443 or 3443

I am testing an application in the App Engine Flexible Environment, and at some point I will need to process some WebHooks sent on TCP ports 8443 or 3443. As long as I could test, App Engine load balancer (which deals with HTTPS connections) only…
2
votes
1 answer

ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error! Code: APP_CONTAINER_CRASHED /bin/sh: 1: exec: gunicorn: not found

I am deploying my Django project on google cloud app engine with my virtual environment I get the error ERROR: (gcloud.app.deploy) Error Response: [9] Application startup error! Code: APP_CONTAINER_CRASHED /bin/sh: 1: exec: gunicorn: not found i…
2
votes
1 answer

App Engine Flexible Deployment Issue: 403 Resource Error

we have been trying to deploy our nodejs code to app engine flexible but unable to as it shows a Resource Error. We have GSuite Organization account and are using it for deployments. This is the error: Updating service [default] (this may take…
1
vote
1 answer

User SSH into folder but can nano into any upper folder?

I did useradd -s /bin/rbash -d /var/www/html/directory USRNAME and on ssh login with USRNAME (including ssh key), it goes to directory and cd doesnt go back. So that works... but if they use nano /var/www/html/.env (before directory) it will say…
1
vote
0 answers

Go running on App Engine terminated by container exit (1)

I have a Go app running on Google App Engine. From the logs, I find this error container exit (1). Occasionally, you will see the upstream prematurely closed connection while reading response header from upstream, client: error when the container…
1
vote
2 answers

GCP AppEngine Permissions

I need to grant a GCP project user permissions so he is able to run cron tasks from the app engine console. I've been looking around and could not find suitable permissions for that. Any tip??
1
vote
1 answer

GAE automatic scaling does not scale down to 0

I have this "issue", that I don't really know if it is the supposed behaviour or not. I'm running some services in Google AppEnginge cloud platform. I apply this app.yaml config for automatic scaling: instance_class: F1 automatic_scaling: …