1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
|
CREATE FUNCTION @extschema@.partition_data_time(
p_parent_table text
, p_batch_count int DEFAULT 1
, p_batch_interval interval DEFAULT NULL
, p_lock_wait numeric DEFAULT 0
, p_order text DEFAULT 'ASC'
, p_analyze boolean DEFAULT true
, p_source_table text DEFAULT NULL
, p_ignored_columns text[] DEFAULT NULL
, p_override_system_value boolean DEFAULT false
)
RETURNS bigint
LANGUAGE plpgsql
AS $$
DECLARE
v_analyze boolean := FALSE;
v_async_rowcount int;
v_column_list_filtered text;
v_column_list_full text;
v_control text;
v_control_type text;
v_datetime_string text;
v_current_partition_name text;
v_default_exists boolean;
v_default_schemaname text;
v_default_tablename text;
v_epoch text;
v_last_partition text;
v_lock_iter int := 1;
v_lock_obtained boolean := FALSE;
v_max_partition_timestamp timestamptz;
v_min_partition_timestamp timestamptz;
v_override_statement text;
v_parent_schemaname text;
v_parent_tablename text;
v_partition_expression text;
v_partition_interval interval;
v_partition_suffix text;
v_partition_timestamp timestamptz[];
v_source_schemaname text;
v_source_tablename text;
v_rowcount bigint;
v_start_control timestamptz;
v_temp_storage_table text;
v_time_encoder text;
v_time_decoder text;
v_total_rows bigint := 0;
BEGIN
/*
* Populate the child table(s) of a time-based partition set with data from the default or a source table
*/
SELECT partition_interval::interval
, control
, time_encoder
, time_decoder
, datetime_string
, epoch
INTO v_partition_interval
, v_control
, v_time_encoder
, v_time_decoder
, v_datetime_string
, v_epoch
FROM @extschema@.part_config
WHERE parent_table = p_parent_table;
IF NOT FOUND THEN
RAISE EXCEPTION 'ERROR: No entry in part_config found for given table: %', p_parent_table;
END IF;
--TODO this was setting parent table as source back during trigger-based.
-- Probably don't need to do that anymore and can simplify this without needing to preserve the parent table names since those
-- will never be the source
-- TODO Also do this for ID partitioning
SELECT schemaname, tablename INTO v_source_schemaname, v_source_tablename
FROM pg_catalog.pg_tables
WHERE schemaname = split_part(p_parent_table, '.', 1)::name
AND tablename = split_part(p_parent_table, '.', 2)::name;
-- Preserve real parent tablename for use below
v_parent_schemaname := v_source_schemaname;
v_parent_tablename := v_source_tablename;
SELECT general_type INTO v_control_type FROM @extschema@.check_control_type(v_source_schemaname, v_source_tablename, v_control);
IF v_control_type <> 'time' THEN
IF (v_control_type = 'id' AND v_epoch = 'none') OR v_control_type NOT IN ('text', 'id', 'uuid') OR (v_control_type IN ('text', 'uuid') AND v_time_encoder IS NULL) THEN
RAISE EXCEPTION 'Cannot run on partition set without time based control column, an epoch flag set with an id column or time_encoder set with text column. Found control: %, epoch: %, time_encoder: %s', v_control_type, v_epoch, v_time_encoder;
END IF;
END IF;
SELECT n.nspname::text, c.relname::text
INTO v_default_schemaname, v_default_tablename
FROM pg_catalog.pg_inherits h
JOIN pg_catalog.pg_class c ON c.oid = h.inhrelid
JOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid
WHERE h.inhparent = format('%I.%I', v_source_schemaname, v_source_tablename)::regclass
AND pg_get_expr(relpartbound, c.oid) = 'DEFAULT';
-- Replace the parent variables with the source variables if using source table for child table data
IF p_source_table IS NOT NULL THEN
-- Set source table to user given source table instead of default table
v_source_schemaname := NULL;
v_source_tablename := NULL;
SELECT schemaname, tablename INTO v_source_schemaname, v_source_tablename
FROM pg_catalog.pg_tables
WHERE schemaname = split_part(p_source_table, '.', 1)::name
AND tablename = split_part(p_source_table, '.', 2)::name;
IF v_default_tablename IS NOT NULL THEN
-- Cannot set source parameter to default. Otherwise things get put into a weird loop since data is getting put back into where it was just pulled out
IF v_default_schemaname = v_source_schemaname AND v_default_tablename = v_source_tablename THEN
RAISE EXCEPTION 'Cannot set p_source_table to the same value as the default table for this partition set. If you are moving data out of the default, please leave p_source_table unset and data will be moved out of the default table automatically.';
END IF;
END IF;
IF v_source_tablename IS NULL THEN
RAISE EXCEPTION 'Given source table does not exist in system catalogs: %', p_source_table;
END IF;
ELSE
IF p_batch_interval IS NOT NULL AND p_batch_interval != v_partition_interval THEN
-- This is true because all data for a given child table must be moved out of the default partition before the child table can be created.
-- So cannot create the child table when only some of the data has been moved out of the default partition.
RAISE EXCEPTION 'If any interval smaller than the partition interval must be used for moving data out of the default, please use the partition_data_async() procedure.';
END IF;
-- Set source table to default table if p_source_table is not set, and it exists
-- Otherwise just return with a DEBUG that no data source exists
IF v_default_tablename IS NOT NULL THEN
v_source_schemaname := v_default_schemaname;
v_source_tablename := v_default_tablename;
v_default_exists := true;
v_temp_storage_table := format('%I', 'partman_temp_data_storage');
EXECUTE format ('CREATE TEMP TABLE IF NOT EXISTS %s (LIKE %I.%I INCLUDING INDEXES) ON COMMIT DROP', v_temp_storage_table, v_source_schemaname, v_source_tablename);
ELSE
RAISE DEBUG 'No default table found when partition_data_time() was called';
RETURN v_total_rows;
END IF;
END IF;
IF p_batch_interval IS NULL OR p_batch_interval > v_partition_interval THEN
p_batch_interval := v_partition_interval;
END IF;
SELECT partition_tablename INTO v_last_partition FROM @extschema@.show_partitions(p_parent_table, 'DESC') LIMIT 1;
v_partition_expression := CASE
WHEN v_epoch = 'seconds' THEN format('to_timestamp(%I)', v_control)
WHEN v_epoch = 'milliseconds' THEN format('to_timestamp((%I/1000)::float)', v_control)
WHEN v_epoch = 'microseconds' THEN format('to_timestamp((%I/1000000)::float)', v_control)
WHEN v_epoch = 'nanoseconds' THEN format('to_timestamp((%I/1000000000)::float)', v_control)
ELSE format('%I', v_control)
END;
-- Generate filtered column list to use in SELECT/INSERT statements below. Allows for exclusion of GENERATED (or any other desired) columns.
SELECT string_agg(quote_ident(attname), ',')
INTO v_column_list_filtered
FROM pg_catalog.pg_attribute a
JOIN pg_catalog.pg_class c ON a.attrelid = c.oid
JOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid
WHERE n.nspname = v_source_schemaname
AND c.relname = v_source_tablename
AND a.attnum > 0
AND a.attisdropped = false
AND attname <> ALL(COALESCE(p_ignored_columns, ARRAY[]::text[]));
-- Generate full column list to use in SELECT/INSERT statements below when temp table is in use
SELECT string_agg(quote_ident(attname), ',')
INTO v_column_list_full
FROM pg_catalog.pg_attribute a
JOIN pg_catalog.pg_class c ON a.attrelid = c.oid
JOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid
WHERE n.nspname = v_source_schemaname
AND c.relname = v_source_tablename
AND a.attnum > 0
AND a.attisdropped = false;
FOR i IN 1..p_batch_count LOOP
IF v_time_decoder IS NULL THEN
IF p_order = 'ASC' THEN
EXECUTE format('SELECT min(%s) FROM ONLY %I.%I', v_partition_expression, v_source_schemaname, v_source_tablename) INTO v_start_control;
ELSIF p_order = 'DESC' THEN
EXECUTE format('SELECT max(%s) FROM ONLY %I.%I', v_partition_expression, v_source_schemaname, v_source_tablename) INTO v_start_control;
ELSE
RAISE EXCEPTION 'Invalid value for p_order. Must be ASC or DESC';
END IF;
ELSE
-- Currently time decoder function must take a text parameter. See if this can be more flexible in the future
IF p_order = 'ASC' THEN
EXECUTE format('SELECT min(%s(%s::text)) FROM ONLY %I.%I', v_time_decoder, v_partition_expression, v_source_schemaname, v_source_tablename) INTO v_start_control;
ELSIF p_order = 'DESC' THEN
EXECUTE format('SELECT max(%s(%s::text)) FROM ONLY %I.%I', v_time_decoder, v_partition_expression, v_source_schemaname, v_source_tablename) INTO v_start_control;
ELSE
RAISE EXCEPTION 'Invalid value for p_order. Must be ASC or DESC';
END IF;
END IF;
IF v_start_control IS NULL THEN
EXIT;
END IF;
SELECT child_start_time INTO v_min_partition_timestamp FROM @extschema@.show_partition_info(v_parent_schemaname||'.'||v_last_partition
, v_partition_interval::text
, p_parent_table);
v_max_partition_timestamp := v_min_partition_timestamp + v_partition_interval;
LOOP
IF v_start_control >= v_min_partition_timestamp AND v_start_control < v_max_partition_timestamp THEN
EXIT;
ELSE
BEGIN
IF v_start_control >= v_max_partition_timestamp THEN
-- Keep going forward in time, checking if child partition time interval encompasses the current v_start_control value
v_min_partition_timestamp := v_max_partition_timestamp;
v_max_partition_timestamp := v_max_partition_timestamp + v_partition_interval;
ELSE
-- Keep going backwards in time, checking if child partition time interval encompasses the current v_start_control value
v_max_partition_timestamp := v_min_partition_timestamp;
v_min_partition_timestamp := v_min_partition_timestamp - v_partition_interval;
END IF;
EXCEPTION WHEN datetime_field_overflow THEN
RAISE EXCEPTION 'Attempted partition time interval is outside PostgreSQL''s supported time range.
Unable to create partition with interval before timestamp % ', v_min_partition_timestamp;
END;
END IF;
END LOOP;
v_partition_timestamp := ARRAY[v_min_partition_timestamp];
IF p_order = 'ASC' THEN
-- Ensure batch interval given as parameter doesn't cause maximum to overflow the current partition maximum
IF (v_start_control + p_batch_interval) >= (v_min_partition_timestamp + v_partition_interval) THEN
v_max_partition_timestamp := v_min_partition_timestamp + v_partition_interval;
ELSE
v_max_partition_timestamp := v_start_control + p_batch_interval;
END IF;
ELSIF p_order = 'DESC' THEN
-- Must be greater than max value still in parent table since query below grabs < max
v_max_partition_timestamp := v_min_partition_timestamp + v_partition_interval;
-- Ensure batch interval given as parameter doesn't cause minimum to underflow current partition minimum
IF (v_start_control - p_batch_interval) >= v_min_partition_timestamp THEN
v_min_partition_timestamp = v_start_control - p_batch_interval;
END IF;
ELSE
RAISE EXCEPTION 'Invalid value for p_order. Must be ASC or DESC';
END IF;
-- do some locking with timeout, if required
IF p_lock_wait > 0 THEN
v_lock_iter := 0;
WHILE v_lock_iter <= 5 LOOP
v_lock_iter := v_lock_iter + 1;
BEGIN
EXECUTE format('SELECT * FROM ONLY %I.%I WHERE %s >= %L AND %4$s < %6$L FOR UPDATE NOWAIT'
, v_source_schemaname
, v_source_tablename
, v_partition_expression
, v_min_partition_timestamp
, v_max_partition_timestamp);
v_lock_obtained := TRUE;
EXCEPTION
WHEN lock_not_available THEN
PERFORM pg_sleep( p_lock_wait / 5.0 );
CONTINUE;
END;
EXIT WHEN v_lock_obtained;
END LOOP;
IF NOT v_lock_obtained THEN
RETURN -1;
END IF;
END IF;
-- This suffix generation code is in create_partition_time() as well
v_partition_suffix := to_char(v_min_partition_timestamp, v_datetime_string);
v_current_partition_name := @extschema@.check_name_length(v_parent_tablename, v_partition_suffix, TRUE);
IF p_override_system_value THEN
v_override_statement = ' OVERRIDING SYSTEM VALUE ';
ELSE
v_override_statement = ' ';
END IF;
IF v_default_exists THEN
-- Child tables cannot be created if data that belongs to it exists in the default
-- Have to move data out to temporary location, create child table, then move it back
-- Temp table created above to avoid excessive temp creation in loop
-- Must use full column list here since the temp table cannot have generated/identity values for defaults.
-- This allows for all scenarios where some people may want newly generated values and others may not.
-- Those that want them are handled by the filtered column list when moving to the real table
IF v_time_encoder IS NULL THEN
EXECUTE format('WITH partition_data AS (
DELETE FROM %1$I.%2$I WHERE %3$s >= %4$L AND %3$s < %5$L RETURNING *)
INSERT INTO %6$s (%7$s) SELECT %7$s FROM partition_data'
, v_source_schemaname
, v_source_tablename
, v_partition_expression
, v_min_partition_timestamp
, v_max_partition_timestamp
, v_temp_storage_table
, v_column_list_full);
ELSE
EXECUTE format('WITH partition_data AS (
DELETE FROM %1$I.%2$I WHERE %8$s(%3$s::text) >= %4$L AND %8$s(%3$s::text) < %5$L RETURNING *)
INSERT INTO %6$s (%7$s) SELECT %7$s FROM partition_data'
, v_source_schemaname
, v_source_tablename
, v_partition_expression
, v_min_partition_timestamp
, v_max_partition_timestamp
, v_temp_storage_table
, v_column_list_full
, v_time_decoder);
END IF;
-- Set analyze to true if a table is created
v_analyze := @extschema@.create_partition_time(p_parent_table, v_partition_timestamp);
EXECUTE format('WITH partition_data AS (
DELETE FROM %s RETURNING *)
INSERT INTO %I.%I (%4$s) %5$s SELECT %4$s FROM partition_data'
, v_temp_storage_table
, v_parent_schemaname
, v_current_partition_name
, v_column_list_filtered
, v_override_statement);
ELSE
-- Set analyze to true if a table is created
v_analyze := @extschema@.create_partition_time(p_parent_table, v_partition_timestamp);
IF v_time_encoder IS NULL THEN
EXECUTE format('WITH partition_data AS (
DELETE FROM ONLY %I.%I WHERE %s >= %L AND %3$s < %5$L RETURNING *)
INSERT INTO %6$I.%7$I (%8$s) %9$s SELECT %8$s FROM partition_data'
, v_source_schemaname
, v_source_tablename
, v_partition_expression
, v_min_partition_timestamp
, v_max_partition_timestamp
, v_parent_schemaname
, v_current_partition_name
, v_column_list_filtered
, v_override_statement);
ELSE
EXECUTE format('WITH partition_data AS (
DELETE FROM ONLY %I.%I WHERE %10$s(%3$s::text) >= %L AND %10$s(%3$s::text) < %5$L RETURNING *)
INSERT INTO %6$I.%7$I (%8$s) %9$s SELECT %8$s FROM partition_data'
, v_source_schemaname
, v_source_tablename
, v_partition_expression
, v_min_partition_timestamp
, v_max_partition_timestamp
, v_parent_schemaname
, v_current_partition_name
, v_column_list_filtered
, v_override_statement
, v_time_decoder);
END IF;
END IF;
GET DIAGNOSTICS v_rowcount = ROW_COUNT;
v_total_rows := v_total_rows + v_rowcount;
IF v_rowcount = 0 THEN
EXIT;
END IF;
END LOOP;
-- v_analyze is a local check if a new table is made.
-- p_analyze is a parameter to say whether to run the analyze at all. Used by create_parent() to avoid long exclusive lock or run_maintenence() to avoid long creation runs.
IF v_analyze AND p_analyze THEN
RAISE DEBUG 'partiton_data_time: Begin analyze of %.%', v_parent_schemaname, v_parent_tablename;
EXECUTE format('ANALYZE %I.%I', v_parent_schemaname, v_parent_tablename);
RAISE DEBUG 'partiton_data_time: End analyze of %.%', v_parent_schemaname, v_parent_tablename;
END IF;
RETURN v_total_rows;
END
$$;
|