From 57df40c191f528ed249858f7efaaf51f3ddb383d Mon Sep 17 00:00:00 2001 From: Submarinee <17373067316@163.com> Date: Sat, 2 Apr 2022 15:45:01 +0800 Subject: [PATCH 1/3] localize load_balancer.md --- content/zh/load_balancer.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 content/zh/load_balancer.md diff --git a/content/zh/load_balancer.md b/content/zh/load_balancer.md new file mode 100644 index 0000000000..a10d872ada --- /dev/null +++ b/content/zh/load_balancer.md @@ -0,0 +1,14 @@ +--- +title: 负载均衡器 +status: Feedback Appreciated +category: 概念 +--- + +## 是什么 +负载均衡器是一种在后端的一组服务器之间分配传入网络流量的方法。 该解决方案可以是基于软件或硬件的。 + +## 解决的问题 +这有助于解决与高可用性和分布式系统相关的问题。 在处理需要扩展到数十万用户的应用程序或服务时,通常需要将该应用程序分布在多个服务器上。 负载均衡器是路由流量的“交通警察”。 + +## 如何帮助 +负载均衡器将充当网络流量和客户端的前端。 它通常有多种方法来检查哪些服务器已启动并且处理请求的负载最低。 From a2da8821d707135a897a237f93f5988f5f510bda Mon Sep 17 00:00:00 2001 From: Submarinee <17373067316@163.com> Date: Wed, 6 Apr 2022 10:39:08 +0800 Subject: [PATCH 2/3] localize devops.md --- content/zh/devops.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/zh/devops.md diff --git a/content/zh/devops.md b/content/zh/devops.md new file mode 100644 index 0000000000..ac7e88c7d2 --- /dev/null +++ b/content/zh/devops.md @@ -0,0 +1,16 @@ +--- +title: 开发运维 +status: Completed +category: 概念 +--- + +## 是什么 +开发运维是一种方法论,其中团队拥有从应用程序开发到生产操作的整个过程,因此 DevOps。它不仅仅是实施一套技术,还需要文化和流程的彻底转变。 DevOps 需要一组工程师来处理小组件(相对于整个功能),从而减少交接——一个常见的错误来源。 + +## 强调的问题 +传统上,在具有 [紧密耦合](/tightly_coupled_architectures/) [单体应用程序](/monolithic_apps/) 的复杂组织中,工作通常分散在多个组之间。 这导致了多次交接和较长的交货时间。 每次组件或更新准备就绪时,都会将其放入队列中以供下一个团队使用。 因为个人只参与了项目的一小部分,这种方法导致缺乏所有权。 他们的目标是将工作交给下一个小组,而不是为客户提供正确的功能——明显的优先级错位。 + +到代码最终投入生产时,它经过了这么多开发人员,排了这么多队列,如果代码不起作用,很难追查问题的根源。 DevOps 颠覆了这种方法。 + +## 如何帮助 +让一个团队拥有应用程序的整个生命周期可以最大限度地减少交接,降低部署到生产中的风险,提高代码质量,因为团队还负责代码在生产中的执行方式,并且由于更多的自主权和所有权而提高了员工满意度。 From f7121b96826aed393ab681629e181408e234399e Mon Sep 17 00:00:00 2001 From: Submarinee <17373067316@163.com> Date: Wed, 6 Apr 2022 10:48:41 +0800 Subject: [PATCH 3/3] localize devops.md --- .idea/.gitignore | 8 ++++++++ .idea/glossory.iml | 9 +++++++++ .idea/inspectionProfiles/Project_Default.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 7 +++++++ content/zh/devops.md | 1 + 6 files changed, 39 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/glossory.iml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000000..73f69e0958 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/glossory.iml b/.idea/glossory.iml new file mode 100644 index 0000000000..5e764c4f0b --- /dev/null +++ b/.idea/glossory.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000000..03d9549ea8 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000000..d01a0a2298 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000000..7bc7558e92 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/content/zh/devops.md b/content/zh/devops.md index ac7e88c7d2..a2de473fbb 100644 --- a/content/zh/devops.md +++ b/content/zh/devops.md @@ -14,3 +14,4 @@ category: 概念 ## 如何帮助 让一个团队拥有应用程序的整个生命周期可以最大限度地减少交接,降低部署到生产中的风险,提高代码质量,因为团队还负责代码在生产中的执行方式,并且由于更多的自主权和所有权而提高了员工满意度。 +