Calculate the size of log store you require. Correctly sizing your log store is important, as stores that are too small or large can lead to performance issues.
storeBytes = dataBytes * 100 / (100 - reservePct)
source --> derived1 --> derived2 --> derived3
(1024 * 100) + (4096 * 200) + (5120 * 150) = 1,689,600
(1024 + 4096 + 5120) * 96 = 983,040
1,689,600 + 983,040 = 2,672,640
Verify that this result is no larger than one quarter of the reserve size:uncheckpointedBytes < storeBytes * (reservePct / 4) / 100
If the result is larger than one quarter of the reserve size, increase the reserve percent and repeat the store size calculation. Uncheckpointed data is mainly a concern for smaller stores. Other than through the uncheckpointed data size, this overhead does not significantly affect the store size calculation, because the cleaning cycle removes it and compacts the data.