@socialgouv/matomo-postgres 2.4.2 → 2.4.3

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.
@@ -0,0 +1,57 @@
1
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
2
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
3
+ return new (P || (P = Promise))(function (resolve, reject) {
4
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
5
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
6
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
7
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
8
+ });
9
+ };
10
+ import { sql } from 'kysely';
11
+ export function up(db) {
12
+ return __awaiter(this, void 0, void 0, function* () {
13
+ // The EXCEPTION handler was added to 20250715-01-weekly-partitioning.ts in
14
+ // commit 7d703de, but that file had already been applied on existing
15
+ // databases, so kysely never re-ran it. This migration re-applies the
16
+ // CREATE OR REPLACE on already-deployed databases so they stop crashing
17
+ // with `relation "matomo_partitioned_YYYYwWW" already exists` under the
18
+ // p-all concurrent import.
19
+ yield sql `
20
+ CREATE OR REPLACE FUNCTION create_weekly_partition_if_not_exists(table_name text, partition_date timestamptz)
21
+ RETURNS void AS $$
22
+ DECLARE
23
+ partition_name text;
24
+ start_date timestamptz;
25
+ end_date timestamptz;
26
+ year_week text;
27
+ BEGIN
28
+ start_date := date_trunc('week', partition_date);
29
+ end_date := start_date + interval '1 week';
30
+
31
+ year_week := to_char(start_date, 'IYYY') || 'w' || to_char(start_date, 'IW');
32
+ partition_name := table_name || '_' || year_week;
33
+
34
+ IF NOT EXISTS (
35
+ SELECT 1 FROM pg_class c
36
+ JOIN pg_namespace n ON n.oid = c.relnamespace
37
+ WHERE c.relname = partition_name
38
+ AND n.nspname = current_schema()
39
+ ) THEN
40
+ EXECUTE format('CREATE TABLE %I PARTITION OF %I FOR VALUES FROM (%L) TO (%L)',
41
+ partition_name, table_name, start_date, end_date);
42
+
43
+ RAISE NOTICE 'Created partition % for range % to %', partition_name, start_date, end_date;
44
+ END IF;
45
+ EXCEPTION
46
+ WHEN duplicate_table THEN
47
+ RAISE NOTICE 'Partition % already exists (created concurrently)', partition_name;
48
+ END;
49
+ $$ LANGUAGE plpgsql;
50
+ `.execute(db);
51
+ });
52
+ }
53
+ export function down(_db) {
54
+ return __awaiter(this, void 0, void 0, function* () {
55
+ // No-op: rolling back would re-introduce the race condition crash.
56
+ });
57
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@socialgouv/matomo-postgres",
3
3
  "description": "Extract visitor events from Matomo API and push to Postgres",
4
- "version": "2.4.2",
4
+ "version": "2.4.3",
5
5
  "packageManager": "pnpm@10.28.1",
6
6
  "types": "types/index.d.ts",
7
7
  "license": "Apache-2.0",