Code Monkey home page Code Monkey logo

nginx-multidatacenter-master's Introduction

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".

nginx-multidatacenter-master's People

Contributors

fazliddin51998 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.