Coder Social home page Coder Social logo

tilestrata-balancer's Introduction

TileStrata Balancer

NPM version Build Status Coverage Status

An elastic metatile-aware load balancer to sit in front of multiple TileStrata servers (must be >= 2.0.0).

$ npm install tilestrata-balancer -g

$ tilestrata-balancer \
	--hostname=127.0.0.1 \ # bind address
	--port=8080 \ # for connections from the outside world
	--private-port=8081 \ # for connections from tilestrata tile servers
	--check-interval=5000 \ # how often to ping child nodes
	--unhealthy-count=1 # consecutive unhealty pings needed to determine a host is unhealthy

Configuration

First and foremost, whatever --private-port is set to needs to not be accessible to the outside world. This is crucial so that outside connections can't maliciously insert a random node into the pool.

On the servers upstream, use the balancer option to set where to find the load balancer. When TileStrata starts up, it will check-in with the load balancer, informing it that its ready to be routed to. After that, the balancer will periodically check /health to ensure the node is healthy.

var strata = tilestrata({
	balancer: {
		/* the port should match --private-port */
		host: '192.168.0.1:8081',
		/* the magnitude is relative to other servers (default: 1) */
		node_weight: 3
	}
});

If using metatiles, set the metatile option on the layer to have it recognized by the balancer. Note: this will likely be redundant with plugin settings.

strata.layer('mylayer', {metatile, 4})
	.use(mapnik({metatile: 4, /* ... */}))

Additional Notes

One cool thing to note is that TileStrata Balancer allows layers to be non-homogenously spread about your cluster. The balancer keeps track of what layers exist on each host. This property is great if you have multiple maps that are tough to squeeze on a single server.

The Contract

  1. TileStrata should start up and send periodic POSTs to /nodes until it receives a 201 Created. The request body should contain a unique id, node_weight and a layers array with various parameters about each (minZoom, maxZoom, metatile). The successful response body (JSON) will contain a "token" property that is later sent as the X-TileStrataBalancer-Token header on health checks.
  2. TileStrata Balancer will send periodic requests to /health on the TileStrata node to ensure it's healthy. If unhealthy, the node is dropped from the pool. TileStrata should detect the lack of incoming health checks from the balancer (indicated by X-TileStrataBalancer-Token) and attempt to re-register (1).
    • If TileStrata is shutting down, it should call DELETE /nodes/:id on the balancer.

License

Copyright © 2015 Natural Atlas, Inc. & Contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

tilestrata-balancer's People

Contributors

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