|
|
|
|
|
by true_religion
2147 days ago
|
|
You want staging to be as close to production as possible, but obviously not exactly he same size. If you spend 1M on production, you might have a staging environment 1/10th of that size. Say 10 machines in a cluster instead of 100. But some technologies also have minimum implementation cost requirements per tier of usage. Like if you have a multiple data centers in production, you will need to test that in staging. You can’t just have 1 machine in a cluster, so your staging environment needs at least 3 to make a quorum. Therefore, to have 5 data centers in staging, you now need 15 machines... which is more than the base of 1/10th of production. Issues like that can balloon staging costs if you try to properly implement it. |
|