-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs(faq): fix cluster link #557
Conversation
@OneNewLife, thanks for your PR! By analyzing the history of the files in this pull request, we identified @shaoshuai0102 and @atian25 to be potential reviewers. |
Codecov Report
@@ Coverage Diff @@
## master #557 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 26 26
Lines 632 632
=====================================
Hits 632 632 Continue to review full report at Codecov.
|
docs/source/zh-cn/faq.md
Outdated
@@ -15,7 +15,7 @@ title: 常见问题 | |||
|
|||
1. PM2 模块本身复杂度很高,出了问题很难排查。我们认为框架使用的工具复杂度不应该过高,而 PM2 自身的复杂度超越了大部分应用本身。 | |||
2. 没法做非常深的优化。 | |||
3. 切实的需求问题,一个进程里跑 leader,其他进程代理到 leader 这种模式([多进程模型](./advanced/cluster.md)),在企业级开发中对于减少远端连接,降低数据通信压力等都是切实的需求。特别当应用规模大到一定程度,这就会是刚需。egg 本身起源于蚂蚁金服和阿里,我们对标的起点就是大规模企业应用的构建,所以要非常全面。这些特性通过 PM2 很难做到。 | |||
3. 切实的需求问题,一个进程里跑 leader,其他进程代理到 leader 这种模式([多进程模型](./advanced/cluster-client.md)),在企业级开发中对于减少远端连接,降低数据通信压力等都是切实的需求。特别当应用规模大到一定程度,这就会是刚需。egg 本身起源于蚂蚁金服和阿里,我们对标的起点就是大规模企业应用的构建,所以要非常全面。这些特性通过 PM2 很难做到。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
恩
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
应该是 ./core/cluster-and-ipc.md
|
ping @OneNewLife |
`多进程模型` 的链接更改为 `./core/cluster-and-ipc.md`
@atian25 sorry,差点搞忘了,btw,英文版的 |
反正两个都没有... 链了再说 |
got it |
change the `cluster` link address to `./core/cluster-and-ipc.md`
docs/source/en/faq.md
Outdated
@@ -13,7 +13,7 @@ When you got some trouble, and want to find out what is the final config using a | |||
|
|||
1. PM2 itself is too complex to issue problems if any. | |||
2. Deep optimization could be difficlut to achieve if choosing PM2. | |||
3. Pattern like one leader process communicating with remote services, along with serveral follower processes delegating request to it (([Cluster](./advanced/cluster.md)), is a rigid demand for reducing connections and data exchange load, espeically when facing applications in very large scale. egg originates from Ant Financial Group and Alibaba Group, we start with applications in that scale at first, so we take these goals into consideration. All of these goals above could be hard to achieve with PM2. | |||
3. Pattern like one leader process communicating with remote services, along with serveral follower processes delegating request to it (([Cluster](./core/cluster-and-ipc.md)), is a rigid demand for reducing connections and data exchange load, espeically when facing applications in very large scale. egg originates from Ant Financial Group and Alibaba Group, we start with applications in that scale at first, so we take these goals into consideration. All of these goals above could be hard to achieve with PM2. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(([
和 ))
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Checklist
Affected core subsystem(s)
Description of change