2025-01-27 04:40:38 -05:00
|
|
|
SELECT
|
|
|
|
|
n.notification_id,
|
|
|
|
|
n.notification_reason,
|
|
|
|
|
UNIX_TIMESTAMP(n.end_time) AS end_time,
|
|
|
|
|
n.end_time_usec,
|
|
|
|
|
n.state,
|
|
|
|
|
COALESCE(n.output, '') AS output,
|
|
|
|
|
n.long_output,
|
|
|
|
|
n.contacts_notified,
|
|
|
|
|
o.objecttype_id,
|
|
|
|
|
o.name1,
|
|
|
|
|
COALESCE(o.name2, '') AS name2
|
2022-05-19 05:46:49 -04:00
|
|
|
FROM icinga_notifications n USE INDEX (PRIMARY)
|
|
|
|
|
INNER JOIN icinga_objects o ON o.object_id=n.object_id
|
2022-09-06 09:50:04 -04:00
|
|
|
WHERE n.notification_id BETWEEN :fromid AND :toid
|
|
|
|
|
AND n.notification_id <= :cache_limit AND n.notification_id > :checkpoint -- where we were interrupted
|
2022-05-19 11:11:45 -04:00
|
|
|
ORDER BY n.notification_id -- this way we know what has already been migrated from just the last row's ID
|
2022-05-19 05:46:49 -04:00
|
|
|
LIMIT :bulk
|