Microservice on GAE+ Mix of Standard and Flexible GAE Services

前端 未结 1 695
刺人心
刺人心 2020-12-21 13:28

We have two separate projects as follows

  1. GAE Standard on JAVA runtime, let us say- APP1
  2. GAE Flexible on Python runtime, let us say- APP2
<
相关标签:
1条回答
  • 2020-12-21 14:15

    Yes, it is possible to have any mix of environments and languages as separate services inside of the same GAE application. While not explicitly mentioned, it is implied by the code isolation of services. From App Engine Services as microservices:

    Code can be deployed to services independently, and different services can be written in different languages, such as Python, Java, Go, and PHP.

    You just need to take care of:

    • deploying the default service first, see https://stackoverflow.com/a/42361987/4495081
    • deploying the app-level configurations shared by all services: dispatch, cron, queue, etc.
    0 讨论(0)
提交回复
热议问题