Hosting in GAE and database on different servers

I want to host my java web application in GAE and my database on another server (GoDaddy). Google Datastore is free for only 6 months, so I would like to use a database with different hosting (goDaddy). Is this possible (in the case of GAE)?

I can use my hosting database (goDaddy) from my local system, but when I load the application in GAE, this does not work.

+4
source share
1 answer

If your database provides a REST API for remote connections, then this should not be a problem. If you can access your database using Sockets (for example, the java.net package), this is not possible.

In addition, the Google App Engine provides a free quota based on usage, not time. See App Engine Quotas for more information.

+2
source

Source: https://habr.com/ru/post/1446451/


All Articles