A reverse HTTP proxy that duplicates requests.
You may have production servers running, but you need to upgrade to a new system. You want to run A/B test on both old and new systems to confirm the new system can handle the production load, and want to see whether the new system can run in shadow mode continuously without any issue.
teeproxy is a reverse HTTP proxy. For each incoming request, it clone the request into 2 requests, forward them to 2 servers. The results from server a are returned as usual, but the results from server b are ignored.
teeproxy handles GET, POST, and all other http methods.
go build
./teeproxy -l :8888 -a localhost:9000 -b localhost:9001
"-l" specifies the listening port. "-a" and "-b" are meant for system A and B. The B system can be taken down or started up without causing any issue to the teeproxy.
It's also possible to configure the timeout to both systems
- -a.timeout int: timeout in seconds for production traffic (default 3)
- -b.timeout int: timeout in seconds for alternate site traffic (default 1)
Optionally rewrite host value in the http request header.
- -a.rewrite bool: rewrite for production traffic (default false)
- -b.rewrite bool: rewrite for alternate site traffic (default false)
- -p float64: only send a percentage of requests. The value is float64 for more precise control. (default 100.0)
- -key.file string: a TLS private key file. (default "")
- -cert.file string: a TLS certificate file. (default "")