I have a Google App Engine System, with GWT 2.6.1. The system has the following design requirements:
- A single instance of a server component, whose task is only to update the datastore from external data feeds. Scalability in this case is most certainly undesirable.
- A web app that uses the same datastore to serve the clients. This must be scalable by design.
I have both components developed and running separately, with the correct configurations for instances, etc.
My questions is simple: how do I configure the 2 server applications to use the same datastore?
Thanks in advance.