-
Notifications
You must be signed in to change notification settings - Fork 538
Shadowing setup
Amit A Phatarphekar edited this page Aug 31, 2015
·
7 revisions
Even software engineers make mistakes. In fact, without proper testing any code change in critical code is dangerous and can bring down the entire site. Also some optimizations look great in theory but when tested under production load they don't show any benefit, or even break the existing logic. That's why testing under real load is the best way to find bugs in new code.
Mcrouter can send some part of production traffic (shadow it) to test hosts, without any visible impact on performance or reliability. Here is an example:
{
"pools": {
"production": {
"servers": [ /* production hosts */ ]
},
"test": {
"servers": [ /* test hosts */ ]
}
},
"route": {
"type": "PoolRoute",
"pool": "production",
"shadows": [
{
"target": "PoolRoute|test",
// shadow traffic that would go to first and second hosts in 'production' pool
// note that the endpoint is non-inclusive
"index_range": [0, 2],
// shadow requests for 10% of keys based on key hash
"key_fraction_range": [0, 0.1]
}
]
}
}
Explanation: all requests go to the 'production' pool; requests for 10% of keys sent to the first and second production hosts are also sent to the 'test' pool.
Find out more about mcrouter configuration here.
- Installation
- Common setups
- Concepts
- Features
- Configuration
- Monitoring
- Error Handling
- Announcements