Skip to content

Commit ba1bb28

Browse files
authored
doc: fold load balancing into scaling/threading (#141)
It looks like we have already covered what we have to say about load balancing in the existing section Signed-off-by: Michael Dawson <[email protected]>
1 parent d07069e commit ba1bb28

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ with only a subset of sections having recommendations):
5757
- [Authentication and Authorization](./docs/functional-components/auth.md)
5858
- [Data Caching](./docs/functional-components/data-caching.md)
5959
- [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)
6161
- [Consuming Services](./docs/functional-components/consuming-services.md)
6262
- [Node versions/images](./docs/functional-components/nodejs-versions-images.md)
6363
- [Transactions_handling](./docs/functional-commponents/transaction-handling.md)
@@ -84,7 +84,6 @@ with only a subset of sections having recommendations):
8484
- [Package Development](./docs/development/npm-package-development.md)
8585
- [Secure Development Process](./docs/development/secure-development-process.md)
8686
- [Serverless](./docs/development/serverless.md)
87-
- Load-balancing
8887

8988
- Operations
9089
- Monitoring

docs/functional-components/scaling-multi-threading.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_position: 9
33
---
44

5-
# Scaling and Multi-threading
5+
# Load balancing, Scaling and Multi-threading
66

77
Node.js is said to be `single-threaded`. While not quite true, it reflects that
88
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.
5656
are recommended versus multiple processes in the same container.
5757

5858
- 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
6263
[Cluster API](https://nodejs.org/api/cluster.html) to manage
6364
requests within a container, instead rely on the facilities
6465
provided by kubernetes. In our experience this has been

0 commit comments

Comments
 (0)