exwiw 0.9.12 → 0.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/exwiw/adapter/identifier_quoting.rb +3 -3
- data/lib/exwiw/adapter/mysql_adapter.rb +78 -4
- data/lib/exwiw/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc7d217b16a94d775d54d12c668886e433a44212a92631ea47258c194d71b542
|
|
4
|
+
data.tar.gz: 8ca5d14a2289315c1595ac249dc6bfc9ecdea1806403321850adadfcb8ae18d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 134aa36ec540862c384ea51cbab3f1cd04a8ed14710bac097cb6aa9aeaf97dae03b9b74d752da3c3bd594390b70a5238961ad30a8713ca0b5c6403114c4bc666
|
|
7
|
+
data.tar.gz: 3b7a46ac569963c46faead09ad5f7357e3be1a815e0fa8bcc641a3287e8e1aa07a18af62cb552e8a09b4615e64376892df16e8aae0ad4cba048ee05b6555e6b5
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.9.13] - 2026-07-28
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- **The mysql adapter materializes each scope id-set into a session `TEMPORARY TABLE` and reuses it across tables.** Previously the same scope subquery (e.g. the dump target's users id-set, including a multi-arm `reverse_scope` UNION) was embedded — and re-evaluated by the server — in every descendant table's extraction query, which dominated export time on large tenants. During `export`, each distinct id-set is now computed once (`CREATE TEMPORARY TABLE ... AS SELECT DISTINCT ...`, indexed), and descendant queries JOIN the temp table; nested scopes are materialized bottom-up so outer sets build from already-materialized inner ones. The dumped rows are identical. `explain` still compiles the inline form and executes nothing. Read-only replicas are supported: `NO_ENGINE_SUBSTITUTION` is stripped from the session `sql_mode` before the first CREATE, so e.g. Aurora MySQL 3 reader instances (which cannot create InnoDB temp tables) substitute a permitted engine instead of failing with ERROR 3161. If temp table creation still fails (e.g. the DB user lacks `CREATE TEMPORARY TABLES`), materialization is disabled for the run with a warning and extraction falls back to the previous inline subqueries. postgresql/sqlite adapters are unchanged.
|
|
10
|
+
|
|
5
11
|
## [0.9.12] - 2026-07-09
|
|
6
12
|
|
|
7
13
|
## [0.9.11] - 2026-07-09
|
|
@@ -119,7 +119,7 @@ module Exwiw
|
|
|
119
119
|
day_minute day_second dec decimal declare default delayed delete
|
|
120
120
|
dense_rank desc describe deterministic distinct distinctrow div double
|
|
121
121
|
drop dual each else elseif empty enclosed escaped except exists exit
|
|
122
|
-
explain false fetch first_value float float4 float8 for force foreign
|
|
122
|
+
explain external false fetch first_value float float4 float8 for force foreign
|
|
123
123
|
from fulltext function generated get grant group grouping groups
|
|
124
124
|
having high_priority hour_microsecond hour_minute hour_second if
|
|
125
125
|
ignore in index infile inner inout insensitive insert int int1 int2
|
|
@@ -132,13 +132,13 @@ module Exwiw
|
|
|
132
132
|
minute_second mod modifies natural not no_write_to_binlog nth_value
|
|
133
133
|
ntile null numeric of on optimize optimizer_costs option optionally
|
|
134
134
|
or order out outer outfile over partition percent_rank precision
|
|
135
|
-
primary procedure purge range rank read reads read_write real
|
|
135
|
+
primary procedure purge qualify range rank read reads read_write real
|
|
136
136
|
recursive references regexp release rename repeat replace require
|
|
137
137
|
resignal restrict return revoke right rlike row rows row_number
|
|
138
138
|
schema schemas second_microsecond select sensitive separator set show
|
|
139
139
|
signal smallint spatial specific sql sqlexception sqlstate sqlwarning
|
|
140
140
|
sql_big_result sql_calc_found_rows sql_small_result ssl starting
|
|
141
|
-
stored straight_join system table terminated then tinyblob tinyint
|
|
141
|
+
stored straight_join system table tablesample terminated then tinyblob tinyint
|
|
142
142
|
tinytext to trailing trigger true undo union unique unlock unsigned
|
|
143
143
|
update usage use using utc_date utc_time utc_timestamp values
|
|
144
144
|
varbinary varchar varcharacter varying virtual when where while
|
|
@@ -59,11 +59,15 @@ module Exwiw
|
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
def execute(query_ast)
|
|
62
|
-
data_sql =
|
|
62
|
+
data_sql = nil
|
|
63
|
+
count_sql = nil
|
|
63
64
|
# Count via the same FROM/JOIN/WHERE (projection replaced by COUNT(*)) so
|
|
64
65
|
# the Runner can skip empty tables and log the row count without draining
|
|
65
66
|
# the stream. See StreamingResult for why this is not a subquery wrap.
|
|
66
|
-
|
|
67
|
+
with_scope_materialization do
|
|
68
|
+
data_sql = commented_sql(query_ast)
|
|
69
|
+
count_sql = "#{sql_query_comment(query_ast)} #{compile_ast(query_ast, count_only: true)}"
|
|
70
|
+
end
|
|
67
71
|
|
|
68
72
|
@logger.debug(" Executing SQL (streaming): \n#{data_sql}")
|
|
69
73
|
StreamingResult.new(client: connection, data_sql: data_sql, count_sql: count_sql)
|
|
@@ -292,16 +296,86 @@ module Exwiw
|
|
|
292
296
|
# to `<col> IN (subquery)`.
|
|
293
297
|
private def compile_scope_join(from_table_name, where_clause, idx)
|
|
294
298
|
subquery = where_clause.value
|
|
295
|
-
projection = quote_identifier(subquery_projection_name(subquery))
|
|
296
|
-
src_alias = "exwiw_scope_src_#{idx}"
|
|
297
299
|
ids_alias = "exwiw_scope_ids_#{idx}"
|
|
298
300
|
outer_key = qualified_name(from_table_name, where_clause.column_name)
|
|
299
301
|
|
|
302
|
+
if (scope_table = materialized_scope_table(subquery))
|
|
303
|
+
return "JOIN #{quote_table_name(scope_table)} AS #{ids_alias} " \
|
|
304
|
+
"ON #{outer_key} = #{ids_alias}.exwiw_scope_id"
|
|
305
|
+
end
|
|
306
|
+
|
|
307
|
+
projection = quote_identifier(subquery_projection_name(subquery))
|
|
308
|
+
src_alias = "exwiw_scope_src_#{idx}"
|
|
309
|
+
|
|
300
310
|
"JOIN (SELECT DISTINCT #{src_alias}.#{projection} AS exwiw_scope_id " \
|
|
301
311
|
"FROM (#{compile_subquery(subquery)}) AS #{src_alias}) AS #{ids_alias} " \
|
|
302
312
|
"ON #{outer_key} = #{ids_alias}.exwiw_scope_id"
|
|
303
313
|
end
|
|
304
314
|
|
|
315
|
+
# The same scope subquery (e.g. the target-tenant users id-set) is embedded
|
|
316
|
+
# in every descendant table's extraction query, so the source DB would
|
|
317
|
+
# re-evaluate it once per table — the dominant cost on large tenants.
|
|
318
|
+
# During #execute, materialize each distinct id-set once into a session
|
|
319
|
+
# TEMPORARY TABLE and JOIN that instead. Keyed by the compiled SELECT, so
|
|
320
|
+
# nested scopes reuse already-materialized parents. #explain and
|
|
321
|
+
# #describe_query compile without the flag and stay side-effect free.
|
|
322
|
+
private def with_scope_materialization
|
|
323
|
+
@materialize_scopes = true
|
|
324
|
+
yield
|
|
325
|
+
ensure
|
|
326
|
+
@materialize_scopes = false
|
|
327
|
+
end
|
|
328
|
+
|
|
329
|
+
private def materialized_scope_table(subquery)
|
|
330
|
+
return nil unless @materialize_scopes
|
|
331
|
+
return nil if @scope_materialization_disabled
|
|
332
|
+
|
|
333
|
+
select_sql = "SELECT DISTINCT exwiw_scope_src.#{quote_identifier(subquery_projection_name(subquery))} " \
|
|
334
|
+
"AS exwiw_scope_id FROM (#{compile_subquery(subquery)}) AS exwiw_scope_src"
|
|
335
|
+
|
|
336
|
+
@scope_id_tables ||= {}
|
|
337
|
+
begin
|
|
338
|
+
prepare_scope_session
|
|
339
|
+
@scope_id_tables[select_sql] ||= create_scope_id_table(select_sql)
|
|
340
|
+
rescue StandardError => e
|
|
341
|
+
# e.g. the DB user lacks CREATE TEMPORARY TABLES; keep extracting with
|
|
342
|
+
# the inline (per-query) scope subqueries instead of failing the run.
|
|
343
|
+
@scope_materialization_disabled = true
|
|
344
|
+
@logger.warn("Disabling scope id-set materialization (#{e.class}: #{e.message}); " \
|
|
345
|
+
"falling back to inline scope subqueries.")
|
|
346
|
+
nil
|
|
347
|
+
end
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# Read-only replicas (e.g. Aurora MySQL 3 reader instances) cannot create
|
|
351
|
+
# InnoDB temporary tables: with NO_ENGINE_SUBSTITUTION in sql_mode the
|
|
352
|
+
# CREATE fails outright (ERROR 3161) instead of substituting a permitted
|
|
353
|
+
# engine such as MyISAM. Strip that flag once per session — it only
|
|
354
|
+
# governs DDL engine fallback, not query semantics.
|
|
355
|
+
private def prepare_scope_session
|
|
356
|
+
return if @scope_session_prepared
|
|
357
|
+
|
|
358
|
+
mode = connection.query("SELECT @@SESSION.sql_mode").rows.dig(0, 0).to_s
|
|
359
|
+
cleaned = mode.split(',').reject { |part| part == 'NO_ENGINE_SUBSTITUTION' }.join(',')
|
|
360
|
+
connection.query("SET SESSION sql_mode = '#{cleaned}'") unless cleaned == mode
|
|
361
|
+
@scope_session_prepared = true
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
# If a step after CREATE fails, the temp table stays in the session until
|
|
365
|
+
# disconnect, but it is never referenced: the name is only cached (and thus
|
|
366
|
+
# only joined) after all three statements succeed, and the caller disables
|
|
367
|
+
# materialization for the rest of the run.
|
|
368
|
+
private def create_scope_id_table(select_sql)
|
|
369
|
+
name = "exwiw_scope_id_set_#{@scope_id_tables.size}"
|
|
370
|
+
connection.query("CREATE TEMPORARY TABLE #{quote_table_name(name)} AS #{select_sql}")
|
|
371
|
+
# ROW_COUNT() reads the CTAS insert count in O(1); a COUNT(*) would
|
|
372
|
+
# re-scan the whole id-set just for this log line.
|
|
373
|
+
count = connection.query("SELECT ROW_COUNT()").rows.dig(0, 0)
|
|
374
|
+
connection.query("ALTER TABLE #{quote_table_name(name)} ADD INDEX `index_exwiw_scope_id` (exwiw_scope_id)")
|
|
375
|
+
@logger.info(" Materialized scope id set #{name} (#{count} ids).")
|
|
376
|
+
name
|
|
377
|
+
end
|
|
378
|
+
|
|
305
379
|
private def compile_where_condition(where_clause, table_name)
|
|
306
380
|
# Use as it is if it's a raw query
|
|
307
381
|
return where_clause if where_clause.is_a?(String)
|
data/lib/exwiw/version.rb
CHANGED