面向.NET开发人员的Dapr——前言

Foreword

前言

With the wave of cloud adoption well underway, there is a major shift happening towards “cloud native” development, often built with microservice-architectures. These microservices are both stateless and stateful, and run on the cloud and edge, embracing the diversity of languages and frameworks available today. This enterprise shift is driven by both the market forces of faster time to market, as well as the scale and efficiencies of building services for the cloud. Even before COVID-19, cloud adoption was accelerating for enterprises and developers were being asked to do even more to deliver on building these distributed system applications, and that has only accelerated since. Developers in enterprises seek to focus on business logic, while leaning on platforms to imbue their applications with scale, resiliency, maintainability, elasticity, and the other attributes of cloud-native architectures, which is why there is also shift towards serverless platforms that hide the underlying infrastructure. Developers should not be expected to become distributed systems experts. This is where Dapr steps in to help you, whether you are building on infrastructure such as Kubernetes, or on a serverless platform.

随着云采用浪潮的发展,我们在 "云原生" 开发方面发生了重大转变,通常使用微服务体系结构构建。这些微服务可以是无状态也可以是有状态的,可以在云上运行也可以在边缘上运行,从而支持当今可用的各种语言和框架。驱动企业转型因素是,更快速地回应市场需求,以及构建云服务的规模和效率。即使在 COVID-19 之前,企业和开发人员仍需要做更多的工作来交付这些分布式系统应用程序,而自那以后,云的采用速度就加快了。企业中的开发人员寻求专注于业务逻辑,同时学习依靠平台为其应用注入扩展、弹性、可维护性、灵活性以及云原生架构的其他特征,这就是为什么也出现了向无服务平台(隐藏基础设施架构)的转变原因。不应期望开发人员成为分布式系统专家。 无论您是在 Kubernetes 等基础设施上构建,还是在无服务平台上进行构建,Dapr 都在此介入帮助您。

Dapr is designed as an enterprise, developer-focused, microservices programming model platform with the mantra “any language, any framework, run anywhere”. It makes building distributed applications easy and portable across any infrastructure, from public-cloud, through hierarchical edge, and even down to single node IoT devices.  It emerged from both our experiences building services in Azure as well as time spent working with customers building applications on Azure Kubernetes Service and Azure Service Fabric. Over and over, we saw common problems that they had to address. It became clear that there was a need to provide a “library” of common microservice best practices that developers could use, not only in new greenfield applications, but also to aid in the modernization of existing applications. In the containerized, distributed, and networked cloud native world, the sidecar model has emerged as the preferred approach, in the same way DLLs are preferred in the client/server generation. Using Dapr’s sidecar and APIs give you, as a developer, all the power of distributed systems functionality, with the ease of a single HTTP or gRPC local call.

Dapr 是一种以开发人员为中心的企业级微服务编程模型平台,其口号是"任何语言、任何框架、随处运行"。它使得跨任何基础设施、公有云、分层边缘,甚至是单节点 IoT 设备构建分布式应用程序变得简单、可移植。它体现我们在 Azure 中生成服务的经验,以及与客户在 Azure Kubernetes 服务和 Azure Service Fabric 上构建应用程序所做的努力。同时,我们看到了他们必须解决的常见问题。显然,需要提供一种可供开发人员使用的微服务最佳实践的"库",不仅可以用于开发新应用,还可以帮助应对现有应用程序的现代化改造。在容器化、分布式和网络云原生世界中,边车模式已成为首选方式,其方式与在客户端/服务器生时代中首选 Dll 的方式相同。使用 Dapr 的边车和 Api,为开发人员提供了分布式系统功能的所有能力,只需使用 HTTP 或 gRPC 本地调用。

