File tree 2 files changed +6
-6
lines changed
docs/functional-components
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ with only a subset of sections having recommendations):
57
57
- [ Authentication and Authorization] ( ./docs/functional-components/auth.md )
58
58
- [ Data Caching] ( ./docs/functional-components/data-caching.md )
59
59
- [ REST API Development] ( ./docs/functional-components/rest-api-development.md )
60
- - [ Scaling and Multi-threading] ( ./docs/functional-components/scaling-multi-threading.md )
60
+ - [ Load Balancing, Scaling and Multi-threading] ( ./docs/functional-components/scaling-multi-threading.md )
61
61
- [ Consuming Services] ( ./docs/functional-components/consuming-services.md )
62
62
- [ Node versions/images] ( ./docs/functional-components/nodejs-versions-images.md )
63
63
- [ Transactions_handling] ( ./docs/functional-commponents/transaction-handling.md )
@@ -84,7 +84,6 @@ with only a subset of sections having recommendations):
84
84
- [ Package Development] ( ./docs/development/npm-package-development.md )
85
85
- [ Secure Development Process] ( ./docs/development/secure-development-process.md )
86
86
- [ Serverless] ( ./docs/development/serverless.md )
87
- - Load-balancing
88
87
89
88
- Operations
90
89
- Monitoring
Original file line number Diff line number Diff line change 2
2
sidebar_position : 9
3
3
---
4
4
5
- # Scaling and Multi-threading
5
+ # Load balancing, Scaling and Multi-threading
6
6
7
7
Node.js is said to be ` single-threaded ` . While not quite true, it reflects that
8
8
most work is done on a single thread running the event loop. The asynchronous
@@ -56,9 +56,10 @@ We don't recommened any specific components at this time.
56
56
are recommended versus multiple processes in the same container.
57
57
58
58
- delegate management of the containers supporting
59
- the application and the routing of requests to those containers
60
- to the highest layer possible. For example, if the application
61
- is deployed to kubernetes, do not use tools like the
59
+ the application and the load balancing/routing of requests
60
+ to those containers to the highest layer possible. For
61
+ example, if the application is deployed to kubernetes,
62
+ do not use tools like the
62
63
[ Cluster API] ( https://nodejs.org/api/cluster.html ) to manage
63
64
requests within a container, instead rely on the facilities
64
65
provided by kubernetes. In our experience this has been
You can’t perform that action at this time.
0 commit comments