Is there possibility to host multiple applications with Google App Engine?

前端 未结 5 1453
清歌不尽
清歌不尽 2020-12-23 09:23

Do I need to create for each new Google App Engine app new project? Or is there other way to have multiple apps in one project?

EDIT: removed \"extra question\"

5条回答
  •  礼貌的吻别
    2020-12-23 09:55

    I think it is a good idea to have a picture (worth a thousand words) presenting Google App Engine services hierarchy.

    Picture taken from An Overview of App Engine page.

    So you have an application under your Google Cloud project. An application can have one or more services. Services are loosely coupled and are developed and maintained independently. For many people it might be confusing as they may call a service an application. Google changed naming convention to use microservices nomenclature.

    A service can have different versions (e.g. v1.0.1, v1.0.2, v2.0.0 etc.) and a version can have multiple instances that handle newtwork traffic.

    Obviously there are limitations for number of services, versions and instances and they depend on region and free / paid version as specified in An Overview of App Engine.

提交回复
热议问题