Azure Service Fabric

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Azure Service Fabric相关的知识,希望对你有一定的参考价值。

Concept:

  • Node - a smallest unit within a cluster to provide compute capablity
  • Nodetype - a logical naming of the tier / layer in the architecture so it can easily tag to the node, e.g. Webtier (UI + API) and ServiceTier(Backend)

Highlevel SF

SF provide whole stack for managing deployment of containers (regardless if it node or docker) and provided high availability support using cluster, upgrade individually.

Below example is a aution microservice which have different architectual layers.

  • Website (stateless)
  • API(stateless)
  • Auction (stateful)

Traditionally each tier will take up one node and form a cluster, SF provides flexiblity of placement where you can group layers in same node in the same

技术分享 技术分享

Code Structure

A root level of Application project will be created accompany with creating a new sf project  for individual service, either it is stateless or stateful service.

 

技术分享  技术分享

 

以上是关于Azure Service Fabric的主要内容,如果未能解决你的问题,请参考以下文章

aZURE Service Fabric

Azure Service Fabric:无法运行本地 Service Fabric 群集

手把手:使用service principal连接Azure Media Service

Azure Service Fabric 群集端点不可访问

为 Service Fabric 配置 Azure 部署

如何将Azure DevOps中的代码发布到Azure App Service中