To address the wide range of scenarios that developers face, Dapr provides features such as state management, service to service invocation, pub/sub and integration to external systems with I/O bindings, which are based on the triggers and bindings of Azure Functions. These in turn take advantage of Dapr’s component model which allows you to “swap out”, say different underlying state stores, without having to change any code, making code more portable, more flexible and allowing for experimentation of what best suits your needs. Developers don’t need to learn and incorporate service SDKs into their code, worry about authentication, secret management, retries or conditional code that targets specific deployment environments.

为了解决开发人员面临的各种情况,Dapr 提供了状态管理、服务到服务调用、发布/订阅和与外部系统的集成(基于输入/输出绑定)。它们利用了 Dapr 的组件模型,允许您可以替换(例如不同的底层状态存储),而无需更改任何代码,使代码更具可移植性,更具灵活性,并允许实验什么最适合你的需要。开发人员无需了解服务 Sdk 并将其合并到代码中,无需担心身份验证、机密管理、重试或特定部署环境相关的条件代码。

This book shows how Dapr reduces your development time and overall code maintenance by incrementally “Daperizing” the canonical .NET reference application, eShop. For example, in the original eShop implementation, significant amounts of code were written to abstract between Azure Service Bus and RabbitMQ for publishing events between services. All this code can be discarded and simply replaced with Dapr’s pub/sub API and component model which had an even wider range of pub/sub brokers, rather than just two. Dapr’s actor model, when used in the reworked eShop application, shows the ease of building long running, stateful, event driven, workflow applications with all the difficulties of concurrency and multi-threading removed. By the end of this book, you will see the drastic simplification that Dapr brings to your application development, and I firmly believe all developers embarking on a cloud native app building journey should leverage Dapr.

本书说明了 Dapr 如何逐步简化 标准.NET 参考应用程序 eShop,来缩短开发时间和总体代码维护。例如,在原始 eShop 实现中,编写大量代码来抽象Azure 服务总线和 RabbitMQ,以在服务之间发布事件。所有这些代码都可以丢弃,只需替换为 Dapr 的 订阅/发布 API 和组件模型,订阅/发布代理有很多种,不只是两个。在修订的eShop 应用程序中使用时,Dapr 的执行组件模型可让你轻松构建长时间运行、有状态、事件驱动的工作流应用程序,同时移除了并发和多线程处理的所有难题。本书结束后,您将看到 Dapr 为您的应用程序开发带来的极大简化,我坚信所有踏上云原生应用构建之旅的开发人员都应该利用 Dapr。

We publicly announced Dapr with the v0.1 release in Oct 2019 and now, a year and half later, I am thrilled to say that Dapr is ready for production usage with the v1.0 release. Getting Dapr to v1.0 has truly been a community effort. It has been amazing to see the open-source community coalesce around Dapr and grow since it was first announced – from 114 contributors in October 2019 to over 700 in early 2021 - a six-fold increase in 16 months! Contributions to the project have gone to every Dapr repo and have ranged from opening issues, commenting on feature proposals, providing samples, and of course contributing code. The parts of the project community members have contributed to the most include the Dapr runtime, docs, CLI, SDKs and the creation of a rich ecosystem of components. Maintaining this openness is critical to Dapr’s future.

我们已在2019年10月推出了 Dapr 的0.1 版发布,现在,我兴奋不已说 Dapr  V1.0已准备就绪以供生产使用。发布Daprv1.0确实是社区努力的结果。自Dapr首次宣布以来,Dapr开源社区联合起来并不断发展壮大,令人惊叹——从2019年10月的114个贡献者增加到2021年初的700多个——在16个月内增长了6倍!对项目的贡献已提交到每个 Dapr 存储库,包括打开问题、评论功能提案、提供示例,以及贡献代码。 项目社区成员贡献最大的部分包括 Dapr 运行时、文档、CLI、SDK 和创建丰富的组件生态系统。保持这种开放性对Dapr的未来至关重要。

