|
1 | 1 | {
|
2 | 2 | "query_timeout.test.lua": {
|
3 |
| - "space (g)": {"conf": "space", "apply_settings_to": "graphql"}, |
4 |
| - "shard_2x2 (g)": {"conf": "shard_2x2", "apply_settings_to": "graphql"}, |
5 |
| - "shard_4x1 (g)": {"conf": "shard_4x1", "apply_settings_to": "graphql"}, |
6 |
| - "space (q)": {"conf": "space", "apply_settings_to": "query"}, |
7 |
| - "shard_2x2 (q)": {"conf": "shard_2x2", "apply_settings_to": "query"}, |
8 |
| - "shard_4x1 (q)": {"conf": "shard_4x1", "apply_settings_to": "query"} |
| 3 | + "space (dfs, g)": { |
| 4 | + "conf": "space", |
| 5 | + "apply_timeout_to": "graphql", |
| 6 | + "graphql_opts": { |
| 7 | + "use_bfs_executor": "never" |
| 8 | + } |
| 9 | + }, |
| 10 | + "space (bfs, g)": { |
| 11 | + "conf": "space", |
| 12 | + "apply_timeout_to": "graphql", |
| 13 | + "graphql_opts": { |
| 14 | + "use_bfs_executor": "always" |
| 15 | + } |
| 16 | + }, |
| 17 | + "shard_2x2 (dfs, g)": { |
| 18 | + "conf": "shard_2x2", |
| 19 | + "apply_timeout_to": "graphql", |
| 20 | + "graphql_opts": { |
| 21 | + "use_bfs_executor": "never" |
| 22 | + } |
| 23 | + }, |
| 24 | + "shard_2x2 (bfs, g)": { |
| 25 | + "conf": "shard_2x2", |
| 26 | + "apply_timeout_to": "graphql", |
| 27 | + "graphql_opts": { |
| 28 | + "use_bfs_executor": "always" |
| 29 | + } |
| 30 | + }, |
| 31 | + "shard_4x1 (dfs, g)": { |
| 32 | + "conf": "shard_4x1", |
| 33 | + "apply_timeout_to": "graphql", |
| 34 | + "graphql_opts": { |
| 35 | + "use_bfs_executor": "never" |
| 36 | + } |
| 37 | + }, |
| 38 | + "shard_4x1 (bfs, g)": { |
| 39 | + "conf": "shard_4x1", |
| 40 | + "apply_timeout_to": "graphql", |
| 41 | + "graphql_opts": { |
| 42 | + "use_bfs_executor": "always" |
| 43 | + } |
| 44 | + }, |
| 45 | + "space (dfs, q)": { |
| 46 | + "conf": "space", |
| 47 | + "apply_timeout_to": "query", |
| 48 | + "graphql_opts": { |
| 49 | + "use_bfs_executor": "never" |
| 50 | + } |
| 51 | + }, |
| 52 | + "space (bfs, q)": { |
| 53 | + "conf": "space", |
| 54 | + "apply_timeout_to": "query", |
| 55 | + "graphql_opts": { |
| 56 | + "use_bfs_executor": "always" |
| 57 | + } |
| 58 | + }, |
| 59 | + "shard_2x2 (dfs, q)": { |
| 60 | + "conf": "shard_2x2", |
| 61 | + "apply_timeout_to": "query", |
| 62 | + "graphql_opts": { |
| 63 | + "use_bfs_executor": "never" |
| 64 | + } |
| 65 | + }, |
| 66 | + "shard_2x2 (bfs, q)": { |
| 67 | + "conf": "shard_2x2", |
| 68 | + "apply_timeout_to": "query", |
| 69 | + "graphql_opts": { |
| 70 | + "use_bfs_executor": "always" |
| 71 | + } |
| 72 | + }, |
| 73 | + "shard_4x1 (dfs, q)": { |
| 74 | + "conf": "shard_4x1", |
| 75 | + "apply_timeout_to": "query", |
| 76 | + "graphql_opts": { |
| 77 | + "use_bfs_executor": "never" |
| 78 | + } |
| 79 | + }, |
| 80 | + "shard_4x1 (bfs, q)": { |
| 81 | + "conf": "shard_4x1", |
| 82 | + "apply_timeout_to": "query", |
| 83 | + "graphql_opts": { |
| 84 | + "use_bfs_executor": "always" |
| 85 | + } |
| 86 | + } |
9 | 87 | },
|
10 | 88 | "limit_result.test.lua": {
|
11 |
| - "space (g)": {"conf": "space", "apply_settings_to": "graphql"}, |
12 |
| - "shard_2x2 (g)": {"conf": "shard_2x2", "apply_settings_to": "graphql"}, |
13 |
| - "shard_4x1 (g)": {"conf": "shard_4x1", "apply_settings_to": "graphql"}, |
14 |
| - "space (q)": {"conf": "space", "apply_settings_to": "query"}, |
15 |
| - "shard_2x2 (q)": {"conf": "shard_2x2", "apply_settings_to": "query"}, |
16 |
| - "shard_4x1 (q)": {"conf": "shard_4x1", "apply_settings_to": "query"} |
| 89 | + "space (dfs, g)": { |
| 90 | + "conf": "space", |
| 91 | + "apply_limit_to": "graphql", |
| 92 | + "graphql_opts": { |
| 93 | + "use_bfs_executor": "never" |
| 94 | + } |
| 95 | + }, |
| 96 | + "space (bfs, g)": { |
| 97 | + "conf": "space", |
| 98 | + "apply_limit_to": "graphql", |
| 99 | + "graphql_opts": { |
| 100 | + "use_bfs_executor": "always" |
| 101 | + } |
| 102 | + }, |
| 103 | + "shard_2x2 (dfs, g)": { |
| 104 | + "conf": "shard_2x2", |
| 105 | + "apply_limit_to": "graphql", |
| 106 | + "graphql_opts": { |
| 107 | + "use_bfs_executor": "never" |
| 108 | + } |
| 109 | + }, |
| 110 | + "shard_2x2 (bfs, g)": { |
| 111 | + "conf": "shard_2x2", |
| 112 | + "apply_limit_to": "graphql", |
| 113 | + "graphql_opts": { |
| 114 | + "use_bfs_executor": "always" |
| 115 | + } |
| 116 | + }, |
| 117 | + "shard_4x1 (dfs, g)": { |
| 118 | + "conf": "shard_4x1", |
| 119 | + "apply_limit_to": "graphql", |
| 120 | + "graphql_opts": { |
| 121 | + "use_bfs_executor": "never" |
| 122 | + } |
| 123 | + }, |
| 124 | + "shard_4x1 (bfs, g)": { |
| 125 | + "conf": "shard_4x1", |
| 126 | + "apply_limit_to": "graphql", |
| 127 | + "graphql_opts": { |
| 128 | + "use_bfs_executor": "always" |
| 129 | + } |
| 130 | + }, |
| 131 | + "space (dfs, q)": { |
| 132 | + "conf": "space", |
| 133 | + "apply_limit_to": "query", |
| 134 | + "graphql_opts": { |
| 135 | + "use_bfs_executor": "never" |
| 136 | + } |
| 137 | + }, |
| 138 | + "space (bfs, q)": { |
| 139 | + "conf": "space", |
| 140 | + "apply_limit_to": "query", |
| 141 | + "graphql_opts": { |
| 142 | + "use_bfs_executor": "always" |
| 143 | + } |
| 144 | + }, |
| 145 | + "shard_2x2 (dfs, q)": { |
| 146 | + "conf": "shard_2x2", |
| 147 | + "apply_limit_to": "query", |
| 148 | + "graphql_opts": { |
| 149 | + "use_bfs_executor": "never" |
| 150 | + } |
| 151 | + }, |
| 152 | + "shard_2x2 (bfs, q)": { |
| 153 | + "conf": "shard_2x2", |
| 154 | + "apply_limit_to": "query", |
| 155 | + "graphql_opts": { |
| 156 | + "use_bfs_executor": "always" |
| 157 | + } |
| 158 | + }, |
| 159 | + "shard_4x1 (dfs, q)": { |
| 160 | + "conf": "shard_4x1", |
| 161 | + "apply_limit_to": "query", |
| 162 | + "graphql_opts": { |
| 163 | + "use_bfs_executor": "never" |
| 164 | + } |
| 165 | + }, |
| 166 | + "shard_4x1 (bfs, q)": { |
| 167 | + "conf": "shard_4x1", |
| 168 | + "apply_limit_to": "query", |
| 169 | + "graphql_opts": { |
| 170 | + "use_bfs_executor": "always" |
| 171 | + } |
| 172 | + } |
17 | 173 | },
|
18 | 174 | "*": {
|
19 |
| - "space": {"conf": "space"}, |
20 |
| - "shard_2x2": {"conf": "shard_2x2"}, |
21 |
| - "shard_4x1": {"conf": "shard_4x1"} |
| 175 | + "space (dfs)": { |
| 176 | + "conf": "space", |
| 177 | + "graphql_opts": { |
| 178 | + "use_bfs_executor": "never" |
| 179 | + } |
| 180 | + }, |
| 181 | + "space (bfs)": { |
| 182 | + "conf": "space", |
| 183 | + "graphql_opts": { |
| 184 | + "use_bfs_executor": "always" |
| 185 | + } |
| 186 | + }, |
| 187 | + "shard_2x2 (dfs)": { |
| 188 | + "conf": "shard_2x2", |
| 189 | + "graphql_opts": { |
| 190 | + "use_bfs_executor": "never" |
| 191 | + } |
| 192 | + }, |
| 193 | + "shard_2x2 (bfs)": { |
| 194 | + "conf": "shard_2x2", |
| 195 | + "graphql_opts": { |
| 196 | + "use_bfs_executor": "always" |
| 197 | + } |
| 198 | + }, |
| 199 | + "shard_4x1 (dfs)": { |
| 200 | + "conf": "shard_4x1", |
| 201 | + "graphql_opts": { |
| 202 | + "use_bfs_executor": "never" |
| 203 | + } |
| 204 | + }, |
| 205 | + "shard_4x1 (bfs)": { |
| 206 | + "conf": "shard_4x1", |
| 207 | + "graphql_opts": { |
| 208 | + "use_bfs_executor": "always" |
| 209 | + } |
| 210 | + } |
22 | 211 | }
|
23 | 212 | }
|
0 commit comments