mirror of
https://github.com/plausible/analytics.git
synced 2024-11-23 03:04:43 +03:00
8ba2b934b3
* Add data migration for moving to VersionedCollapsingMergeTree This has been tested locally and partially on staging. Still requires a bit of work to verify. Verification query: ``` SELECT main._partition_id, tmp.count, main.count FROM ( SELECT _partition_id, count() AS count FROM sessions_v2_tmp_versioned GROUP BY _partition_id ) AS tmp FULL OUTER JOIN ( SELECT _partition_id, count() AS count FROM sessions_v2 GROUP BY _partition_id ) AS main ON (tmp._partition_id == main._partition_id) ORDER BY main._partition_id ``` * Add an early exit to migration * cluster? extract common code |
||
---|---|---|
.. | ||
attach-partition.sql.eex | ||
check-replicas.sql.eex | ||
create-sessions-tmp-table.sql.eex | ||
drop-sessions-tmp-table.sql.eex | ||
exchange-sessions-tables.sql.eex | ||
get-sessions-table-settings.sql.eex | ||
list-partitions.sql.eex | ||
rename-table.sql.eex |