Questions tagged [gae-module]

The GAE module enables Google App Engine support for your application. It wraps commons GAE services in play basic services whenever possible.

App Engine Modules (or just "Modules" hereafter) let developers factor large applications into logical components that can share stateful services and communicate in a secure fashion. A deployed module behaves like a microservice. By using multiple modules you can deploy your app as a set of microservices, which is a popular design pattern.

For example, an app that handles customer requests might include separate modules to handle other tasks, such as:

  • API requests from mobile devices
  • Internal, admin-like requests
  • Backend processing such as billing pipelines and data analysis
86 questions
1
vote
1 answer

What are the possible values for X-AppEngine-TaskRetryReason header in Google app engine request headers?

Basically, I am facing an issue while n number of taskqueues are running in the Google Cloud Platform. There is no error in code or server but the execution of the taskqueues got terminated due to instance unavailability by which it will trigger a…
1
vote
2 answers

How to update file when hosting in Google App Engine?

I have node js server service running on a Google Cloud App Engine. I have JSON file in the assets folder of the project that needs to update by the process. I was able to read the file and configs inside the file. But when adding the file getting…
LReddy
  • 117
  • 17
1
vote
1 answer

How to make a module accessible for all applications including GAE deployment process

I have a Python module containing some utils that all my GAE applications may use. I created it myself. It is n a separate folder and I sometimes want to update its code, make refactorings etc. Every application I create, can take use functions from…
Sergei Basharov
  • 51,276
  • 73
  • 200
  • 335
1
vote
1 answer

Google App Engine Flex Health Checks on Docker Containers

So I'm working on GAE Flex for my Craft CMS app. I'm using nginx and a mysql_tunnel on supervisor for this services. I'm trying to configure the Health Checks Google offers to make sure that the services are up, but for some reason it is not…
1
vote
1 answer

Create scheduled events in Google Cloud Platform

I am creating an IOT device where the user can set a particular time to trigger an action by an IOT device. For eg: At 01:00 PM, the Air Conditioner starts automatically. I am using Google Cloud Platform. I checked the Cron job in GCP, which…
Sandy
  • 79
  • 2
  • 8
1
vote
0 answers

AppEngine Flexible with custom runtime - logging challenge

Let's say my custom runtime uses a container with a bash process in it. #snippet ADD crontab /etc/cron.d/zip-splitter RUN crontab /etc/cron.d/zip-splitter RUN chmod 0644 /etc/cron.d/zip-splitter CMD ["/var/local/zip-splitter/entry.sh"] In entry.sh…
jldupont
  • 93,734
  • 56
  • 203
  • 318
1
vote
1 answer

Dynamically choose which properties to write to Appengine Datastore

Has anyone tried to dynamically select which properties they want to write to an entity on appengine? For example: I have a web form with 5 fields, and any given user will fill out some subset of those fields. I POST only the fields with data to the…
David Kamenetz
1
vote
0 answers

Incomplete/cropped entries in google app engine logs

While looking through my appengine standard python app logs, I started noticing entries with no response status/data declared 162.158.92.77 - - [19/May/2017:17:18:20 +0300] "GET /v1/projects/explore/ HTTP/1.1" - - - "Mozilla/5.0 (Macintosh; Intel …
glmvrml
  • 1,612
  • 2
  • 14
  • 31
1
vote
2 answers

Google App Engine modules / services app deploy from Eclipse

Since a week my Google App Engine project fails to deploy to the Google server. It is an EAR project (with modules / services) which does not use maven. I have always deployed it to the remote server using the 'Servers' panel in Eclipse (JEE, or…
rakensi
  • 1,437
  • 1
  • 15
  • 20
1
vote
1 answer

Google App Engine; is it possible to change scaling configuration at runtime without redeploying the app?

For applications deployed on Google App Engine, is it possible to change the scaling configuration at runtime without redeploying the app? Changing the appengine-web.xml and redeploying is an option, however was wondering if this can be done through…
1
vote
2 answers

What does "Failed to provision bridges" mean?

Google search doesn't seem to have heard of this error, but I'm unable to escape it: ERROR: (gcloud.preview.app.deploy) Server responded with code [400]: Bad Request Unexpected HTTP status 400. Failed Project Preparation…
rrowland
  • 2,734
  • 2
  • 17
  • 32
1
vote
1 answer

Can't find module when generating discovery docs for google app engine in python

I am trying to generate Google App Engine discovery docs for iOS and it's giving me the following error: Traceback (most recent call last): File "/usr/local/google_appengine/endpointscfg.py", line 133, in run_file(__file__,…
1
vote
1 answer

dispatch.yaml not working for task queue when defaulting production environment

I started teasing apart an app into two modules and successfully have the app running on App Engine. I can verify the new configuration by using the module/version specific URLs to drive traffic and see requests and task queue events processed…
Greg
  • 2,559
  • 4
  • 28
  • 46
1
vote
1 answer

Google App Engine upgrading part by part

I have a complex appengine service that was written in PHP, now I want to migrate it to Python part by part. Let's say that my service has 2 parts: /signIn/.... and /data/.... I just want to migrate /signIn/ part first, then /data/ later. However,…
Tarzan
  • 529
  • 3
  • 14
1
vote
3 answers

Unable to find/modify the Dockerfile of a Google App Engine Managed VM that uses a standard runtime (python27)

I want to modify the Dockerfile of a Google App Engine managed VM that uses a standard runtime (python27). I want to do this to add a C++ library that needs to be called to implement an HTTP request. This library is pretty much the only addition I…