https://github.com/jesty/nginx-multidatacenter
A Nginx setup to serve a passice/active service in a multi-datacenter/geo-replicated scenario.
https://github.com/jesty/nginx-multidatacenter
Last synced: 24 days ago
JSON representation
A Nginx setup to serve a passice/active service in a multi-datacenter/geo-replicated scenario.
- Host: GitHub
- URL: https://github.com/jesty/nginx-multidatacenter
- Owner: jesty
- Created: 2019-09-27T23:34:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-01T10:57:35.000Z (over 6 years ago)
- Last Synced: 2025-03-21T00:30:46.831Z (about 1 year ago)
- Language: HTML
- Homepage: https://medium.com/@davidecerbo/deploy-a-multi-datacenter-web-application-with-an-active-passive-setup-e95ca1270e22
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nginx active/passive in a multi-datacenter/geo-replicated scenario.
More details about the demo can be found on my Medium blog: https://medium.com/@davidecerbo/deploy-a-multi-datacenter-web-application-with-an-active-passive-setup-e95ca1270e22
The demo provides an Nginx setup to serve a passive/active service in a multi-datacenter/geo-replicated scenario.
Using this simple setup we can route our clients to the closest datacenter, depending on their location, and if a data center, or a
container, will not be more available, we can use a backup server on another datacenter/geographic location.
Obviously the responsibility to replicate data will be on charge of other systems.
In this demo, we will start an Nginx load balancer that redirects the client that performs request without header to a datacenter
and the client that uses the header "X-SERVER-SELECT" with value "two" to another datacenter.
When a container on a datacenter, on entire datacenter, will not be more available, the load balancer will redirect the service
invocation to the backup node.
To run the demo execute:
$ docker-compose up
and then visit http://localhost:9090 the string "Test ONE" will appear to you.
Then try to contact using the header "X-SERVER-SELECT" with value "two":
$ curl --header "X-Server-Select:two" http://localhost:9090
The result will be: "Test TWO".
Now try to stop the main server that refers to the backend "TWO"
$ docker stop backendTwo
And re-execute the curl above:
$ curl --header "X-Server-Select:two" http://localhost:9090
The result will be "Test TWO Backup". Now re-start the container:
$ docker start backendTWO
and retry the curl:
$ curl --header "X-Server-Select:two" http://localhost:9090
The result will be again: "Test TWO".