Feature-rich multi-user multi-user GAE application on the local host

I have a multi-module GAE application that is structured as follows:

  • Python27 module, which is a regular web application. This Python application uses the Datastore API. Normal, boring web application.
  • a Java module (another web application) that intercepts Datastore calls (calls made by the Python web application) and displays aggregated data about recorded Datastore calls.

I was able to deploy this application in the GAE cloud and everything is working fine.

However, problems arise when I want to run the application on the local host.

The Python module must be running using the Python SDK. The Java module must be running using the Java SDK. However, the 2 SDKs do not seem to use the same data store (I believe the 2 SDKs write / read to split files on disk).

It seems to me that the 2 SDKs also differ in promoting the implementation of Console Development Console. The Python SDK has a cleaner, more “newer” development console (similar to the new console.developers.google.com console) than the Java SDK, which has an old version of the Development Console (similar to the old appspot.com)

, : 2+ ( : Python, Java), Datastore? , Java Python Datastore, .

+4
1

, - , "appscale" ( , , Virtual Box ). community.appscale.com

(, ):

1- python localhost: 9000

2- Java localhost: 8000

3- python java, , Dev, (java localhost: 9000, python - localhost: 8000)

4- , @tx802, local_db.

, , , , .

+2

All Articles