coredns/middleware/proxy
Miek Gieben 84dfdab584 Cache elements of State
Cache the size and the do bit whenever someone asked for it. We can

probably add more:



PASS

BenchmarkStateDo-4  	100000000	        11.9 ns/op

BenchmarkStateSize-4	 5000000	       265 ns/op

ok  	github.com/miekg/coredns/middleware	2.828s



PASS

BenchmarkStateDo-4  	1000000000	         2.86 ns/op

BenchmarkStateSize-4	500000000	         3.10 ns/op

ok  	github.com/miekg/coredns/middleware	5.032s



This PR also includes some testing cleanups as well.
2016-04-04 08:19:06 +01:00
..
lookup.go Support SkyDNS' stubzones 2016-03-26 16:29:35 +00:00
lookup_test.go Cache elements of State 2016-04-04 08:19:06 +01:00
policy.go First commit 2016-03-18 20:57:35 +00:00
policy_test.go First commit 2016-03-18 20:57:35 +00:00
proxy.go Use context.Context 2016-03-19 07:32:50 +00:00
proxy_test.go Use context.Context 2016-03-19 07:32:50 +00:00
README.md middleware: change documentation filenames to README.md 2016-04-01 18:26:18 -04:00
reverseproxy.go Add Scrub function 2016-03-26 09:26:54 +00:00
upstream.go Fix upstream tests 2016-03-19 16:11:30 +00:00
upstream_test.go Fix upstream tests 2016-03-19 16:11:30 +00:00

proxy

proxy facilitates both a basic reverse proxy and a robust load balancer. The proxy has support for multiple backends and adding custom headers. The load balancing features include multiple policies, health checks, and failovers.

Syntax

In its most basic form, a simple reverse proxy uses this syntax:

proxy from to
  • from is the base path to match for the request to be proxied
  • to is the destination endpoint to proxy to

However, advanced features including load balancing can be utilized with an expanded syntax:

proxy from to... {
	policy random | least_conn | round_robin
	fail_timeout duration
	max_fails integer
	health_check path [duration]
	except ignored_names...
	preset
}
  • from is the base path to match for the request to be proxied.
  • to is the destination endpoint to proxy to. At least one is required, but multiple may be specified.
  • policy is the load balancing policy to use; applies only with multiple backends. May be one of random, least_conn, or round_robin. Default is random.
  • fail_timeout specifies how long to consider a backend as down after it has failed. While it is down, requests will not be routed to that backend. A backend is "down" if Caddy fails to communicate with it. The default value is 10 seconds ("10s").
  • max_fails is the number of failures within fail_timeout that are needed before considering a backend to be down. If 0, the backend will never be marked as down. Default is 1.
  • health_check will check path on each backend. If a backend returns a status code of 200-399, then that backend is healthy. If it doesn't, the backend is marked as unhealthy for duration and no requests are routed to it. If this option is not provided then health checks are disabled. The default duration is 10 seconds ("10s").
  • ignored_names... is a space-separated list of paths to exclude from proxying. Requests that match any of these paths will be passed thru.

Policies

There are three load balancing policies available:

  • random (default) - Randomly select a backend
  • least_conn - Select backend with the fewest active connections
  • round_robin - Select backend in round-robin fashion

Examples

Proxy all requests within example.org. to a backend system:

proxy example.org localhost:9005

Load-balance all requests between three backends (using random policy):

proxy . web1.local:53 web2.local:1053 web3.local

Same as above, but round-robin style:

proxy . web1.local:53 web2.local:1053 web3.local {
	policy round_robin
}

With health checks and proxy headers to pass hostname, IP, and scheme upstream:

proxy / web1.local:80 web2.local:90 web3.local:100 {
	policy round_robin
	health_check /health
}

Proxy everything except requests to miek.nl or example.org

proxy . backend:1234 {
	except miek.nl example.org
}