




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、Migrating Legacy Monoliths toCloud Native Microservices Architectures on KubernetesDan Kohn, Executive DirectorThispresentationisavailableat:/cncf/presentations每日免费获取报告1、每日微信群内分享5+最新重磅报告;2、每日分享当日华尔街日报、3、每周分享经济学人4、每月汇总500+份当月重磅报告(增值服务);扫一扫二维码关注公号回复:研究报告加入“起点财经”微信群。Cloud Native Comput
2、ing Foundation Non-profit, part of the Linux FoundationFounded December 2015 Current projects:OrchestrationMonitoringDistributed Tracing APILoggingService MeshRemote Procedure CallService DiscoveryContainer RuntimeContainer RuntimeNetworking APIService MeshDistributed Tracing Platinum members:2Today
3、 the Linux Foundation is much more thanLinuxSecurityNetworkingCloudAutomotiveBlockchainWebWe are helping global privacy and security through a program to encryptthe entire internet.We are creating ecosystems around networking to improve agility in the evolving software-defineddatacenter.We are creat
4、ing a portability layer for the cloud, driving de facto standards and developing the orchestration layer for allclouds.We are creating the platform for infotainment in the auto industry that can be expanded into instrument clusters andtelematics systems.We are creating a permanent, secure distribute
5、d ledger that makes it easier to create cost-efficient, decentralized businessnetworks.We are providing the application development framework for next generation web, mobile, serverless, and IoTapplications.We are regularly adding projects. For the most up-to-date listing of all projects visit http:
6、/3Alibaba and CNCF Alibaba is a gold member of CNCF Alibaba has been one of the earliest Chinese members of CNCF Alibaba has been an active contributor to theCNCF project containerd, the runtime inside DockerNon-Virtualized Servers: Sun (2000)Launching a new application? Buy a new ser
7、ver; or a rack of them!Building block of your application is physical serversNon- Virtualized Hardware5200Virtualization: VMWare (2001)Releases for server market in 2001 Popularizes virtual machines (VMs)Run many VMs on one physical machine, meaning you can buy fewer servers!Architectural building b
8、lock becomes a VMNon- Virtualized HardwareVirtualiza- tion200162000IaaS: AWS (2006)Amazon Web Services (AWS) creates the Infrastructure-as-a-Service market by launching Elastic Compute Cloud (EC2) in 2006Rent servers by the hour Convert CapEx to OpExArchitectural building block is also a VM, calleda
9、n Amazon Machine Image (AMI)Non- Virtualized HardwareVirtualiza- tionIaaS7200201206PaaS: Heroku (2009)Heroku popularizes Platform-as-a-Service (PaaS) with their launch in 2009Building block is a buildpack, which enables containerized 12-factor applications The process for building the container is o
10、paque, but: Deploying new version of an app is just:gitpushherokuNon- Virtualized HardwareVirtualiza- tionPaaSIaaS82002012062009Open Source IaaS: OpenStack (2010)OpenStack brings together an extraordinarily diverse group of vendors to create an open source Infrastructure-as-a-Service (IaaS)Competes
11、with AWS and VMWareBuilding block remains a VMNon- Virtualized HardwareOpen Source IaaSVirtualiza- tionPaaSIaaS92002012062009200Open Source PaaS: Cloud Foundry (2011)Pivotal builds an open source alternative to Herokus PaaS and launches the Cloud Foundry Foundation in late 2014Building block is Gard
12、en containers, which can hold Heroku buildpacks, Docker containers and even non-Linux OSesOpen Source PaaSNon- Virtualized HardwareOpen Source IaaSVirtualiza- tionPaaSIaaS10200020012006200920102011Containers: Docker (2013)Docker combines LXC, Union File System and cgroups to create a containerizatio
13、n standard adopted by millions of developers around the worldFastest uptake of a developer technology everEnables isolation, reuse and immutabilityOpen Source PaaSNon- Virtualized HardwareOpen Source IaaSVirtualiza- tionContainersPaaSIaaS112000200120062009201020112013Cloud Native: CNCF (2015)Cloud n
14、ative computing uses an open source software stack to:segment applications into microservices, packaging each part into its own containerand dynamically orchestrating those containers tooptimize resource utilizationOpen Source PaaSNon- Virtualized HardwareOpen Source IaaSCloud NativeVirtualiza- tion
15、ContainersPaaSIaaS1220002001200620092010201120132015What Have We Learned?Core Building Block: Servers Virtual Machines Buildpacks ContainersIsolation Units From heavier to lighter weight, in spin-up time and sizeImmutability From pets to cattleProvider From closed source, single vendor to open sourc
16、e, cross-vendor1314Avoid Vendor Lock-inOpen source software stack enables deploymenton any public, private cloud or hybrid cloudEnable Unlimited ScalabilityScales from several nodes on your laptop to tensof thousands of self-healing multi-tenant nodesIncrease Agility and MaintainabilityBy splitting
17、applications into microserviceswith explicitly described dependenciesImprove Efficiency and Resource UtilizationVia a central orchestrating process that dynamicallymanages and schedules microservicesAchieve ResiliencyTo failures of individual containers, machines, andeven data centers and to varying
18、 levels of demandCloud Native Enables High PerformanceHigh-performing teams deploy more frequently and have much faster lead times.They make changes with fewer failures, and recover faster from failures.3x2,555x24x24x faster recovery from failures200x200x more frequent deployments2,555x shorter lead
19、 times3x lower change failure rate2016 State of DevOps Report Infographic from Puppet20Greenfield ApplicationsCloud Native application architectures are thedefault choice for greenfield applicationsGreenfield Application Design The leading choice for cloud native orchestration is:Selected by top ent
20、erprises and startups like Bloomberg, Box, Redditand the New York TimesOne of the highest development velocity projects in the history of open sourceAmazing group of technology giants and startups cooperating to rapidly improve22In the long run we are all dead. Economists set themselves tooeasy, too
21、 useless a task, if in tempestuous seasons they can only tell us, that when the storm is long past, the ocean is flat again. John Maynard Keynestoo easy, too useless a taskThe Real World Consists of Brownfield ApplicationsThe gross world product is about $100 trillionand almost all of it flows throu
22、gh brownfield applications, which are generally monolithsNearly All Production Applications Are MonolithsHow About a Rewrite? The Second System Syndrome says that many rewrites end in failure The existing system evolves faster than the second onecan catch upStep One Is to Stop DiggingStep Two is Lif
23、t-and-Shift Your MonolithStatefulSets are helpful for providing stable, persistentstorage and unique network identifiers to your monolithChip Away at the MonolithAs different parts of your monolith needupgradesor improvements, consider chipping away at thatfunctionality and moving it to its ownmicro
24、serviceNew Functionality Can Go in New AppsWrite new functionality in separate applicationsoptimized for it, such as Node.js for OAuth or Go for performance sensitive tasksStart with Stateless ServicesKubernetes delivers the largest immediate value today forstateless services, such as application fr
25、ont end servers that need resiliency, load-balancing, autoscaling, etc.Transition Your Data Stores LastSupporting stateful services like Postgres or Redisremains the most challenging part of working with Kubernetes and should likely go last in any transitionMonoliths Are the Antithesis of Cloud Nati
26、veInflexible, tightly-coupled, brittleConsider Complementary ProjectsConsider the constellation of CNCF projects(and their competitors) to provide related servicesEnvoyJaegerCNIPrometheusOpenTracingFluentdLinkerdgRPCCoreDNScontainerdrktEvolving Your Monolith into a MicroserviceAnd Eventually You Have a CollectionKubernetes and GreenfieldAvoid the “soft bigotry of low expectations”of thinking that you need to do a greenfield rewrite to get the benefits of cloud nativeKubernetes and Brownfieldbrownfield applicationsMore Info
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 事业单位员工停薪留职合同范例
- 保姆工作合同样本
- 档口分租合同
- 医院临时工聘用劳动合同范文二零二五年
- 二零二五版管理人员聘用合同集锦
- 工程项目施工管理协议
- 二零二五顶管施工安全协议
- 高速铁路突发事件的处理-教案
- 弱电安全施工方案
- 部编人教版四年级语文上册《蝴蝶的家》教学设计
- 《Linux网络操作系统实用教程(CentOS8)第2版》全套教学课件
- 2015年919公务员联考《申论》政法干警河北卷及参考答案
- 幼儿园中班语言散文欣赏《芽》课件
- 汽轮发电机组轴系扭振在线监测、分析与保护系统研究
- 期中测试卷(1-4单元)(试题)-2023-2024学年六年级下册数学苏教版
- 医务人员不良执业行为记分管理制度
- 高中数学奥赛辅导教材(共十讲)
- 苏科版八年级数学下册常考点微专题提分精练难点特训(四)选填压轴50道(原卷版+解析)
- 《竞争对手的分析》课件
- 中国食品饮料市场调研报告
- 痛风中医护理常规
评论
0/150
提交评论