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

PHP-FPM socket reuse causes errors

I have a webserver container running in App Engine which serves a REST API. I've tried to go for a relatively standard implementation - nginx + PHP-FPM using TCP sockets (I haven't gotten a unix socket to work for some reason). The DB connection is…
user41758
1
vote
3 answers

How to config app.yaml file for appengine using sanic framework with python 3.5+

I'm new to GCP, we had chosen sanic framework to make things run smoother. Sanic supports python 3.5+ so we are going with flexible environment on appengine. Currently I'm trying to deploy "Sanic" Hello world (Get started) application to…
1
vote
1 answer

Google App Engine Flexible Environment custom domain redirects to appspot-preview.com

I have setup a custom domain with a SSL certificate like it is indicated in this page, but when I go to "mycustomdomain".com I get redirected to *.appspot-preview.com. In that page there is a section called Before you begin indicating that: To use…
1
vote
1 answer

how SNI works with google app engine?

i found that google app engine support multiple custom domain in single google app engine application. possibly it can be done using multi-tenancy domain/namespace. and i want to use ssl for those multiple custom domain. i found its possible by…
Al Amin
  • 13
  • 3
1
vote
2 answers

Google app engine with custom domain shows redirected URLs

I'm using Google App Engine with custom domain. (Flexible type with nodejs) When I completed settings it with https://cloud.google.com/appengine/docs/python/console/using-custom-domains-and-ssl?hl=en , I could visit my site with custom domain…
1
vote
1 answer

Stackdriver log quota warning - 5GB limit

We recently noticed this in our log viewer for our app-engine flexible apps. You have 12 days left in your Stackdriver Premium trial. Your logs usage is 5.96 GB month to date for this project. An ingestion quota of 5 GB per month will be enforced…
user1528493
  • 119
  • 2
1
vote
1 answer

Changing to env:flex in app.yaml introduces a redirect

After receiving an email from google reporting that the vm: true configuration in appengine flexible environments should be replaced by env: flex, apps that use custom domains are now responding with a HTTP 307 temporary redirect, which points to…
1
vote
1 answer

Memory available in Google App Engine flexible environment

GAE flexible environment lets you specify the resources your container needs. For example: resources: cpu: 0.5 memory_gb: 1.3 disk_size_gb: 10 This will allocate g1-small instances with 1.7GB of memory. However, if I raise memory_gb to 1.5,…
Piotr
  • 153
  • 2
  • 7
1
vote
1 answer

GAE Flexible Environment automatic scaling spins up way too many instances for observed load

I'm running a Docker container in the GAE Flexible Environment beta and have my auto-scaling configured like so: automatic_scaling: min_num_instances: 2 max_num_instances: 10 cool_down_period_sec: 60 cpu_utilization: target_utilization:…
Piotr
  • 153
  • 2
  • 7
1
vote
1 answer

Loss of service in GAE's deployment method using Traffic Migrate?

I want to know if there is any possible downtime in GAE's method of "silent" deployments. I'm using inbound_services: - warmup and deploying apps with -no-promote --no-stop-previous-version flags before going to App Engine and migrating traffic…
Vladimir
  • 179
  • 1
  • 1
  • 6
1
vote
1 answer

GCP Cloud Console throws a 500 error while loading the custom domains tab

After setting up a wildcard mapping on one of my app's custom domains (following the instructions in the docs here, the "custom domains" tab under app engine >> settings in the cloud console won't load with a message "failed to load". Looking in the…
ACEGL
  • 11
  • 4
1
vote
1 answer

GAE Front-end instance hours are increasing without the app being used (python-backend)

My GAE Front-end instance hours keep increasing even though the application is no being used and there are no instances running (because i manually shut them down!!). My question has several sub-questions to it, here they are: What is the major…
1
vote
1 answer

How can I control GCE LB to create max N TCP connections with my backend instance?

For each request that a client makes through a load balancer, the load balancer maintains two TCP connections. One connection is with the client and the other connection is to a back-end instance. GCE LoadBalancer is creating lots of TCP connections…
1
vote
1 answer

Google Cloud App Engine hosted page title extractor returns 403 Forbidden in cases

I have a URL shortener/traffic analysis service hosted in a Google App Engine (GAE) project on Google Cloud (GC). When a URL is submitted for shortening, it performs a Python urllib2.urlopen to extract the page and get its title, which is uses to…
1
vote
1 answer

Google App Engine The SSL certificate provided could not be inserted. xn- domain

I try installing Comodo Certificate that I ordered in SSLs.com on Google App Engine Custom Domain. But I have error: The SSL certificate provided could not be inserted. I checked that my key is 2048-bit length: # openssl rsa -in myserver2.key.pem…