Dapr is really just getting started, though, and you should expect to see more Dapr capabilities and more support for Dapr in Azure services. I hope that you will take advantage of Dapr to enable you to focus on your core business logic and accelerate your microservices development. I am are excited to have you join us in the Dapr community on this journey at https://github.com/dapr/ and on Discord https://aka.ms/dapr-discord.

不过,Dapr 刚刚开始,你应该期待更多的 Dapr 功能,并在Azure 服务中为 Dapr 提供更多支持。我希望您能够利用 Dapr 来使您能够专注于核心业务逻辑,并加速微服务开发。我很高兴有你加入我们Dapr社区的:https://github.com/dapr/ 旅程和https://aka.ms/dapr-discord 。

Modern distributed systems are complex. You start with small, loosely coupled, independently deployable services. These services cross process and server boundaries. They then consume different kinds of infrastructure backing services (databases, message brokers, key vaults). Finally, these disparate pieces compose together to form an application.

现代分布式系统非常复杂。首先,你从小的、松散耦合且可部署的服务开始。这些服务跨进程和服务边界。然后,它们使用不同类型的基础设施支持服务 (数据库、消息代理、key vault) 。最后,这些分散的部分组合在一起构成应用程序。

Mark Russinovich Azure CTO and Technical Fellow Microsoft

马克·鲁西诺维奇 Azure CTO微软技术研究员

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/301600.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

美国返还中国文物,阿里谣言粉碎机获奖,教育部规范研究生培养,腾讯严打微信跑分活动,推动降低港澳漫游费,这就是今天的大新闻。...

今天是3月1日农历正月廿五今天星期五相信大家都很舍不得放下工作下面是今天的大新闻美国返还361件中国文物(中国日报)当地时间2月28日,美国政府向中国返还361件(套)流失文物。这些中国流失文物,由美国联邦调…

Linux怎么更新镜像,利用 Zsync 更新已有的 Ubuntu ISO 镜像

对! 是升级iso镜像, 不是升级系统. 从旧的镜像升级到新的镜像.可能有点迟了~大家都down好了镜像~ 我现在才有心情和时间写blog哦~由alpha的iso升到正式版都可以. 呃~ 当然,估计由alpha开始的话,下载量也与直接下载正式版区别不大~这么多人下载, 速度当然会慢喇~ 用zsync来升级镜…

你有做 Code Review 吗?

在代码的编写中有一个很重要的环节,经常会被忽视,那就是 Code Review ,据说在 Facebook、Google 这种互联网大公司,要求每一个提交都必须通过审查,对于每个工程师来说 Code Review 是一项十分重要的工作,甚至比写代码本…

PhotoShop CS5制作残旧的印章效果

编者按:不少网友喜欢个性印章效果,因此常常搜索个性印章在线制作。其实,Photoshop就可以完成个性印章制作。事实上,使用 Photoshop制作残旧的印章效果文字有多种方法,例如可以使用云彩滤镜。本文作者介绍了另一种实现方…

限时秒杀┃秒杀90%的玩具,让孩子爱上科学的彩虹实验2来了!

▲数据汪特别推荐点击上图进入玩酷屋之前小木有推荐过“彩虹实验”,这款是可以让孩子在探索中能够独立思考,主动地构建知识库,培养创造力。(传送门)让孩子们在家开展科学游戏,既能提升动手能力,…

linux accept过程,Linux协议栈accept和syn队列问题

161310 cient端收到synack后,根据ack值,使用SACK算法,只重传最后一个ack内容。Server端收到数据包,由于accept队列仍然是满的,所以server端处理也只是标记acked,然后返回。162884 client端等待几秒后&#…

感想四

2019独角兽企业重金招聘Python工程师标准>>> 随着年龄的增长,对人对事物的认知就越真,包括知识也是如此。 很多年前,在软件开发领域中发生了一个有趣的转变,软件变成了系统中最为昂贵、最为重要的部分。从…

.NET Worker Service 作为 Windows 服务运行及优雅退出改进

