利用Service Fabric承载eShop On Containers的实现方法
从pet shop 到eshop on container都是microsoft在技术演进的路径上给开发者展示.net的开发能力和架构能力的sample工程,petshop的时候更多的是展现应用的分层架构,设计的抽象与模块间的通讯。到了eshop on container更多的关注在架构设计与微服务化的,下面我们先来看看eshop on container的架构图
在上图,我们可以看到后端服务分成了
1 identity microservice(验证服务)
2 catalog microservice(商品分类服务)
3 ordering microservice(订单服务)
4 basket microservice(购物车服务)
5 marketing microservice(市场营销服务)
6 locations microservice(地理位置信息服务)
在以前的分层架构中,通常这些服务都是以某一模块来体现的,为什么现在要将他们拆分成了各个服务呢?当我们从业务场景上面来看这些服务时,我们会发现每个服务的访问峰值时间区间、容量规划都是不一样的,甚至实现这些服务最方便最简单的技术栈都有可能是不一样的(当然强大的.net core无所不能,但是公司内不同业务线上的技术储备不一样,就有可能选择不同的技术实现)。这是因为如果我们都将这些模块整合到了一个程序或者服务中的时候,就会碰到在不同时间内服务高峰期扩展系统容量困难,要不就是资源不足,要不就是资源过剩。譬如抢购业务开始前大家提前个半小时登录了系统,这时候系统最忙的是登录模块,到了开始抢购时间,系统最忙的是订单模块。不采用微服务架构的话,半小时前准备给登录模块使用的资源不一定能够及时的释放出来给订单模块。如果两个模块都使用单一程序架构的话,很可能出现的情况就是抢购的业务把所有资源都占满了了,连其他正常访问系统的用户资源都被占用掉,导致系统崩溃。在讲究dev/ops的今天,开发人员和架构师需要更多的考虑硬件架构层面对程序应用带来的影响。
用service fabric来承载eshop on container微服务的方法一,通过service fabric直接管理docker
首先我们先到azure上申请一个container registry来承载eshop各个微服务程序的镜像(image).创建azure docker registry可以参考官方文档:
现在最新版本service fabric已经可以直接管理编排docker了。
1.创建一个类型为container的service
2.在servicemanifest.xml中描述清楚image所在路径
<codepackage name="code" version="1.0.0"> <!-- follow this link for more information about deploying windows containers to service fabric: https://aka.ms/sfguestcontainers --> <entrypoint> <containerhost> <imagename>eshopsample.azurecr.io/catalog:latest</imagename> </containerhost> </entrypoint> <!-- pass environment variables to your container: --> <environmentvariables> <environmentvariable name="httpgatewayport" value=""/> </environmentvariables> </codepackage>
这里非常简单,指定了image所在位置就好了,如果本身docker image里需要很多配置信息譬如:数据库链接串、其他服务的地址等等都可以在environmentvariables里面去配置。
3.配置registry的访问账号密码,需要在applicationmanifest.xml上面来配置
<servicemanifestimport> <servicemanifestref servicemanifestname="catalogservice_pkg" servicemanifestversion="1.0.1" /> <policies> <containerhostpolicies codepackageref="code" isolation="hyperv"> <repositorycredentials accountname="youraccount" password="xxxxxxxxxxxxx" passwordencrypted="false"/> <portbinding containerport="80" endpointref="catalogservieendpoint"/> </containerhostpolicies> </policies> </servicemanifestimport>
整个过程不会太复杂,只要配置好了catalog microserivce的servicemanifest.xm和applicationmanifest.xml文件之后,我们可以用同样的方法将其他服务一一配置完成,然后我们就可以将service fabric的配置publish到cluster上面了。
service fabric会自动根据配置在cluster上面pull image和将docker运行起来。非常简单
用service fabric承载eshop on container微服务的方法二:用service fabric的runtime运行eshop on container的微服务
service fabric本身就是个微服务的开发框架,现在已经直接支持了.net core 2.0了所以,我们更新了service fabric的sdk之后就可以直接创建.net core的服务了
eshop on container的代码都已经是一份成型的.net core 2.0的代码,所以不需要重新编写服务。
1.通过nuget添加最新的service fabric最新的sdk。
2.修改programe.cs,启动servicefabric runtime而不是直接启动asp.net webhost
public static void main(string[] args) { try { // servicemanifest.xml 文件定义一个或多个服务类型名称。 // 注册服务会将服务类型名称映射到 .net 类型。 // 在 service fabric 创建此服务类型的实例时, // 会在此主机进程中创建类的实例。 serviceruntime.registerserviceasync("catalog.api", context => new catalogapi(context)).getawaiter().getresult(); serviceeventsource.current.servicetyperegistered(process.getcurrentprocess().id, typeof(catalogapi).name); // 防止此主机进程终止,以使服务保持运行。 thread.sleep(timeout.infinite); } catch (exception e) { serviceeventsource.current.servicehostinitializationfailed(e.tostring()); throw; } }
3.编写
catalogapi 类用于启动webhost
internal sealed class catalogapi : statelessservice { public catalogapi(statelessservicecontext context) : base(context) { } /// <summary> /// optional override to create listeners (like tcp, http) for this service instance. /// </summary> /// <returns>the collection of listeners.</returns> protected override ienumerable<serviceinstancelistener> createserviceinstancelisteners() { return new serviceinstancelistener[] { new serviceinstancelistener(servicecontext => new kestrelcommunicationlistener(servicecontext, "serviceendpoint", (url, listener) => { serviceeventsource.current.servicemessage(servicecontext, $"starting weblistener on {url}"); return new webhostbuilder() .usekestrel() .configureservices( services => services .addsingleton<statelessservicecontext>(servicecontext)) .usecontentroot(directory.getcurrentdirectory()) .configureappconfiguration((buildercontext, config) => { ihostingenvironment env = buildercontext.hostingenvironment; config.addjsonfile("settings.json", optional: false, reloadonchange: true) .addjsonfile($"appsettings.{env.environmentname}.json", optional: true, reloadonchange: true); }) .usestartup<startup>() .useservicefabricintegration(listener, servicefabricintegrationoptions.none) .useurls(url) .usewebroot("pics") .build(); })) }; } }
4.编写servicemanifest.xml描述服务端口等信息
<?xml version="1.0" encoding="utf-8"?> <servicemanifest name="catalog.apipkg" version="1.0.3" xmlns="http://schemas.microsoft.com/2011/01/fabric" xmlns:xsd="http://www.w3.org/2001/xmlschema" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"> <servicetypes> <statelessservicetype servicetypename="catalog.api" /> </servicetypes> <!-- code package is your service executable. --> <codepackage name="code" version="1.0.3"> <entrypoint> <exehost> <program>catalog.api.exe</program> <workingfolder>codepackage</workingfolder> </exehost> </entrypoint> <environmentvariables> <environmentvariable name="aspnetcore_environment" value="development"/> </environmentvariables> </codepackage> <configpackage name="config" version="1.0.1" /> <resources> <endpoints> <endpoint protocol="http" name="serviceendpoint" type="input" port="5101" /> </endpoints> </resources> </servicemanifest>
5.修改appcationmanifest.xml增加几个服务的描述信息
添加serviceimport节
<servicemanifestimport> <servicemanifestref servicemanifestname="catalog.apipkg" servicemanifestversion="1.0.3" /> <configoverrides /> </servicemanifestimport>
在defaultservice中描述service
<service name="catalog.api" servicednsname="catalog.fabric.api"> <statelessservice servicetypename="catalog.api" instancecount="[catalog.api_instancecount]"> <singletonpartition /> </statelessservice> </service>
这样我们就可以将catalog这个服务改造成可以通过service fabric来管理的微服务了。通过publish,我们可看到几个服务都已经在service fabric下面接受管理和编排了。
访问localhost:5100
以上这篇利用service fabric承载eshop on containers的实现方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: vue地区选择组件教程详解