Skip to content

docs: fix simple typos #25

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

Merged
merged 1 commit into from
Jun 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/ROOT/pages/architecture/architecture.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ image::restore_commerce_system_architecture.svg[]

Restorecommerce is http://en.wikipedia.org/wiki/Cloud_computing[cloud] native software which means it leverages contemporary deployment models such as containers and doesn't solve problems which are already covered by typical cloud infrastructures.
It grew up in the era of http://martinfowler.com/articles/microservices.html[microservices] and is therefore properly decomposed into such.
Furthermote, it adheres to the principle of http://www.slideshare.net/Kevlin/immutability-ftw[immutability] whenever possible.
Furthermore, it adheres to the principle of http://www.slideshare.net/Kevlin/immutability-ftw[immutability] whenever possible.
This is a very powerful combination which makes Restorecommerce highly scalable and easy to evolve and to operate.

== Semantic Web
Expand Down
4 changes: 2 additions & 2 deletions modules/ROOT/pages/operation/operation.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Obviously, such services do not need to be backed up.
This leaves the following persistence services which must be part of a full system backup:

* Container volume for ArangoDB
* Container volume for file based storeage
* Container volume for file based storage

The search index does not need to be backed up as it can be regenerated from GSS based data.

Expand All @@ -33,7 +33,7 @@ For a minimum to zero downtime, the http://martinfowler.com/bliki/BlueGreenDeplo

The server uses a Node.js clustering module but starts only one worker by default.
It is possible to increase the number of workers in the server configuration file but this requires to modify the server.
The preferred model to scale is up is to start multiple server containers and have the reverse proxy spraying the requests on them.
The preferred model to scale up is to start multiple server containers and have the reverse proxy spraying the requests on them.

Depending on the reverse proxy, there might be multiple strategies for the actual distribution of the load.
A requirement for the load balancing strategy is to route requests coming from the same client to the same container (sticky sessions) for the duration of a page visit at least.
Expand Down
Loading