上一篇文章我们了解了如何为 Worker Service 添加 Serilog 日志记录,今天我接着介绍一下如何将 Worker Service 作为 Windows 服务运行。我曾经在前面一篇文章的总结中提到过可以使用 sc.exe 实用工具将 Worker Service 安装为 Windows 服务运行,本文中我…

MFC的Button和Static控件

最近要写一个MFC的对话框程序,发现要把MFC的对话框写的有色彩点并不容易,不像在C#里设置属性指就好,而是要自己去写一些代码完成对话框的绘画操作。比如一个简单的鼠标移入、移出操作,都要自己去写代码。由于我只用到了Button和St…

私有云存储 linux,搭建nextcloud私有云存储网盘

本文将要为您介绍的是搭建nextcloud私有云存储网盘,具体完成步骤:简介:搭建个人云存储一般会想到ownCloud,堪称是自建云存储服务的经典。而Nextcloud是ownCloud原开发团队打造的号称是“下一代”存储.真正试用过后就由衷地赞同这个Nextcloud:…

我报了个税,隐私就被扒光了?

全世界只有3.14 % 的人关注了数据与算法之美1月14日,据外媒报道,美国参议院金融委员会正在向美国财政部和国税局施压,要求他们采取网络安全措施。相关数据显示,2015年美国约有700,000名纳税人身份信息遭到泄露,为了解决…

C# 外接(网口)双摄像头视频获取

【注意事项】------------------------------------1. 更新设备网络SDK时,SDK开发包【库文件】里的HCNetSDK.dll、HCCore.dll、PlayCtrl.dll、SuperRender.dll、AudioRender.dll、HCNetSDKCom文件夹、ssleay32.dll、libeay32.dll、hlog.dll、hpr.dll、zlib1.dll、lo…

JavaScript中使Promise模式进行异步编程

Promises 其中的一种模式就是promise,它代表了一种潜在地、长时间运行但不必返回完成操作的结果。与阻塞并长时间等待运行计算完成不同,这种模式返回一个代表承诺(promised)结果的对象。 例如,需要创建一个请求到第三方…

Visual Studio 2022 Preview 1 和.NET 6 Preview 5 正式发布

具有里程碑意义的Visual Studio 2022 Preview 1正式发布,重点是64位,而没有增加新功能,并且同时也发布了.NET 6 Preview 5。https://devblogs.microsoft.com/visualstudio/visual-studio-2022-preview-1-now-available/https://devblogs.micr…

每日一笑 | 你知道你爸妈当年是怎么在一起的吗?

全世界只有3.14 % 的人关注了数据与算法之美(图片来源于网络,侵权删)

linux ll 转数组,List、Set、数组之间的转换

★数组转Collection使用Apache Jakarta Commons Collections:importorg.apache.commons.collections.CollectionUtils;String[] strArray {"aaa","bbb","ccc"};List strList newArrayList();Set strSet newHashSet();CollectionUtil…

c3po 问题解决

参数及问题解决http://www.blogjava.net/ashutc/archive/2011/03/16/346365.html 转载于:https://my.oschina.net/taomac/blog/118070

每日一笑 | 你知道程序媛最“大”的烦恼是什么吗?

全世界只有3.14 % 的人关注了数据与算法之美(图片来源于网络,侵权删)

什么?他居然想在DLL中放毒!

dotnet/runtime有一个issue[1]讨论了如何使用ModuleInitializer投放恶意代码,但是微软的开发经理表示不背这个锅! 什么是ModuleInitializer?ModuleInitializerAttribute[2]是在.NET5.0中新增加的API。它的作用是应用于编译中的任意数量的静态…

c语言复数的运算实验报告,C语言复数的运算(实验报告).doc

实验报告题目:复数的四则运算班级: 13信管 姓名:白浩然 学号:201340403034 完成日期:2014.05.21一、需求分析1.本演示程序中复数由两个相互之间存在次序关系的实数构成。2.演示程序以用户和计算…