Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Putting a Cloud Endpoints API in a separate App Engine module

I am developing an App Engine app and plan to also provide an API. I would like to separate this API from the main site, so I'm trying to use the "modules" feature to separate both apps. The main site would be the "default" module, and the API would lie in the "api" module. However, I'm having troubles with this.

Right now my main app's YAML file is like this:

application: my-app
module: default
runtime: python27
api_version: 1

...

handlers:
# Root handler
- url: /.*
  script: main.app
  secure: always

...

And the API module YAML file, like this:

application: my-app
module: api
runtime: python27
api_version: 1

handlers:
# Endpoints handler
- url: /_ah/spi/.*
  script: api_main.app
  secure: always

...

On the development server, the app is served on port 8000, and the API on port 7998.

With this configuration, my API doesn't work. Whenever I try to access it using localhost:7998/_ah/api/explorer, I don't get any result. If I try to run an API request manually, I get the following error: {"error": {"message": "BackendService.getApiConfigs Error"}}.

What's strange is I'm also seeing the following lines in the development server logs:

INFO     2014-06-15 18:00:32,368 module.py:639] default: "POST /_ah/spi/BackendService.getApiConfigs HTTP/1.1" 500 -
INFO     2014-06-15 18:00:32,368 module.py:639] api: "GET /_ah/api/my-app/v1/events HTTP/1.1" 500 60

It seems like the API module is trying to POST data to the default module (as seen in the first line of logs).

Right now, the only workaround I found is to add the same handlers for /_ah/spi/.* in the default YAML file, but in this situation the separation between the main app and the API is not effective.

Can someone tell me if the configuration I'm trying to achieve is supported by Cloud Endpoints? Thank you very much!

like image 279
Romain Avatar asked Jun 15 '14 18:06

Romain


People also ask

How do I deploy API on App Engine?

Deploying versions to your App Engine application To deploy a version of your app with the Admin API: Upload your app's resources to Cloud Storage. Create a configuration file that defines your deployment. Create and send the HTTP request for deploying your app.

Is cloud endpoints an API gateway?

Cloud Endpoints is a user-managed service whereas API Gateway is a fully managed service. Both support the same OpenAPI definition format. The main difference is that API Gateway can route a request to multiple backends, but Cloud Endpoints can route traffic only to a single backend.

Can App Engine run containers?

Features. Customizable infrastructure - App Engine flexible environment instances are Compute Engine virtual machines, which means that you can take advantage of custom libraries, use SSH for debugging, and deploy your own Docker containers.


1 Answers

Same problem, I was able to make it work after may temptatives: the (only) way i found is to make the cloud endopoints module the default module. Then i have: on the dev server the two modules listening at different ports, you can see prot numbers on the log and on xxx.appspot.com: yourprojectid.appspot.com for the cloud endpoints and modulename-dot-yourprojectid.appspot.com for the other module

like image 109
chairam Avatar answered Nov 15 '22 05:11

chairam