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
85 questions
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
  • 69
  • 1
  • 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
  • 82,560
  • 49
  • 190
  • 305
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
3 answers

App Engine - subdomain pointing to particular service

I have two subdomains registered in my App Engine application: service-a.my-app.com service-b.my-app.com I have added all the records (CNAME, A) on the server. I have three services in my GAE: default service-a service-b And I want each…
jrfoehn
  • 57
  • 6
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,539
  • 1
  • 13
  • 29
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,399
  • 1
  • 14
  • 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,512
  • 2
  • 13
  • 31
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,381
  • 2
  • 27
  • 43
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
  • 509
  • 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…
1
vote
1 answer

How to prevent 'finished' GWT-modules from recompiling when deploying to GAE?

Is there something I can do to not have all my modules recompiled every time I hit 'Deploy to GAE'? (Like when I don't touch GWT or client-side at all.) It would be nice to see 'module not modified, skipping...' sometimes, instead of 'compiling 12…
Jaroslav Záruba
  • 4,210
  • 4
  • 34
  • 50
1
vote
1 answer

Pycharm multiple modules Run server

I'm trying to use multiple modules in google app engine. i try using this source code: https://github.com/GoogleCloudPlatform/appengine-modules-helloworld-python but i cant seem to find a way to run from pycharm with all the .yaml loaded, so only…
etlsh
  • 633
  • 7
  • 16
1
vote
1 answer

share datastore python between modules in google app engine

Im studying about GAE, Im trying to build a app with 2 module: default module and count module. Count module increaces value of Count object in datastore by 1 every min. default module access Count object and show its current value. I setup default…