| A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | AA | AB | ||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Description | Hot Perf Improvement | Cold Perf Improvement | Column Hot | Column Warm | Column Cold | NoColumn Hot | NoColumn Warm | NoColumn Cold | SBE Hot | Raw Query | ||||||||||||||||||
2 | Group 1 column | 61.67% | 2565.40% | 960 | 1131 | 1182 | 1552 | 10091 | 31505 | 8193 | db.products.aggregate([{$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{'$natural':1}}) | ||||||||||||||||||
3 | Group 1 column + $exists | 146.66% | 3973.61% | 733 | 867 | 879 | 1808 | 10362 | 35807 | 8650 | db.products.aggregate([{$match:{'type': {$exists:true}}}, {$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{'$natural':1}}) | ||||||||||||||||||
4 | Non-matching query on scalar | 244.40% | 7160.71% | 277 | 401 | 425 | 954 | 9196 | 30858 | 1060 | db.products.aggregate([{$match:{'type': 'asdf'}}, {$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{'$natural':1}}) | ||||||||||||||||||
5 | Non-matching query on array | 598.26% | 344 | 2402 | 2914 | db.products.aggregate([{$match:{'categoryPath.name': 'asdf'}}, {$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{'$natural':1}}) | |||||||||||||||||||||||
6 | Matching query 2 columns (117 matches) | 519.95% | 396 | 2455 | 3043 | db.products.aggregate([{$match:{'categoryPath.name': 'Pop', type:'Movie'}}, {$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{$natural:1}}) | |||||||||||||||||||||||
7 | Matching query 2 columns (268k matches) | 367.43% | 565 | 2641 | 11160 | 4240 | db.products.aggregate([{$match:{'categoryPath.name': 'Pop', type:'Music'}}, {$group:{_id:'$type', count: {$sum:1}}}], {noColumns:false, hint:{$natural:1}}) | ||||||||||||||||||||||
8 | |||||||||||||||||||||||||||||
9 | All times are milliseconds | All tests were run against bestbuy data set | |||||||||||||||||||||||||||
10 | Hot = in WT cache | 1,901,574 documents | |||||||||||||||||||||||||||
11 | Warm = in file system cache | 2.2GB snappy compressed | |||||||||||||||||||||||||||
12 | Cold = not in any cache | 8GB uncompressed | |||||||||||||||||||||||||||
13 | 200% improvement is 3x speed or 1/3 time | ||||||||||||||||||||||||||||
14 | |||||||||||||||||||||||||||||
15 | |||||||||||||||||||||||||||||
16 | |||||||||||||||||||||||||||||
17 | |||||||||||||||||||||||||||||
18 | |||||||||||||||||||||||||||||
19 | |||||||||||||||||||||||||||||
20 | |||||||||||||||||||||||||||||
21 | |||||||||||||||||||||||||||||
22 | |||||||||||||||||||||||||||||
23 | |||||||||||||||||||||||||||||
24 | |||||||||||||||||||||||||||||
25 | |||||||||||||||||||||||||||||
26 | |||||||||||||||||||||||||||||
27 | |||||||||||||||||||||||||||||
28 | |||||||||||||||||||||||||||||
29 | |||||||||||||||||||||||||||||
30 | |||||||||||||||||||||||||||||
31 | |||||||||||||||||||||||||||||
32 | |||||||||||||||||||||||||||||
33 | |||||||||||||||||||||||||||||
34 | |||||||||||||||||||||||||||||
35 | |||||||||||||||||||||||||||||
36 | |||||||||||||||||||||||||||||
37 | |||||||||||||||||||||||||||||
38 | |||||||||||||||||||||||||||||
39 | |||||||||||||||||||||||||||||
40 | |||||||||||||||||||||||||||||
41 | |||||||||||||||||||||||||||||
42 | |||||||||||||||||||||||||||||
43 | |||||||||||||||||||||||||||||
44 | |||||||||||||||||||||||||||||
45 | |||||||||||||||||||||||||||||
46 | |||||||||||||||||||||||||||||
47 | |||||||||||||||||||||||||||||
48 | |||||||||||||||||||||||||||||
49 | |||||||||||||||||||||||||||||
50 | |||||||||||||||||||||||||||||
51 | |||||||||||||||||||||||||||||
52 | |||||||||||||||||||||||||||||
53 | |||||||||||||||||||||||||||||
54 | |||||||||||||||||||||||||||||
55 | |||||||||||||||||||||||||||||
56 | |||||||||||||||||||||||||||||
57 | |||||||||||||||||||||||||||||
58 | |||||||||||||||||||||||||||||
59 | |||||||||||||||||||||||||||||
60 | |||||||||||||||||||||||||||||
61 | |||||||||||||||||||||||||||||
62 | |||||||||||||||||||||||||||||
63 | |||||||||||||||||||||||||||||
64 | |||||||||||||||||||||||||||||
65 | |||||||||||||||||||||||||||||
66 | |||||||||||||||||||||||||||||
67 | |||||||||||||||||||||||||||||
68 | |||||||||||||||||||||||||||||
69 | |||||||||||||||||||||||||||||
70 | |||||||||||||||||||||||||||||
71 | |||||||||||||||||||||||||||||
72 | |||||||||||||||||||||||||||||
73 | |||||||||||||||||||||||||||||
74 | |||||||||||||||||||||||||||||
75 | |||||||||||||||||||||||||||||
76 | |||||||||||||||||||||||||||||
77 | |||||||||||||||||||||||||||||
78 | |||||||||||||||||||||||||||||
79 | |||||||||||||||||||||||||||||
80 | |||||||||||||||||||||||||||||
81 | |||||||||||||||||||||||||||||
82 | |||||||||||||||||||||||||||||
83 | |||||||||||||||||||||||||||||
84 | |||||||||||||||||||||||||||||
85 | |||||||||||||||||||||||||||||
86 | |||||||||||||||||||||||||||||
87 | |||||||||||||||||||||||||||||
88 | |||||||||||||||||||||||||||||
89 | |||||||||||||||||||||||||||||
90 | |||||||||||||||||||||||||||||
91 | |||||||||||||||||||||||||||||
92 | |||||||||||||||||||||||||||||
93 | |||||||||||||||||||||||||||||
94 | |||||||||||||||||||||||||||||
95 | |||||||||||||||||||||||||||||
96 | |||||||||||||||||||||||||||||
97 | |||||||||||||||||||||||||||||
98 | |||||||||||||||||||||||||||||
99 | |||||||||||||||||||||||||||||
100 |