File size: 6,564 Bytes
1e92f2d |
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 |
-- name: CleanupMgrDeleteOldAlerts :execrows
-- CleanupMgrDeleteOldAlerts will delete old alerts from the alerts table that are closed and older than the given number of days before now.
DELETE FROM alerts
WHERE id = ANY (
SELECT
id
FROM
alerts a
WHERE
status = 'closed'
AND a.created_at < now() -(sqlc.arg(stale_threshold_days)::bigint * '1 day'::interval)
ORDER BY
id
LIMIT 100
FOR UPDATE
SKIP LOCKED);
-- name: CleanupMgrFindStaleAlerts :many
-- CleanupMgrFindStaleAlerts will find alerts that are triggered or active and have no activity in specified number of days.
SELECT
id
FROM
alerts a
WHERE (a.status = 'triggered'
OR (sqlc.arg(include_acked)
AND a.status = 'active'))
AND created_at <= now() - '1 day'::interval * sqlc.arg(auto_close_threshold_days)
AND NOT EXISTS (
SELECT
1
FROM
alert_logs log
WHERE
timestamp > now() - '1 day'::interval * sqlc.arg(auto_close_threshold_days)
AND log.alert_id = a.id)
LIMIT 100;
-- name: CleanupMgrDeleteOldOverrides :execrows
-- CleanupMgrDeleteOldOverrides will delete old overrides from the user_overrides table that are older than the given number of days before now.
DELETE FROM user_overrides
WHERE id = ANY (
SELECT
id
FROM
user_overrides
WHERE
end_time <(now() - '1 day'::interval * sqlc.arg(history_threshold_days))
LIMIT 100
FOR UPDATE
SKIP LOCKED);
-- name: CleanupMgrDeleteOldScheduleShifts :execrows
-- CleanupMgrDeleteOldScheduleShifts will delete old schedule shifts from the schedule_on_call_users table that are older than the given number of days before now.
DELETE FROM schedule_on_call_users
WHERE id = ANY (
SELECT
id
FROM
schedule_on_call_users
WHERE
end_time <(now() - '1 day'::interval * sqlc.arg(history_threshold_days))
LIMIT 100
FOR UPDATE
SKIP LOCKED);
-- name: CleanupMgrDeleteOldStepShifts :execrows
-- CleanupMgrDeleteOldStepShifts will delete old EP step shifts from the ep_step_on_call_users table that are older than the given number of days before now.
DELETE FROM ep_step_on_call_users
WHERE id = ANY (
SELECT
id
FROM
ep_step_on_call_users
WHERE
end_time <(now() - '1 day'::interval * sqlc.arg(history_threshold_days))
LIMIT 100
FOR UPDATE
SKIP LOCKED);
-- name: CleanupMgrScheduleNeedsCleanup :many
-- CleanupMgrScheduleNeedsCleanup will find schedules that need to be cleaned up. The last_cleanup_at field is used to ensure we clean up each schedule data at most once per interval.
SELECT
schedule_id
FROM
schedule_data
WHERE
data NOTNULL
AND (last_cleanup_at ISNULL
OR last_cleanup_at <= now() - '1 day'::interval * sqlc.arg(cleanup_interval_days)::int)
ORDER BY
last_cleanup_at ASC nulls FIRST;
-- name: CleanupMgrScheduleData :one
-- CleanupMgrScheduleData will select the schedule data for the given schedule id.
SELECT
data
FROM
schedule_data
WHERE
schedule_id = $1
FOR UPDATE
LIMIT 1;
-- name: CleanupMgrUpdateScheduleData :exec
-- CleanupMgrUpdateScheduleData will update the last_cleanup_at and data fields in the schedule_data table.
UPDATE
schedule_data
SET
last_cleanup_at = now(),
data = $2
WHERE
schedule_id = $1;
-- name: CleanupMgrScheduleDataSkip :exec
-- CleanupMgrScheduleDataSkip will update the last_cleanup_at field in the schedule_data table.
UPDATE
schedule_data
SET
last_cleanup_at = now()
WHERE
schedule_id = $1;
-- name: CleanupMgrVerifyUsers :many
-- CleanupMgrVerifyUsers will verify that the given user ids exist in the users table.
SELECT
id
FROM
users
WHERE
id = ANY (sqlc.arg(user_ids)::uuid[]);
-- name: CleanupMgrAlertLogsMinMax :one
-- CleanupMgrAlertLogsMinMax will find the minimum and maximum id of the alert_logs table.
SELECT
coalesce(min(id), 0)::bigint AS min_id,
coalesce(max(id), 0)::bigint AS max_id
FROM
alert_logs;
-- name: CleanupAlertLogs :one
WITH scope AS (
SELECT
id
FROM
alert_logs l
WHERE
l.id BETWEEN @start_id AND @end_id - 1
ORDER BY
l.id
LIMIT @batch_size
),
id_range AS (
SELECT
min(id),
max(id)
FROM
scope
),
_delete AS (
DELETE FROM alert_logs
WHERE id = ANY (
SELECT
id
FROM
alert_logs
WHERE
id BETWEEN (
SELECT
min
FROM
id_range)
AND (
SELECT
max
FROM
id_range)
AND NOT EXISTS (
SELECT
1
FROM
alerts
WHERE
alert_id = id)
FOR UPDATE
SKIP LOCKED))
SELECT
id
FROM
scope OFFSET @batch_size - 1
LIMIT 1;
-- name: CleanupMgrDeleteOldSessions :execrows
-- CleanupMgrDeleteOldSessions will delete old sessions from the auth_user_sessions table that are older than the given number of days before now.
DELETE FROM auth_user_sessions
WHERE id = ANY (
SELECT
id
FROM
auth_user_sessions
WHERE
last_access_at <(now() - '1 day'::interval * sqlc.arg(max_session_age_days)::int)
LIMIT 100
FOR UPDATE
SKIP LOCKED);
-- name: CleanupMgrDisableOldCalSub :execrows
-- CleanupMgrDeleteOldCalSub will disable old calendar subscriptions from the user_calendar_subscriptions table that are unused for at least the given number of days.
UPDATE
user_calendar_subscriptions
SET
disabled = TRUE
WHERE
id = ANY (
SELECT
id
FROM
user_calendar_subscriptions
WHERE
greatest(last_access, last_update) <(now() - '1 day'::interval * sqlc.arg(inactivity_threshold_days)::int)
AND NOT disabled
ORDER BY
id
LIMIT 100
FOR UPDATE
SKIP LOCKED);
|