We need to create keyspaces in Cassandra in beta and prod for the endpoints that we are going to store:
- media-list
- mobile-html
- metadata
- references
Production:
"enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" "enwiki_T_metadata" "enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" "enwiki_T_references" "others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" "others_T_metadata" "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" "others_T_references" "wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" "wikipedia_T_metadata" "wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" "wikipedia_T_references"
| 1 | create_enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
|---|---|
| 2 | statement: | |
| 3 | CREATE KEYSPACE IF NOT EXISTS "enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 4 | |
| 5 | create_meta_enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 6 | statement: | |
| 7 | CREATE TABLE IF NOT EXISTS "enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4".meta ( |
| 8 | key text PRIMARY KEY, |
| 9 | value text |
| 10 | ) WITH bloom_filter_fp_chance = 0.1 |
| 11 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 12 | AND comment = '' |
| 13 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 14 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 15 | AND crc_check_chance = 1.0 |
| 16 | AND dclocal_read_repair_chance = 0.1 |
| 17 | AND default_time_to_live = 0 |
| 18 | AND gc_grace_seconds = 864000 |
| 19 | AND max_index_interval = 2048 |
| 20 | AND memtable_flush_period_in_ms = 0 |
| 21 | AND min_index_interval = 128 |
| 22 | AND read_repair_chance = 0.0 |
| 23 | AND speculative_retry = '99PERCENTILE'; |
| 24 | |
| 25 | create_data_enwiki_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 26 | statement: |
| 27 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 28 | "_domain" text, |
| 29 | key text, |
| 30 | headers text, |
| 31 | tid timeuuid, |
| 32 | value blob, |
| 33 | PRIMARY KEY (("_domain", key)) |
| 34 | ) WITH bloom_filter_fp_chance = 0.01 |
| 35 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 36 | AND comment = '' |
| 37 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 38 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 39 | AND crc_check_chance = 1.0 |
| 40 | AND dclocal_read_repair_chance = 0.1 |
| 41 | AND default_time_to_live = 0 |
| 42 | AND gc_grace_seconds = 864000 |
| 43 | AND max_index_interval = 2048 |
| 44 | AND memtable_flush_period_in_ms = 0 |
| 45 | AND min_index_interval = 128 |
| 46 | AND read_repair_chance = 0.0 |
| 47 | AND speculative_retry = '99PERCENTILE'; |
| 48 | |
| 49 | |
| 50 | |
| 51 | create_enwiki_T_metadata: |
| 52 | statement: | |
| 53 | CREATE KEYSPACE IF NOT EXISTS "enwiki_T_metadata" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 54 | |
| 55 | create_meta_enwiki_T_metadata: |
| 56 | statement: | |
| 57 | CREATE TABLE IF NOT EXISTS "enwiki_T_metadata".meta ( |
| 58 | key text PRIMARY KEY, |
| 59 | value text |
| 60 | ) WITH bloom_filter_fp_chance = 0.1 |
| 61 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 62 | AND comment = '' |
| 63 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 64 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 65 | AND crc_check_chance = 1.0 |
| 66 | AND dclocal_read_repair_chance = 0.1 |
| 67 | AND default_time_to_live = 0 |
| 68 | AND gc_grace_seconds = 864000 |
| 69 | AND max_index_interval = 2048 |
| 70 | AND memtable_flush_period_in_ms = 0 |
| 71 | AND min_index_interval = 128 |
| 72 | AND read_repair_chance = 0.0 |
| 73 | AND speculative_retry = '99PERCENTILE'; |
| 74 | |
| 75 | create_data_enwiki_T_metadata: |
| 76 | statement: |
| 77 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 78 | "_domain" text, |
| 79 | key text, |
| 80 | headers text, |
| 81 | tid timeuuid, |
| 82 | value blob, |
| 83 | PRIMARY KEY (("_domain", key)) |
| 84 | ) WITH bloom_filter_fp_chance = 0.01 |
| 85 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 86 | AND comment = '' |
| 87 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 88 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 89 | AND crc_check_chance = 1.0 |
| 90 | AND dclocal_read_repair_chance = 0.1 |
| 91 | AND default_time_to_live = 0 |
| 92 | AND gc_grace_seconds = 864000 |
| 93 | AND max_index_interval = 2048 |
| 94 | AND memtable_flush_period_in_ms = 0 |
| 95 | AND min_index_interval = 128 |
| 96 | AND read_repair_chance = 0.0 |
| 97 | AND speculative_retry = '99PERCENTILE'; |
| 98 | |
| 99 | |
| 100 | |
| 101 | create_enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 102 | statement: | |
| 103 | CREATE KEYSPACE IF NOT EXISTS "enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 104 | |
| 105 | create_meta_enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 106 | statement: | |
| 107 | CREATE TABLE IF NOT EXISTS "enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA".meta ( |
| 108 | key text PRIMARY KEY, |
| 109 | value text |
| 110 | ) WITH bloom_filter_fp_chance = 0.1 |
| 111 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 112 | AND comment = '' |
| 113 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 114 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 115 | AND crc_check_chance = 1.0 |
| 116 | AND dclocal_read_repair_chance = 0.1 |
| 117 | AND default_time_to_live = 0 |
| 118 | AND gc_grace_seconds = 864000 |
| 119 | AND max_index_interval = 2048 |
| 120 | AND memtable_flush_period_in_ms = 0 |
| 121 | AND min_index_interval = 128 |
| 122 | AND read_repair_chance = 0.0 |
| 123 | AND speculative_retry = '99PERCENTILE'; |
| 124 | |
| 125 | create_data_enwiki_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 126 | statement: |
| 127 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 128 | "_domain" text, |
| 129 | key text, |
| 130 | headers text, |
| 131 | tid timeuuid, |
| 132 | value blob, |
| 133 | PRIMARY KEY (("_domain", key)) |
| 134 | ) WITH bloom_filter_fp_chance = 0.01 |
| 135 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 136 | AND comment = '' |
| 137 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 138 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 139 | AND crc_check_chance = 1.0 |
| 140 | AND dclocal_read_repair_chance = 0.1 |
| 141 | AND default_time_to_live = 0 |
| 142 | AND gc_grace_seconds = 864000 |
| 143 | AND max_index_interval = 2048 |
| 144 | AND memtable_flush_period_in_ms = 0 |
| 145 | AND min_index_interval = 128 |
| 146 | AND read_repair_chance = 0.0 |
| 147 | AND speculative_retry = '99PERCENTILE'; |
| 148 | |
| 149 | |
| 150 | |
| 151 | create_enwiki_T_references: |
| 152 | statement: | |
| 153 | CREATE KEYSPACE IF NOT EXISTS "enwiki_T_references" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 154 | |
| 155 | create_meta_enwiki_T_references: |
| 156 | statement: | |
| 157 | CREATE TABLE IF NOT EXISTS "enwiki_T_references".meta ( |
| 158 | key text PRIMARY KEY, |
| 159 | value text |
| 160 | ) WITH bloom_filter_fp_chance = 0.1 |
| 161 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 162 | AND comment = '' |
| 163 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 164 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 165 | AND crc_check_chance = 1.0 |
| 166 | AND dclocal_read_repair_chance = 0.1 |
| 167 | AND default_time_to_live = 0 |
| 168 | AND gc_grace_seconds = 864000 |
| 169 | AND max_index_interval = 2048 |
| 170 | AND memtable_flush_period_in_ms = 0 |
| 171 | AND min_index_interval = 128 |
| 172 | AND read_repair_chance = 0.0 |
| 173 | AND speculative_retry = '99PERCENTILE'; |
| 174 | |
| 175 | create_data_enwiki_T_references: |
| 176 | statement: |
| 177 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 178 | "_domain" text, |
| 179 | key text, |
| 180 | headers text, |
| 181 | tid timeuuid, |
| 182 | value blob, |
| 183 | PRIMARY KEY (("_domain", key)) |
| 184 | ) WITH bloom_filter_fp_chance = 0.01 |
| 185 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 186 | AND comment = '' |
| 187 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 188 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 189 | AND crc_check_chance = 1.0 |
| 190 | AND dclocal_read_repair_chance = 0.1 |
| 191 | AND default_time_to_live = 0 |
| 192 | AND gc_grace_seconds = 864000 |
| 193 | AND max_index_interval = 2048 |
| 194 | AND memtable_flush_period_in_ms = 0 |
| 195 | AND min_index_interval = 128 |
| 196 | AND read_repair_chance = 0.0 |
| 197 | AND speculative_retry = '99PERCENTILE'; |
| 198 | |
| 199 | |
| 200 | |
| 201 | create_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 202 | statement: | |
| 203 | CREATE KEYSPACE IF NOT EXISTS "others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 204 | |
| 205 | create_meta_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 206 | statement: | |
| 207 | CREATE TABLE IF NOT EXISTS "others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4".meta ( |
| 208 | key text PRIMARY KEY, |
| 209 | value text |
| 210 | ) WITH bloom_filter_fp_chance = 0.1 |
| 211 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 212 | AND comment = '' |
| 213 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 214 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 215 | AND crc_check_chance = 1.0 |
| 216 | AND dclocal_read_repair_chance = 0.1 |
| 217 | AND default_time_to_live = 0 |
| 218 | AND gc_grace_seconds = 864000 |
| 219 | AND max_index_interval = 2048 |
| 220 | AND memtable_flush_period_in_ms = 0 |
| 221 | AND min_index_interval = 128 |
| 222 | AND read_repair_chance = 0.0 |
| 223 | AND speculative_retry = '99PERCENTILE'; |
| 224 | |
| 225 | create_data_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 226 | statement: |
| 227 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 228 | "_domain" text, |
| 229 | key text, |
| 230 | headers text, |
| 231 | tid timeuuid, |
| 232 | value blob, |
| 233 | PRIMARY KEY (("_domain", key)) |
| 234 | ) WITH bloom_filter_fp_chance = 0.01 |
| 235 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 236 | AND comment = '' |
| 237 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 238 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 239 | AND crc_check_chance = 1.0 |
| 240 | AND dclocal_read_repair_chance = 0.1 |
| 241 | AND default_time_to_live = 0 |
| 242 | AND gc_grace_seconds = 864000 |
| 243 | AND max_index_interval = 2048 |
| 244 | AND memtable_flush_period_in_ms = 0 |
| 245 | AND min_index_interval = 128 |
| 246 | AND read_repair_chance = 0.0 |
| 247 | AND speculative_retry = '99PERCENTILE'; |
| 248 | |
| 249 | |
| 250 | |
| 251 | create_others_T_metadata: |
| 252 | statement: | |
| 253 | CREATE KEYSPACE IF NOT EXISTS "others_T_metadata" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 254 | |
| 255 | create_meta_others_T_metadata: |
| 256 | statement: | |
| 257 | CREATE TABLE IF NOT EXISTS "others_T_metadata".meta ( |
| 258 | key text PRIMARY KEY, |
| 259 | value text |
| 260 | ) WITH bloom_filter_fp_chance = 0.1 |
| 261 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 262 | AND comment = '' |
| 263 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 264 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 265 | AND crc_check_chance = 1.0 |
| 266 | AND dclocal_read_repair_chance = 0.1 |
| 267 | AND default_time_to_live = 0 |
| 268 | AND gc_grace_seconds = 864000 |
| 269 | AND max_index_interval = 2048 |
| 270 | AND memtable_flush_period_in_ms = 0 |
| 271 | AND min_index_interval = 128 |
| 272 | AND read_repair_chance = 0.0 |
| 273 | AND speculative_retry = '99PERCENTILE'; |
| 274 | |
| 275 | create_data_others_T_metadata: |
| 276 | statement: |
| 277 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 278 | "_domain" text, |
| 279 | key text, |
| 280 | headers text, |
| 281 | tid timeuuid, |
| 282 | value blob, |
| 283 | PRIMARY KEY (("_domain", key)) |
| 284 | ) WITH bloom_filter_fp_chance = 0.01 |
| 285 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 286 | AND comment = '' |
| 287 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 288 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 289 | AND crc_check_chance = 1.0 |
| 290 | AND dclocal_read_repair_chance = 0.1 |
| 291 | AND default_time_to_live = 0 |
| 292 | AND gc_grace_seconds = 864000 |
| 293 | AND max_index_interval = 2048 |
| 294 | AND memtable_flush_period_in_ms = 0 |
| 295 | AND min_index_interval = 128 |
| 296 | AND read_repair_chance = 0.0 |
| 297 | AND speculative_retry = '99PERCENTILE'; |
| 298 | |
| 299 | |
| 300 | |
| 301 | create_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 302 | statement: | |
| 303 | CREATE KEYSPACE IF NOT EXISTS "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 304 | |
| 305 | create_meta_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 306 | statement: | |
| 307 | CREATE TABLE IF NOT EXISTS "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA".meta ( |
| 308 | key text PRIMARY KEY, |
| 309 | value text |
| 310 | ) WITH bloom_filter_fp_chance = 0.1 |
| 311 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 312 | AND comment = '' |
| 313 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 314 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 315 | AND crc_check_chance = 1.0 |
| 316 | AND dclocal_read_repair_chance = 0.1 |
| 317 | AND default_time_to_live = 0 |
| 318 | AND gc_grace_seconds = 864000 |
| 319 | AND max_index_interval = 2048 |
| 320 | AND memtable_flush_period_in_ms = 0 |
| 321 | AND min_index_interval = 128 |
| 322 | AND read_repair_chance = 0.0 |
| 323 | AND speculative_retry = '99PERCENTILE'; |
| 324 | |
| 325 | create_data_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 326 | statement: |
| 327 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 328 | "_domain" text, |
| 329 | key text, |
| 330 | headers text, |
| 331 | tid timeuuid, |
| 332 | value blob, |
| 333 | PRIMARY KEY (("_domain", key)) |
| 334 | ) WITH bloom_filter_fp_chance = 0.01 |
| 335 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 336 | AND comment = '' |
| 337 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 338 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 339 | AND crc_check_chance = 1.0 |
| 340 | AND dclocal_read_repair_chance = 0.1 |
| 341 | AND default_time_to_live = 0 |
| 342 | AND gc_grace_seconds = 864000 |
| 343 | AND max_index_interval = 2048 |
| 344 | AND memtable_flush_period_in_ms = 0 |
| 345 | AND min_index_interval = 128 |
| 346 | AND read_repair_chance = 0.0 |
| 347 | AND speculative_retry = '99PERCENTILE'; |
| 348 | |
| 349 | |
| 350 | |
| 351 | create_others_T_references: |
| 352 | statement: | |
| 353 | CREATE KEYSPACE IF NOT EXISTS "others_T_references" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 354 | |
| 355 | create_meta_others_T_references: |
| 356 | statement: | |
| 357 | CREATE TABLE IF NOT EXISTS "others_T_references".meta ( |
| 358 | key text PRIMARY KEY, |
| 359 | value text |
| 360 | ) WITH bloom_filter_fp_chance = 0.1 |
| 361 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 362 | AND comment = '' |
| 363 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 364 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 365 | AND crc_check_chance = 1.0 |
| 366 | AND dclocal_read_repair_chance = 0.1 |
| 367 | AND default_time_to_live = 0 |
| 368 | AND gc_grace_seconds = 864000 |
| 369 | AND max_index_interval = 2048 |
| 370 | AND memtable_flush_period_in_ms = 0 |
| 371 | AND min_index_interval = 128 |
| 372 | AND read_repair_chance = 0.0 |
| 373 | AND speculative_retry = '99PERCENTILE'; |
| 374 | |
| 375 | create_data_others_T_references: |
| 376 | statement: |
| 377 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 378 | "_domain" text, |
| 379 | key text, |
| 380 | headers text, |
| 381 | tid timeuuid, |
| 382 | value blob, |
| 383 | PRIMARY KEY (("_domain", key)) |
| 384 | ) WITH bloom_filter_fp_chance = 0.01 |
| 385 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 386 | AND comment = '' |
| 387 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 388 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 389 | AND crc_check_chance = 1.0 |
| 390 | AND dclocal_read_repair_chance = 0.1 |
| 391 | AND default_time_to_live = 0 |
| 392 | AND gc_grace_seconds = 864000 |
| 393 | AND max_index_interval = 2048 |
| 394 | AND memtable_flush_period_in_ms = 0 |
| 395 | AND min_index_interval = 128 |
| 396 | AND read_repair_chance = 0.0 |
| 397 | AND speculative_retry = '99PERCENTILE'; |
| 398 | |
| 399 | |
| 400 | |
| 401 | create_wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 402 | statement: | |
| 403 | CREATE KEYSPACE IF NOT EXISTS "wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 404 | |
| 405 | create_meta_wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 406 | statement: | |
| 407 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4".meta ( |
| 408 | key text PRIMARY KEY, |
| 409 | value text |
| 410 | ) WITH bloom_filter_fp_chance = 0.1 |
| 411 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 412 | AND comment = '' |
| 413 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 414 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 415 | AND crc_check_chance = 1.0 |
| 416 | AND dclocal_read_repair_chance = 0.1 |
| 417 | AND default_time_to_live = 0 |
| 418 | AND gc_grace_seconds = 864000 |
| 419 | AND max_index_interval = 2048 |
| 420 | AND memtable_flush_period_in_ms = 0 |
| 421 | AND min_index_interval = 128 |
| 422 | AND read_repair_chance = 0.0 |
| 423 | AND speculative_retry = '99PERCENTILE'; |
| 424 | |
| 425 | create_data_wikipedia_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 426 | statement: |
| 427 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 428 | "_domain" text, |
| 429 | key text, |
| 430 | headers text, |
| 431 | tid timeuuid, |
| 432 | value blob, |
| 433 | PRIMARY KEY (("_domain", key)) |
| 434 | ) WITH bloom_filter_fp_chance = 0.01 |
| 435 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 436 | AND comment = '' |
| 437 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 438 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 439 | AND crc_check_chance = 1.0 |
| 440 | AND dclocal_read_repair_chance = 0.1 |
| 441 | AND default_time_to_live = 0 |
| 442 | AND gc_grace_seconds = 864000 |
| 443 | AND max_index_interval = 2048 |
| 444 | AND memtable_flush_period_in_ms = 0 |
| 445 | AND min_index_interval = 128 |
| 446 | AND read_repair_chance = 0.0 |
| 447 | AND speculative_retry = '99PERCENTILE'; |
| 448 | |
| 449 | |
| 450 | |
| 451 | create_wikipedia_T_metadata: |
| 452 | statement: | |
| 453 | CREATE KEYSPACE IF NOT EXISTS "wikipedia_T_metadata" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 454 | |
| 455 | create_meta_wikipedia_T_metadata: |
| 456 | statement: | |
| 457 | CREATE TABLE IF NOT EXISTS "wikipedia_T_metadata".meta ( |
| 458 | key text PRIMARY KEY, |
| 459 | value text |
| 460 | ) WITH bloom_filter_fp_chance = 0.1 |
| 461 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 462 | AND comment = '' |
| 463 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 464 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 465 | AND crc_check_chance = 1.0 |
| 466 | AND dclocal_read_repair_chance = 0.1 |
| 467 | AND default_time_to_live = 0 |
| 468 | AND gc_grace_seconds = 864000 |
| 469 | AND max_index_interval = 2048 |
| 470 | AND memtable_flush_period_in_ms = 0 |
| 471 | AND min_index_interval = 128 |
| 472 | AND read_repair_chance = 0.0 |
| 473 | AND speculative_retry = '99PERCENTILE'; |
| 474 | |
| 475 | create_data_wikipedia_T_metadata: |
| 476 | statement: |
| 477 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 478 | "_domain" text, |
| 479 | key text, |
| 480 | headers text, |
| 481 | tid timeuuid, |
| 482 | value blob, |
| 483 | PRIMARY KEY (("_domain", key)) |
| 484 | ) WITH bloom_filter_fp_chance = 0.01 |
| 485 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 486 | AND comment = '' |
| 487 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 488 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 489 | AND crc_check_chance = 1.0 |
| 490 | AND dclocal_read_repair_chance = 0.1 |
| 491 | AND default_time_to_live = 0 |
| 492 | AND gc_grace_seconds = 864000 |
| 493 | AND max_index_interval = 2048 |
| 494 | AND memtable_flush_period_in_ms = 0 |
| 495 | AND min_index_interval = 128 |
| 496 | AND read_repair_chance = 0.0 |
| 497 | AND speculative_retry = '99PERCENTILE'; |
| 498 | |
| 499 | |
| 500 | |
| 501 | create_wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 502 | statement: | |
| 503 | CREATE KEYSPACE IF NOT EXISTS "wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 504 | |
| 505 | create_meta_wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 506 | statement: | |
| 507 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA".meta ( |
| 508 | key text PRIMARY KEY, |
| 509 | value text |
| 510 | ) WITH bloom_filter_fp_chance = 0.1 |
| 511 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 512 | AND comment = '' |
| 513 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 514 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 515 | AND crc_check_chance = 1.0 |
| 516 | AND dclocal_read_repair_chance = 0.1 |
| 517 | AND default_time_to_live = 0 |
| 518 | AND gc_grace_seconds = 864000 |
| 519 | AND max_index_interval = 2048 |
| 520 | AND memtable_flush_period_in_ms = 0 |
| 521 | AND min_index_interval = 128 |
| 522 | AND read_repair_chance = 0.0 |
| 523 | AND speculative_retry = '99PERCENTILE'; |
| 524 | |
| 525 | create_data_wikipedia_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 526 | statement: |
| 527 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 528 | "_domain" text, |
| 529 | key text, |
| 530 | headers text, |
| 531 | tid timeuuid, |
| 532 | value blob, |
| 533 | PRIMARY KEY (("_domain", key)) |
| 534 | ) WITH bloom_filter_fp_chance = 0.01 |
| 535 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 536 | AND comment = '' |
| 537 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 538 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 539 | AND crc_check_chance = 1.0 |
| 540 | AND dclocal_read_repair_chance = 0.1 |
| 541 | AND default_time_to_live = 0 |
| 542 | AND gc_grace_seconds = 864000 |
| 543 | AND max_index_interval = 2048 |
| 544 | AND memtable_flush_period_in_ms = 0 |
| 545 | AND min_index_interval = 128 |
| 546 | AND read_repair_chance = 0.0 |
| 547 | AND speculative_retry = '99PERCENTILE'; |
| 548 | |
| 549 | |
| 550 | |
| 551 | create_wikipedia_T_references: |
| 552 | statement: | |
| 553 | CREATE KEYSPACE IF NOT EXISTS "wikipedia_T_references" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 554 | |
| 555 | create_meta_wikipedia_T_references: |
| 556 | statement: | |
| 557 | CREATE TABLE IF NOT EXISTS "wikipedia_T_references".meta ( |
| 558 | key text PRIMARY KEY, |
| 559 | value text |
| 560 | ) WITH bloom_filter_fp_chance = 0.1 |
| 561 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 562 | AND comment = '' |
| 563 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 564 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 565 | AND crc_check_chance = 1.0 |
| 566 | AND dclocal_read_repair_chance = 0.1 |
| 567 | AND default_time_to_live = 0 |
| 568 | AND gc_grace_seconds = 864000 |
| 569 | AND max_index_interval = 2048 |
| 570 | AND memtable_flush_period_in_ms = 0 |
| 571 | AND min_index_interval = 128 |
| 572 | AND read_repair_chance = 0.0 |
| 573 | AND speculative_retry = '99PERCENTILE'; |
| 574 | |
| 575 | create_data_wikipedia_T_references: |
| 576 | statement: |
| 577 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 578 | "_domain" text, |
| 579 | key text, |
| 580 | headers text, |
| 581 | tid timeuuid, |
| 582 | value blob, |
| 583 | PRIMARY KEY (("_domain", key)) |
| 584 | ) WITH bloom_filter_fp_chance = 0.01 |
| 585 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 586 | AND comment = '' |
| 587 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 588 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 589 | AND crc_check_chance = 1.0 |
| 590 | AND dclocal_read_repair_chance = 0.1 |
| 591 | AND default_time_to_live = 0 |
| 592 | AND gc_grace_seconds = 864000 |
| 593 | AND max_index_interval = 2048 |
| 594 | AND memtable_flush_period_in_ms = 0 |
| 595 | AND min_index_interval = 128 |
| 596 | AND read_repair_chance = 0.0 |
| 597 | AND speculative_retry = '99PERCENTILE'; |
Beta:
"others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" "others_T_metadata" "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" "others_T_references"
| 1 | /Users/pchelko/.nvm/versions/node/v10.16.0/bin/node /Users/pchelko/wiki/restbase/sys/action.js |
|---|---|
| 2 | |
| 3 | create_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 4 | statement: | |
| 5 | CREATE KEYSPACE IF NOT EXISTS "others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 6 | |
| 7 | create_meta_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 8 | statement: | |
| 9 | CREATE TABLE IF NOT EXISTS "others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4".meta ( |
| 10 | key text PRIMARY KEY, |
| 11 | value text |
| 12 | ) WITH bloom_filter_fp_chance = 0.1 |
| 13 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 14 | AND comment = '' |
| 15 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 16 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 17 | AND crc_check_chance = 1.0 |
| 18 | AND dclocal_read_repair_chance = 0.1 |
| 19 | AND default_time_to_live = 0 |
| 20 | AND gc_grace_seconds = 864000 |
| 21 | AND max_index_interval = 2048 |
| 22 | AND memtable_flush_period_in_ms = 0 |
| 23 | AND min_index_interval = 128 |
| 24 | AND read_repair_chance = 0.0 |
| 25 | AND speculative_retry = '99PERCENTILE'; |
| 26 | |
| 27 | create_data_others_T_mediaEKhjXRLvi0_47tdHyL7nahpjtY4: |
| 28 | statement: |
| 29 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 30 | "_domain" text, |
| 31 | key text, |
| 32 | headers text, |
| 33 | tid timeuuid, |
| 34 | value blob, |
| 35 | PRIMARY KEY (("_domain", key)) |
| 36 | ) WITH bloom_filter_fp_chance = 0.01 |
| 37 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 38 | AND comment = '' |
| 39 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 40 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 41 | AND crc_check_chance = 1.0 |
| 42 | AND dclocal_read_repair_chance = 0.1 |
| 43 | AND default_time_to_live = 0 |
| 44 | AND gc_grace_seconds = 864000 |
| 45 | AND max_index_interval = 2048 |
| 46 | AND memtable_flush_period_in_ms = 0 |
| 47 | AND min_index_interval = 128 |
| 48 | AND read_repair_chance = 0.0 |
| 49 | AND speculative_retry = '99PERCENTILE'; |
| 50 | |
| 51 | |
| 52 | |
| 53 | create_others_T_metadata: |
| 54 | statement: | |
| 55 | CREATE KEYSPACE IF NOT EXISTS "others_T_metadata" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 56 | |
| 57 | create_meta_others_T_metadata: |
| 58 | statement: | |
| 59 | CREATE TABLE IF NOT EXISTS "others_T_metadata".meta ( |
| 60 | key text PRIMARY KEY, |
| 61 | value text |
| 62 | ) WITH bloom_filter_fp_chance = 0.1 |
| 63 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 64 | AND comment = '' |
| 65 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 66 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 67 | AND crc_check_chance = 1.0 |
| 68 | AND dclocal_read_repair_chance = 0.1 |
| 69 | AND default_time_to_live = 0 |
| 70 | AND gc_grace_seconds = 864000 |
| 71 | AND max_index_interval = 2048 |
| 72 | AND memtable_flush_period_in_ms = 0 |
| 73 | AND min_index_interval = 128 |
| 74 | AND read_repair_chance = 0.0 |
| 75 | AND speculative_retry = '99PERCENTILE'; |
| 76 | |
| 77 | create_data_others_T_metadata: |
| 78 | statement: |
| 79 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 80 | "_domain" text, |
| 81 | key text, |
| 82 | headers text, |
| 83 | tid timeuuid, |
| 84 | value blob, |
| 85 | PRIMARY KEY (("_domain", key)) |
| 86 | ) WITH bloom_filter_fp_chance = 0.01 |
| 87 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 88 | AND comment = '' |
| 89 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 90 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 91 | AND crc_check_chance = 1.0 |
| 92 | AND dclocal_read_repair_chance = 0.1 |
| 93 | AND default_time_to_live = 0 |
| 94 | AND gc_grace_seconds = 864000 |
| 95 | AND max_index_interval = 2048 |
| 96 | AND memtable_flush_period_in_ms = 0 |
| 97 | AND min_index_interval = 128 |
| 98 | AND read_repair_chance = 0.0 |
| 99 | AND speculative_retry = '99PERCENTILE'; |
| 100 | |
| 101 | |
| 102 | |
| 103 | create_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 104 | statement: | |
| 105 | CREATE KEYSPACE IF NOT EXISTS "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 106 | |
| 107 | create_meta_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 108 | statement: | |
| 109 | CREATE TABLE IF NOT EXISTS "others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA".meta ( |
| 110 | key text PRIMARY KEY, |
| 111 | value text |
| 112 | ) WITH bloom_filter_fp_chance = 0.1 |
| 113 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 114 | AND comment = '' |
| 115 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 116 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 117 | AND crc_check_chance = 1.0 |
| 118 | AND dclocal_read_repair_chance = 0.1 |
| 119 | AND default_time_to_live = 0 |
| 120 | AND gc_grace_seconds = 864000 |
| 121 | AND max_index_interval = 2048 |
| 122 | AND memtable_flush_period_in_ms = 0 |
| 123 | AND min_index_interval = 128 |
| 124 | AND read_repair_chance = 0.0 |
| 125 | AND speculative_retry = '99PERCENTILE'; |
| 126 | |
| 127 | create_data_others_T_mobileVuV78NVnWlTWLhDwwr5v2FMH2wA: |
| 128 | statement: |
| 129 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 130 | "_domain" text, |
| 131 | key text, |
| 132 | headers text, |
| 133 | tid timeuuid, |
| 134 | value blob, |
| 135 | PRIMARY KEY (("_domain", key)) |
| 136 | ) WITH bloom_filter_fp_chance = 0.01 |
| 137 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 138 | AND comment = '' |
| 139 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 140 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 141 | AND crc_check_chance = 1.0 |
| 142 | AND dclocal_read_repair_chance = 0.1 |
| 143 | AND default_time_to_live = 0 |
| 144 | AND gc_grace_seconds = 864000 |
| 145 | AND max_index_interval = 2048 |
| 146 | AND memtable_flush_period_in_ms = 0 |
| 147 | AND min_index_interval = 128 |
| 148 | AND read_repair_chance = 0.0 |
| 149 | AND speculative_retry = '99PERCENTILE'; |
| 150 | |
| 151 | |
| 152 | |
| 153 | create_others_T_references: |
| 154 | statement: | |
| 155 | CREATE KEYSPACE IF NOT EXISTS "others_T_references" WITH replication = {'class': 'NetworkTopologyStrategy', 'codfw': '3', 'eqiad': '3'} AND durable_writes = true; |
| 156 | |
| 157 | create_meta_others_T_references: |
| 158 | statement: | |
| 159 | CREATE TABLE IF NOT EXISTS "others_T_references".meta ( |
| 160 | key text PRIMARY KEY, |
| 161 | value text |
| 162 | ) WITH bloom_filter_fp_chance = 0.1 |
| 163 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 164 | AND comment = '' |
| 165 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.LeveledCompactionStrategy'} |
| 166 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 167 | AND crc_check_chance = 1.0 |
| 168 | AND dclocal_read_repair_chance = 0.1 |
| 169 | AND default_time_to_live = 0 |
| 170 | AND gc_grace_seconds = 864000 |
| 171 | AND max_index_interval = 2048 |
| 172 | AND memtable_flush_period_in_ms = 0 |
| 173 | AND min_index_interval = 128 |
| 174 | AND read_repair_chance = 0.0 |
| 175 | AND speculative_retry = '99PERCENTILE'; |
| 176 | |
| 177 | create_data_others_T_references: |
| 178 | statement: |
| 179 | CREATE TABLE IF NOT EXISTS "wikipedia_T_mobileoZCBVtILw5eSrwi0VIGaFVSr2jY".data ( |
| 180 | "_domain" text, |
| 181 | key text, |
| 182 | headers text, |
| 183 | tid timeuuid, |
| 184 | value blob, |
| 185 | PRIMARY KEY (("_domain", key)) |
| 186 | ) WITH bloom_filter_fp_chance = 0.01 |
| 187 | AND caching = {'keys': 'ALL', 'rows_per_partition': 'NONE'} |
| 188 | AND comment = '' |
| 189 | AND compaction = {'class': 'org.apache.cassandra.db.compaction.SizeTieredCompactionStrategy', 'max_threshold': '32', 'min_threshold': '4'} |
| 190 | AND compression = {'chunk_length_in_kb': '32', 'class': 'org.apache.cassandra.io.compress.LZ4Compressor'} |
| 191 | AND crc_check_chance = 1.0 |
| 192 | AND dclocal_read_repair_chance = 0.1 |
| 193 | AND default_time_to_live = 0 |
| 194 | AND gc_grace_seconds = 864000 |
| 195 | AND max_index_interval = 2048 |
| 196 | AND memtable_flush_period_in_ms = 0 |
| 197 | AND min_index_interval = 128 |
| 198 | AND read_repair_chance = 0.0 |
| 199 | AND speculative_retry = '99PERCENTILE'; |
| 200 | |
| 201 | |
| 202 | |
| 203 | Process finished with exit code 0 |