platform icon indicating copy to clipboard operation
platform copied to clipboard

ER_LOCK_DEADLOCK

Open leobarcellos opened this issue 1 year ago • 18 comments

I'm receiving constantly deadlock issues and I don't know what else I could do. I was working with 5 workers, maybe they were competing. However I just modified to just 1 worker and it's still happening.

I even tried putting some locks (using acquireLock and releaseLock) before doing these jobs, but even this doesn't worked (the ER_LOCK_DEADLOCK error is from AWS RDS Aurora MySQL and I'm not sure how can I solve this)

image

Deadlock issues generally are solved on the application, but I don't know if this is the case, I even tried to use this repo: https://www.npmjs.com/package/@tanjaae/knex-mysql2-deadlock

But could not manage it to work, I think they conflict with current knex/mysql2 versions.

@pushchris don't you suffer with these deadlock on worker instances?

leobarcellos avatar Nov 13 '24 17:11 leobarcellos

image

Is this expected behaviour? Or something is wrong because I have 8k+ jobs on queue?

leobarcellos avatar Nov 13 '24 18:11 leobarcellos

Update: I increased REDIS_CONCURRENCY of workers and increased memory a little bit, now sometimes I get 0 in queue, and on busy hours it's average 3k in queue

However, I sill see deadlock issues.

leobarcellos avatar Nov 14 '24 18:11 leobarcellos

If you have perpetual jobs in the queue you normally should spin up an additional worker to help handle the load. Would generally suggest going that approach vs increasing the concurrency too high. There will most likely always be jobs in the queue though if you have data always coming in, unsure of what your setup is.

As for the deadlocks, looks like they are getting retried (jobs all retry) but still failing which is interesting and leads me to believe whatever the lock is may be fairly long running. Could you see if you can get any more information on the deadlocks? https://www.percona.com/blog/how-to-deal-with-mysql-deadlocks/ would be curious to see what table is preventing the inserts. Typically inserts don't have problems unless 1) the record already exists (which is most likely not the case here since on retry it still fails) or 2) an index behind the record is being blocked by other inserts of operations.

pushchris avatar Nov 15 '24 02:11 pushchris

Yeah, I checked some of the deadlock logs. Seems like it's related to journey step.

LATEST DETECTED DEADLOCK
------------------------
2024-11-19 16:53:41 22463513548544
*** (1) TRANSACTION:
TRANSACTION 174552900, ACTIVE 41 sec starting index read
mysql tables in use 1, locked 1
LOCK WAIT 3 lock struct(s), heap size 1128, 2 row lock(s)
MySQL thread id 146539, OS thread handle 22466070546176, query id 607006322 172.30.2.161 overwatch updating
update `journey_user_step` set `type` = 'pending', `updated_at` = '2024-11-19 16:53:00.071' where `journey_id` = 42 and `type` = 'delay' and `delay_until` <= '2024-11-19 16:53:00.071'

*** (1) HOLDS THE LOCK(S):
RECORD LOCKS space id 56 page no 93799 n bits 480 index journey_user_step_journey_id_foreign of table `parcelvoy`.`journey_user_step` trx id 174552900 lock_mode X
Record lock, heap no 2 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 0000002a; asc    *;;
 1: len 4; hex 00113852; asc   8R;;


*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 56 page no 19501 n bits 152 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 174552900 lock_mode X locks rec but not gap waiting
Record lock, heap no 50 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 00113852; asc   8R;;
 1: len 6; hex 000000001790; asc       ;;
 2: len 7; hex 82000000c71092; asc        ;;
 3: len 4; hex 0000b7cb; asc     ;;
 4: len 4; hex 0000002a; asc    *;;
 5: len 4; hex 00000291; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 670d3628; asc g 6(;;
 8: len 4; hex 670d7bcd; asc g { ;;
 9: SQL NULL;
 10: SQL NULL;
 11: len 4; hex 670d7bcd; asc g { ;;
 12: len 30; hex 000100de030b0005000010006576656e741e00ce03d6000300d9000300dc; asc             event             ; (total 991 bytes);
 13: SQL NULL;


*** (2) TRANSACTION:
TRANSACTION 174518507, ACTIVE 99 sec fetching rows
mysql tables in use 1, locked 1
LOCK WAIT 64442 lock struct(s), heap size 7348344, 6219107 row lock(s)
MySQL thread id 146536, OS thread handle 22463511447296, query id 606884421 172.30.2.161 overwatch updating
update `journey_user_step` set `type` = 'pending', `updated_at` = '2024-11-19 16:52:02.662' where `journey_id` = 25 and `type` = 'delay' and `delay_until` <= '2024-11-19 16:52:02.662'

*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 56 page no 19501 n bits 152 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 174518507 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;

Record lock, heap no 2 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 00113822; asc   8";;
 1: len 6; hex 000000001790; asc       ;;
 2: len 7; hex 82000000c70df2; asc        ;;
 3: len 4; hex 0000a442; asc    B;;
 4: len 4; hex 0000002d; asc    -;;
 5: len 4; hex 000002cd; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 670d3606; asc g 6 ;;
 8: len 4; hex 670d3615; asc g 6 ;;
 9: SQL NULL;
 10: SQL NULL;
 11: len 4; hex 670d3615; asc g 6 ;;
 12: len 30; hex 000100d8000b0005000010006576656e740800c8003c0003003f00040043; asc             event    <   ?   C; (total 217 bytes);
 13: SQL NULL;

leobarcellos avatar Nov 19 '24 16:11 leobarcellos

Interestingly, I ran a select count(*) from journey_user_step to check the size, and it made me wait like 40+ seconds to retrieve the answer.

(And count was 6M)

Weird how long this is taking

leobarcellos avatar Nov 19 '24 16:11 leobarcellos

image

These average latency is kinda high for some SQL, like, 3s, 5s, 6s on average for a query is weirdly high.

leobarcellos avatar Nov 19 '24 20:11 leobarcellos

Well, I just increased the AWS RDS instance size and it looks like the problem went away. At least on the first hour I cannot see any deadlock, I will update here after 24h

Maybe the bottleneck was on the DB instance itself

leobarcellos avatar Nov 19 '24 21:11 leobarcellos

Well, too soon. I just got a deadlock. But for sure it lowered the frequency.

TRANSACTION 181033389, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s), undo log entries 1
MySQL thread id 1623, OS thread handle 22849702577920, query id 6008867 172.30.2.161 overwatch update
insert into `journey_user_step` (`created_at`, `data`, `delay_until`, `ended_at`, `entrance_id`, `id`, `journey_id`, `ref`, `step_id`, `type`, `updated_at`, `user_id`) values ('2024-11-19 21:31:09.934', DEFAULT, DEFAULT, DEFAULT, 6248642, DEFAULT, 138, DEFAULT, 3382, 'completed', '2024-11-19 21:31:09.938', 211139)
RECORD LOCKS space id 56 page no 110020 n bits 952 index journey_user_step_journey_id_foreign of table `parcelvoy`.`journey_user_step` trx id 181033389 lock_mode X locks rec but not gap
Record lock, heap no 883 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 0000008a; asc     ;;
 1: len 4; hex 005f592f; asc  _Y/;;

RECORD LOCKS space id 56 page no 113313 n bits 176 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 181033389 lock mode S locks rec but not gap waiting
Record lock, heap no 8 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58c2; asc  _X ;;
 1: len 6; hex 00000aca03fd; asc       ;;
 2: len 7; hex 82000000b50110; asc        ;;
 3: len 4; hex 000338c3; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d3b; asc    ;;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d0384; asc g=  ;;
 8: len 4; hex 673d0385; asc g=  ;;
 9: SQL NULL;
 10: SQL NULL;
 11: SQL NULL;
 12: len 30; hex 00010052000b0005000010006576656e74020042001200040016000a000c; asc    R        event  B          ; (total 83 bytes);
 13: SQL NULL;

TRANSACTION 181033187, ACTIVE 2 sec fetching rows
mysql tables in use 1, locked 1
LOCK WAIT 8275 lock struct(s), heap size 958584, 68733 row lock(s)
MySQL thread id 1585, OS thread handle 22863496779520, query id 6008125 172.30.2.161 overwatch updating
update `journey_user_step` set `type` = 'pending', `updated_at` = '2024-11-19 21:31:07.758' where `journey_id` = 138 and `type` = 'delay' and `delay_until` <= '2024-11-19 21:31:07.758'
RECORD LOCKS space id 56 page no 113313 n bits 176 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 181033187 lock_mode X locks rec but not gap
Record lock, heap no 8 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58c2; asc  _X ;;
 1: len 6; hex 00000aca03fd; asc       ;;
 2: len 7; hex 82000000b50110; asc        ;;
 3: len 4; hex 000338c3; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d3b; asc    ;;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d0384; asc g=  ;;
 8: len 4; hex 673d0385; asc g=  ;;
 9: SQL NULL;
 10: SQL NULL;
 11: SQL NULL;
 12: len 30; hex 00010052000b0005000010006576656e74020042001200040016000a000c; asc    R        event  B          ; (total 83 bytes);
 13: SQL NULL;

Record lock, heap no 9 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58c3; asc  _X ;;
 1: len 6; hex 00000aca0432; asc      2;;
 2: len 7; hex 81000000de0110; asc        ;;
 3: len 4; hex 000338c2; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d3b; asc    ;;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d0384; asc g=  ;;
 8: len 4; hex 673d0385; asc g=  ;;
 9: SQL NULL;
 10: SQL NULL;
 11: SQL NULL;
 12: len 30; hex 00010052000b0005000010006576656e74020042001200040016000a000c; asc    R        event  B          ; (total 83 bytes);
 13: SQL NULL;

Record lock, heap no 46 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58e8; asc  _X ;;
 1: len 6; hex 00000aca2079; asc      y;;
 2: len 7; hex 82000001de0110; asc        ;;
 3: len 4; hex 000338c3; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d27; asc    ';;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d038c; asc g=  ;;
 8: len 4; hex 673d038c; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f58c2; asc  _X ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 48 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58ea; asc  _X ;;
 1: len 6; hex 00000aca20b3; asc       ;;
 2: len 7; hex 810000016d0110; asc     m  ;;
 3: len 4; hex 000338c2; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d27; asc    ';;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d038d; asc g=  ;;
 8: len 4; hex 673d038d; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f58c3; asc  _X ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 49 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58eb; asc  _X ;;
 1: len 6; hex 00000aca20ef; asc       ;;
 2: len 7; hex 82000000d10110; asc        ;;
 3: len 4; hex 000338c2; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d17; asc     ;;
 6: len 6; hex 616374696f6e; asc action;;
 7: len 4; hex 673d038d; asc g=  ;;
 8: len 4; hex 673d038d; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f58c3; asc  _X ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 53 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58ef; asc  _X ;;
 1: len 6; hex 00000aca2416; asc     $ ;;
 2: len 7; hex 810000010d0110; asc        ;;
 3: len 4; hex 00028c85; asc     ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d1c; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d038d; asc g=  ;;
 8: len 4; hex 673d038d; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f5832; asc  _X2;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 54 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58f0; asc  _X ;;
 1: len 6; hex 00000aca2542; asc     %B;;
 2: len 7; hex 82000000af0110; asc        ;;
 3: len 4; hex 0002aec4; asc     ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d1d; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d038e; asc g=  ;;
 8: len 4; hex 673d038e; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f5831; asc  _X1;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 106 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 005f58e9; asc  _X ;;
 1: len 6; hex 00000aca598b; asc     Y ;;
 2: len 7; hex 02000001f32cbc; asc      , ;;
 3: len 4; hex 000338c3; asc   8 ;;
 4: len 4; hex 0000008a; asc     ;;
 5: len 4; hex 00000d28; asc    (;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673d038d; asc g=  ;;
 8: len 4; hex 673d039e; asc g=  ;;
 9: SQL NULL;
 10: len 4; hex 005f58c2; asc  _X ;;
 11: SQL NULL;
 12: len 2; hex 0400; asc   ;;
 13: SQL NULL;

RECORD LOCKS space id 56 page no 110020 n bits 952 index journey_user_step_journey_id_foreign of table `parcelvoy`.`journey_user_step` trx id 181033187 lock_mode X waiting
Record lock, heap no 883 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 0000008a; asc     ;;
 1: len 4; hex 005f592f; asc  _Y/;;

leobarcellos avatar Nov 19 '24 21:11 leobarcellos

@pushchris looks like the problem is the foreign key journey_user_step_journey_id_foreign -- is it really needed?

leobarcellos avatar Nov 19 '24 21:11 leobarcellos

Well this is a fun one. There is definitely an index missing but I'm unsure how. All of the hosted versions I have include an index on the type and delay_until columns but its missing in the codebase so must have been removed or merged poorly at some point. I just added that in which should then speed up the query to find steps ready to be traversed which is what is currently locking your tables

pushchris avatar Nov 20 '24 00:11 pushchris

@leobarcellos were you able to try out adding the indexes in to see if it solved the issue for you?

pushchris avatar Nov 22 '24 15:11 pushchris

@pushchris Sure! I updated yesterday. Thanks for this fix. I can see that the deadlock errors decreased fairly, however I'm still receiving some.

Most of them still on the same table:

2024-11-22 15:51:06 22850015844096
*** (1) TRANSACTION:
TRANSACTION 303404576, ACTIVE 1 sec fetching rows
mysql tables in use 1, locked 1
LOCK WAIT 683 lock struct(s), heap size 90232, 3462 row lock(s)
MySQL thread id 82812, OS thread handle 22849891333888, query id 435631751 172.30.2.161 overwatch Searching rows for update
update `journey_user_step` set `type` = 'pending', `updated_at` = '2024-11-22 15:51:05.981' where `journey_id` = 50 and `type` = 'delay' and `delay_until` <= '2024-11-22 15:51:05.981'

*** (1) HOLDS THE LOCK(S):
RECORD LOCKS space id 56 page no 133256 n bits 864 index journey_user_step_type_delay_until_index of table `parcelvoy`.`journey_user_step` trx id 303404576 lock_mode X
Record lock, heap no 333 PHYSICAL RECORD: n_fields 3; compact format; info bits 0
 0: len 5; hex 64656c6179; asc delay;;
 1: len 4; hex 6740a830; asc g@ 0;;
 2: len 4; hex 006b1627; asc  k ';;


*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 56 page no 137614 n bits 232 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 303404576 lock_mode X locks rec but not gap waiting
Record lock, heap no 160 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b1627; asc  k ';;
 1: len 6; hex 0000121596ad; asc       ;;
 2: len 7; hex 01000003c61e43; asc       C;;
 3: len 4; hex 00036b1a; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012d2; asc     ;;
 6: len 7; hex 70656e64696e67; asc pending;;
 7: len 4; hex 673fff70; asc g? p;;
 8: len 4; hex 6740a86a; asc g@ j;;
 9: len 4; hex 6740a830; asc g@ 0;;
 10: len 4; hex 006b1609; asc  k  ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;


*** (2) TRANSACTION:
TRANSACTION 303404717, ACTIVE 0 sec updating or deleting
mysql tables in use 1, locked 1
LOCK WAIT 209 lock struct(s), heap size 24696, 1088 row lock(s), undo log entries 1
MySQL thread id 82795, OS thread handle 22857536276224, query id 435631975 172.30.2.161 overwatch updating
update `journey_user_step` set `type` = 'pending', `updated_at` = '2024-11-22 15:51:06.203' where `journey_id` = 184 and `type` = 'delay' and `delay_until` <= '2024-11-22 15:51:06.203'

*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 56 page no 137614 n bits 232 index PRIMARY of table `parcelvoy`.`journey_user_step` trx id 303404717 lock_mode X locks rec but not gap
Record lock, heap no 73 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b1609; asc  k  ;;
 1: len 6; hex 00001071d629; asc    q );;
 2: len 7; hex 82000001a50110; asc        ;;
 3: len 4; hex 00036b1a; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012b3; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673fff6e; asc g? n;;
 8: len 4; hex 673fff6e; asc g? n;;
 9: SQL NULL;
 10: SQL NULL;
 11: SQL NULL;
 12: len 30; hex 00010052000b0005000010006576656e74020042001200040016000a000c; asc    R        event  B          ; (total 83 bytes);
 13: SQL NULL;

Record lock, heap no 74 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b160a; asc  k  ;;
 1: len 6; hex 00001071d641; asc    q A;;
 2: len 7; hex 81000000aa0110; asc        ;;
 3: len 4; hex 00036b19; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012c2; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673fff6e; asc g? n;;
 8: len 4; hex 673fff6f; asc g? o;;
 9: SQL NULL;
 10: SQL NULL;
 11: SQL NULL;
 12: len 30; hex 00010052000b0005000010006576656e74020042001200040016000a000c; asc    R        event  B          ; (total 83 bytes);
 13: SQL NULL;

Record lock, heap no 101 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b1625; asc  k %;;
 1: len 6; hex 00001071da75; asc    q u;;
 2: len 7; hex 82000000910110; asc        ;;
 3: len 4; hex 00036b19; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012d6; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673fff70; asc g? p;;
 8: len 4; hex 673fff70; asc g? p;;
 9: SQL NULL;
 10: len 4; hex 006b160a; asc  k  ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 102 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b1626; asc  k &;;
 1: len 6; hex 00001071da76; asc    q v;;
 2: len 7; hex 810000015c0110; asc     \  ;;
 3: len 4; hex 00036b1a; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012a8; asc     ;;
 6: len 9; hex 636f6d706c65746564; asc completed;;
 7: len 4; hex 673fff70; asc g? p;;
 8: len 4; hex 673fff70; asc g? p;;
 9: SQL NULL;
 10: len 4; hex 006b1609; asc  k  ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;

Record lock, heap no 160 PHYSICAL RECORD: n_fields 14; compact format; info bits 0
 0: len 4; hex 006b1627; asc  k ';;
 1: len 6; hex 0000121596ad; asc       ;;
 2: len 7; hex 01000003c61e43; asc       C;;
 3: len 4; hex 00036b1a; asc   k ;;
 4: len 4; hex 000000b8; asc     ;;
 5: len 4; hex 000012d2; asc     ;;
 6: len 7; hex 70656e64696e67; asc pending;;
 7: len 4; hex 673fff70; asc g? p;;
 8: len 4; hex 6740a86a; asc g@ j;;
 9: len 4; hex 6740a830; asc g@ 0;;
 10: len 4; hex 006b1609; asc  k  ;;
 11: SQL NULL;
 12: SQL NULL;
 13: SQL NULL;


*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 56 page no 133256 n bits 864 index journey_user_step_type_delay_until_index of table `parcelvoy`.`journey_user_step` trx id 303404717 lock_mode X locks rec but not gap waiting
Record lock, heap no 333 PHYSICAL RECORD: n_fields 3; compact format; info bits 0
 0: len 5; hex 64656c6179; asc delay;;
 1: len 4; hex 6740a830; asc g@ 0;;
 2: len 4; hex 006b1627; asc  k ';;

*** WE ROLL BACK TRANSACTION (2)

I can see that eventually I get a few on campaign_sends as well, this one have 3 transactions, 3 locks and 3 tables in use, weird:

2024-11-21 20:39:03 22850015844096
*** (1) TRANSACTION:
TRANSACTION 267942180, ACTIVE 2 sec fetching rows
mysql tables in use 3, locked 3
LOCK WAIT 235 lock struct(s), heap size 41080, 32123 row lock(s)
MySQL thread id 57280, OS thread handle 22863496779520, query id 310926042 172.30.2.161 overwatch Searching rows for update
update `campaign_sends` set `state` = 'failed' where `campaign_sends`.`send_at` < '2024-11-19 20:39:01.192' and `campaign_sends`.`state` = 'throttled' and `campaign_id` = 2750

*** (1) HOLDS THE LOCK(S):
RECORD LOCKS space id 49 page no 31986 n bits 104 index campaign_sends_state_index of table `parcelvoy`.`campaign_sends` trx id 267942180 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;

Record lock, heap no 9 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 9; hex 7468726f74746c6564; asc throttled;;
 1: len 4; hex 00000175; asc    u;;


*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 49 page no 35524 n bits 1272 index campaign_sends_campaign_id_foreign of table `parcelvoy`.`campaign_sends` trx id 267942180 lock_mode X waiting
Record lock, heap no 634 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 00000abe; asc     ;;
 1: len 4; hex 00423719; asc  B7 ;;


*** (2) TRANSACTION:
TRANSACTION 267942554, ACTIVE 1 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 16 lock struct(s), heap size 3488, 21 row lock(s), undo log entries 10
MySQL thread id 57210, OS thread handle 22849954195200, query id 310927677 172.30.2.161 overwatch update
insert into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (2639, '2024-11-21 21:00:00.000', 'pending', 226969), (2750, '2024-11-22 03:00:00.000', 'pending', 226969), (2751, '2024-11-22 15:00:00.000', 'pending', 226969), (2753, '2024-11-22 21:00:00.000', 'pending', 226969), (2754, '2024-11-23 03:00:00.000', 'pending', 226969), (2755, '2024-11-23 15:00:00.000', 'pending', 226969), (2756, '2024-11-23 21:00:00.000', 'pending', 226969), (2757, '2024-11-24 03:00:00.000', 'pending', 226969), (2761, '2024-11-24 15:00:00.000', 'pending', 226969), (2762, '2024-11-24 21:00:00.000', 'pending', 226969), (2763, '2024-11-25 03:00:00.000', 'pending', 226969) on duplicate key update `state` = values(`state`), `send_at` = values(`send_at`)

*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 49 page no 35524 n bits 1272 index campaign_sends_campaign_id_foreign of table `parcelvoy`.`campaign_sends` trx id 267942554 lock_mode X locks rec but not gap
Record lock, heap no 634 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 00000abe; asc     ;;
 1: len 4; hex 00423719; asc  B7 ;;


*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 49 page no 35568 n bits 1272 index campaign_sends_campaign_id_foreign of table `parcelvoy`.`campaign_sends` trx id 267942554 lock_mode X locks gap before rec insert intention waiting
Record lock, heap no 362 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 00000acb; asc     ;;
 1: len 4; hex 00419fdf; asc  A  ;;


*** (3) TRANSACTION:
TRANSACTION 267942197, ACTIVE 2 sec starting index read
mysql tables in use 3, locked 3
LOCK WAIT 4 lock struct(s), heap size 1128, 3 row lock(s)
MySQL thread id 57257, OS thread handle 22860524590848, query id 310926228 172.30.2.161 overwatch Searching rows for update
update `campaign_sends` set `state` = 'failed' where `campaign_sends`.`send_at` < '2024-11-19 20:39:01.378' and `campaign_sends`.`state` = 'throttled' and `campaign_id` = 2763

*** (3) HOLDS THE LOCK(S):
RECORD LOCKS space id 49 page no 35568 n bits 1272 index campaign_sends_campaign_id_foreign of table `parcelvoy`.`campaign_sends` trx id 267942197 lock_mode X
Record lock, heap no 362 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 4; hex 00000acb; asc     ;;
 1: len 4; hex 00419fdf; asc  A  ;;


*** (3) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 49 page no 31986 n bits 104 index campaign_sends_state_index of table `parcelvoy`.`campaign_sends` trx id 267942197 lock_mode X waiting
Record lock, heap no 9 PHYSICAL RECORD: n_fields 2; compact format; info bits 0
 0: len 9; hex 7468726f74746c6564; asc throttled;;
 1: len 4; hex 00000175; asc    u;;

*** WE ROLL BACK TRANSACTION (3)

This second one, I could see that is caused by the checkStalledSends function that is called by the CampaignEnqueueSendsJobs handler. This basically changes the status of 'throttled' sends to 'failed' for the sends that are stuck on 'throttled' for more than 2 days. However this is done on every CampaignEnqueueSendsJobs, isn't it bad to be done there? Does it makes sense to create another job to do that? By the way, when a send is marked with 'failed', does it change anything?

leobarcellos avatar Nov 22 '24 16:11 leobarcellos

Just got another different deadlock error, now on rule_evaluations

------------------------
LATEST DETECTED DEADLOCK
------------------------
2024-11-22 21:02:40 22850015844096
*** (1) TRANSACTION:
TRANSACTION 313487207, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 89759, OS thread handle 22862786561792, query id 471002117 172.30.2.161 overwatch update
insert into `rule_evaluations` (`result`, `rule_id`, `user_id`) values (true, 176, 219661), (true, 178, 219661), (false, 176, 219663), (false, 178, 219663), (true, 176, 219664), (true, 178, 219664), (false, 176, 219686), (true, 178, 219686), (true, 176, 219700), (false, 178, 219700), (false, 176, 219723), (false, 178, 219723), (true, 176, 219734), (true, 178, 219734), (false, 176, 219757), (false, 178, 219757), (false, 176, 219759), (false, 178, 219759), (true, 176, 219773), (true, 178, 219773), (true, 176, 219781), (true, 178, 219781), (true, 176, 219787), (true, 178, 219787), (false, 176, 219815), (false, 178, 219815), (true, 176, 219817), (true, 178, 219817), (false, 176, 219820), (false, 178, 219820), (true, 176, 219842), (true, 178, 219842), (true, 176, 219850), (false, 178, 219850), (true, 176, 219857), (false, 178, 219857), (true, 176, 219865), (false, 178, 219865), (false, 176, 219877), (false, 178, 219877), (true, 176, 219889), (true, 178, 219889), (false, 176, 219900), (false, 178, 219900), (false, 176, 219930), (false, 178, 219930), (false, 176, 219949), (false, 178, 219949), (false, 176, 219970), (false, 178, 219970), (false, 176, 219985), (false, 178, 219985), (true, 176, 219988), (true, 178, 219988), (true, 176, 220002), (true, 178, 220002), (true, 176, 220004), (true, 178, 220004), (false, 176, 220005), (false, 178, 220005), (true, 176, 220015), (false, 178, 220015), (false, 176, 220027), (false, 178, 220027), (true, 176, 220030), (true, 178, 220030), (false, 176, 220058), (false, 178, 220058), (false, 176, 220063), (false, 178, 220063), (true, 176, 220064), (true, 178, 220064), (false, 176, 220306), (false, 178, 220306), (true, 176, 220310), (true, 178, 220310), (true, 176, 220312), (true, 178, 220312), (true, 176, 220317), (false, 178, 220317), (false, 176, 220320), (false, 178, 220320), (true, 176, 220323), (false, 178, 220323), (true, 176, 220330), (true, 178, 220330), (false, 176, 220334), (false, 178, 220334), (true, 176, 220339), (false, 178, 220339), (false, 176, 220357), (false, 178, 220357), (false, 176, 220379), (true, 178, 220379), (false, 176, 220401), (false, 178, 220401), (false, 176, 220403), (false, 178, 220403), (true, 176, 220409), (true, 178, 220409) on duplicate key update `result` = values(`result`)

*** (1) HOLDS THE LOCK(S):
RECORD LOCKS space id 69 page no 9905 n bits 328 index PRIMARY of table `parcelvoy`.`rule_evaluations` trx id 313487207 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;


*** (1) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 69 page no 9905 n bits 328 index PRIMARY of table `parcelvoy`.`rule_evaluations` trx id 313487207 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;


*** (2) TRANSACTION:
TRANSACTION 313487206, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s), undo log entries 1
MySQL thread id 89764, OS thread handle 22849954195200, query id 471002116 172.30.2.161 overwatch update
insert into `rule_evaluations` (`result`, `rule_id`, `user_id`) values (false, 581, 188939), (false, 583, 188939), (true, 581, 188943), (true, 583, 188943), (true, 581, 188944), (false, 583, 188944), (true, 581, 188950), (false, 583, 188950), (true, 581, 188958), (false, 583, 188958), (false, 581, 188967), (false, 583, 188967), (true, 581, 188971), (false, 583, 188971), (false, 581, 188992), (false, 583, 188992), (false, 581, 188997), (false, 583, 188997), (false, 581, 188998), (false, 583, 188998), (false, 581, 189009), (false, 583, 189009), (false, 581, 189013), (false, 583, 189013), (false, 581, 189029), (false, 583, 189029), (false, 581, 189040), (false, 583, 189040), (true, 581, 189056), (true, 583, 189056), (false, 581, 189061), (false, 583, 189061), (false, 581, 189065), (false, 583, 189065), (false, 581, 189092), (false, 583, 189092), (true, 581, 189102), (false, 583, 189102), (true, 581, 189103), (true, 583, 189103), (true, 581, 189123), (false, 583, 189123), (true, 581, 189126), (false, 583, 189126), (false, 581, 189142), (false, 583, 189142), (false, 581, 189145), (false, 583, 189145), (false, 581, 189163), (false, 583, 189163), (false, 581, 189183), (false, 583, 189183), (false, 581, 189187), (false, 583, 189187), (false, 581, 189202), (false, 583, 189202), (false, 581, 189225), (false, 583, 189225), (false, 581, 189227), (false, 583, 189227), (false, 581, 189242), (false, 583, 189242), (false, 581, 189245), (false, 583, 189245), (false, 581, 189262), (false, 583, 189262), (false, 581, 189265), (false, 583, 189265), (false, 581, 189266), (false, 583, 189266), (false, 581, 189276), (false, 583, 189276), (false, 581, 189283), (false, 583, 189283), (false, 581, 189297), (false, 583, 189297), (false, 581, 189305), (false, 583, 189305), (true, 581, 189366), (false, 583, 189366), (true, 581, 189372), (true, 583, 189372), (true, 581, 189391), (true, 583, 189391), (true, 581, 189430), (true, 583, 189430), (false, 581, 189434), (false, 583, 189434), (true, 581, 189492), (false, 583, 189492), (true, 581, 189501), (true, 583, 189501), (false, 581, 189538), (false, 583, 189538), (true, 581, 189547), (false, 583, 189547), (true, 581, 189566), (true, 583, 189566), (true, 581, 189575), (false, 583, 189575) on duplicate key update `result` = values(`result`)

*** (2) HOLDS THE LOCK(S):
RECORD LOCKS space id 69 page no 9905 n bits 328 index PRIMARY of table `parcelvoy`.`rule_evaluations` trx id 313487206 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;


*** (2) WAITING FOR THIS LOCK TO BE GRANTED:
RECORD LOCKS space id 69 page no 9905 n bits 328 index PRIMARY of table `parcelvoy`.`rule_evaluations` trx id 313487206 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
 0: len 8; hex 73757072656d756d; asc supremum;;

*** WE ROLL BACK TRANSACTION (1)

leobarcellos avatar Nov 22 '24 21:11 leobarcellos

What is your DB usage looking like? Specifically CPU and memory usage. This many deadlocks makes me think it's under provisioned since most of those tables are pretty simple but there may be something else underlying that is causing it.

pushchris avatar Dec 03 '24 02:12 pushchris

What is your DB usage looking like? Specifically CPU and memory usage. This many deadlocks makes me think it's under provisioned since most of those tables are pretty simple but there may be something else underlying that is causing it.

I thought it too, but I increased the DB size 2 weeks ago and it's pretty consistent so far:

Screenshot 2024-12-03 at 4 24 19 PM Screenshot 2024-12-03 at 4 27 46 PM

Wait times still high (compared to others) on the queries I mentioned:

Screenshot 2024-12-03 at 4 23 13 PM

By the way, I haven't got the last update, will do and then I come back here :)

leobarcellos avatar Dec 03 '24 19:12 leobarcellos

Awesome! #551 should hopefully help with the second and third items in the top SQL list you sent over and reduce total number of deadlocks on those tables.

pushchris avatar Dec 03 '24 21:12 pushchris

We are still reiceiving some deadlocks on campaign_sends. @pushchris don't you think it would be better to reduce the size of chunks that is being inserted as well? I saw that you updated the failedStalled with chunks of 25. Should we do the same with the inserts?

Today log:

TRANSACTION 2344046802, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5274, OS thread handle 70398002881872, query id 2326208695 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6606, '2025-01-11 12:00:00.000', 'pending', 404540), (6606, '2025-01-11 12:00:00.000', 'pending', 404549), (6606, '2025-01-11 12:00:00.000', 'pending', 404552), (6606, '2025-01-11 12:00:00.000', 'pending', 404575), (6606, '2025-01-11 12:00:00.000', 'pending', 404576), (6606, '2025-01-11 12:00:00.000', 'pending', 404603), (6606, '2025-01-11 12:00:00.000', 'pending', 404587), (6606, '2025-01-11 12:00:00.000', 'pending', 404612), (6606, '2025-01-11 12:00:00.000', 'pending', 404649), (6606, '2025-01-11 12:00:00.000', 'pending', 404652), (6606, '2025-01-11 12:00:00.000', 'pending', 404687), (6606, '2025-01-11 12:00:00.000', 'pending', 404690), (6606, '2025-01-11 12:00:00.000', 'pending', 404691), (6606, '2025-01-11 12:00:00.000', 'pending', 404700), (6606, '2025-01-11 12:00:00.000', 'pending', 404715), (6606, '2025-01-11 12:00:00.000', 'pending', 404728), (6606, '2025-01-11 12:00:00.000', 'pending', 404707), (6606, '2025-01-11 12:00:00.000', 'pending', 404732), (6606, '2025-01-11 12:00:00.000', 'pending', 404733), (6606, '2025-01-11 12:00:00.000', 'pending', 404730), (6606, '2025-01-11 12:00:00.000', 'pending', 404738), (6606, '2025-01-11 12:00:00.000', 'pending', 404753), (6606, '2025-01-11 12:00:00.000', 'pending', 404754), (6606, '2025-01-11 12:00:00.000', 'pending', 404759), (6606, '2025-01-11 12:00:00.000', 'pending', 404762), (6606, '2025-01-11 12:00:00.000', 'pending', 404798), (6606, '2025-01-11 12:00:00.000', 'pending', 404857), (6606, '2025-01-11 12:00:00.000', 'pending', 404872), (6606, '2025-01-11 12:00:00.000', 'pending', 404871), (6606, '2025-01-11 12:00:00.000', 'pending', 404902), (6606, '2025-01-11 12:00:00.000', 'pending', 404922), (6606, '2025-01-11 12:00:00.000', 'pending', 404913), (6606, '2025-01-11 12:00:00.000', 'pending', 405526), (6606, '2025-01-11 12:00:00.000', 'pending', 405572), (6606, '2025-01-11 12:00:00.000', 'pending', 405574), (6606, '2025-01-11 12:00:00.000', 'pending', 405620), (6606, '2025-01-11 12:00:00.000', 'pending', 405640), (6606, '2025-01-11 12:00:00.000', 'pending', 405616), (6606, '2025-01-11 12:00:00.000', 'pending', 405029), (6606, '2025-01-11 12:00:00.000', 'pending', 405666), (6606, '2025-01-11 12:00:00.000', 'pending', 405135), (6606, '2025-01-11 12:00:00.000', 'pending', 405641), (6606, '2025-01-11 12:00:00.000', 'pending', 405881), (6606, '2025-01-11 12:00:00.000', 'pending', 405920), (6606, '2025-01-11 12:00:00.000', 'pending', 405643), (6606, '2025-01-11 12:00:00.000', 'pending', 406041), (6606, '2025-01-11 12:00:00.000', 'pending', 406052), (6606, '2025-01-11 12:00:00.000', 'pending', 406114), (6606, '2025-01-11 12:00:00.000', 'pending', 405997), (6606, '2025-01-11 12:00:00.000', 'pending', 406076), (6606, '2025-01-11 12:00:00.000', 'pending', 406149), (6606, '2025-01-11 12:00:00.000', 'pending', 406235), (6606, '2025-01-11 12:00:00.000', 'pending', 406150), (6606, '2025-01-11 12:00:00.000', 'pending', 406
RECORD LOCKS space id 49 page no 192877 n bits 144 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344046802 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 192877 n bits 144 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344046802 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344046803, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 7 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5272, OS thread handle 70371378115920, query id 2326208697 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6607, '2025-01-07 14:01:23.000', 'pending', 660682), (6607, '2025-01-07 14:01:23.000', 'pending', 666050), (6607, '2025-01-07 14:01:23.000', 'pending', 666417), (6607, '2025-01-07 14:01:23.000', 'pending', 665890), (6607, '2025-01-07 14:01:23.000', 'pending', 666360), (6607, '2025-01-07 14:01:23.000', 'pending', 667244), (6607, '2025-01-07 14:01:23.000', 'pending', 667103), (6607, '2025-01-07 14:01:23.000', 'pending', 667040), (6607, '2025-01-07 14:01:23.000', 'pending', 666874), (6607, '2025-01-07 14:01:23.000', 'pending', 666414), (6607, '2025-01-07 14:01:23.000', 'pending', 667457), (6607, '2025-01-07 14:01:23.000', 'pending', 667309), (6607, '2025-01-07 14:01:23.000', 'pending', 667286), (6607, '2025-01-07 14:01:23.000', 'pending', 667381), (6607, '2025-01-07 14:01:23.000', 'pending', 667114), (6607, '2025-01-07 14:01:23.000', 'pending', 667616), (6607, '2025-01-07 14:01:23.000', 'pending', 668419), (6607, '2025-01-07 14:01:23.000', 'pending', 667721), (6607, '2025-01-07 14:01:23.000', 'pending', 667981), (6607, '2025-01-07 14:01:23.000', 'pending', 668972), (6607, '2025-01-07 14:01:23.000', 'pending', 666719), (6607, '2025-01-07 14:01:23.000', 'pending', 667739), (6607, '2025-01-07 14:01:23.000', 'pending', 666793), (6607, '2025-01-07 14:01:23.000', 'pending', 667557), (6607, '2025-01-07 14:01:23.000', 'pending', 668347), (6607, '2025-01-07 14:01:23.000', 'pending', 669552), (6607, '2025-01-07 14:01:23.000', 'pending', 665275), (6607, '2025-01-07 14:01:23.000', 'pending', 665238), (6607, '2025-01-07 14:01:23.000', 'pending', 669980), (6607, '2025-01-07 14:01:23.000', 'pending', 670409), (6607, '2025-01-07 14:01:23.000', 'pending', 669957), (6607, '2025-01-07 14:01:23.000', 'pending', 667903), (6607, '2025-01-07 14:01:23.000', 'pending', 668018), (6607, '2025-01-07 14:01:23.000', 'pending', 667522), (6607, '2025-01-07 14:01:23.000', 'pending', 670031), (6607, '2025-01-07 14:01:23.000', 'pending', 670043), (6607, '2025-01-07 14:01:23.000', 'pending', 670425), (6607, '2025-01-07 14:01:23.000', 'pending', 670514), (6607, '2025-01-07 14:01:23.000', 'pending', 667919), (6607, '2025-01-07 14:01:23.000', 'pending', 670531), (6607, '2025-01-07 14:01:23.000', 'pending', 670470), (6607, '2025-01-07 14:01:23.000', 'pending', 670239), (6607, '2025-01-07 14:01:23.000', 'pending', 670659), (6607, '2025-01-07 14:01:23.000', 'pending', 669561), (6607, '2025-01-07 14:01:23.000', 'pending', 669560), (6607, '2025-01-07 14:01:23.000', 'pending', 670639), (6607, '2025-01-07 14:01:23.000', 'pending', 670698), (6607, '2025-01-07 14:01:23.000', 'pending', 670633), (6607, '2025-01-07 14:01:23.000', 'pending', 670678), (6607, '2025-01-07 14:01:23.000', 'pending', 669566), (6607, '2025-01-07 14:01:23.000', 'pending', 670674), (6607, '2025-01-07 14:01:23.000', 'pending', 670694), (6607, '2025-01-07 14:01:23.000', 'pending', 670579), (6607, '2025-01-07 14:01:23.000', 'pending', 670
RECORD LOCKS space id 49 page no 192877 n bits 144 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344046803 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 192877 n bits 144 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344046803 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344064629, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 7 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5277, OS thread handle 70398547318096, query id 2326271540 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6607, '2025-01-07 14:01:23.000', 'pending', 673477), (6607, '2025-01-07 14:01:23.000', 'pending', 675412), (6607, '2025-01-07 14:01:23.000', 'pending', 674074), (6607, '2025-01-07 14:01:23.000', 'pending', 676940), (6607, '2025-01-07 14:01:23.000', 'pending', 675934), (6607, '2025-01-07 14:01:23.000', 'pending', 676688), (6607, '2025-01-07 14:01:23.000', 'pending', 677292), (6607, '2025-01-07 14:01:23.000', 'pending', 677452), (6607, '2025-01-07 14:01:23.000', 'pending', 677806), (6607, '2025-01-07 14:01:23.000', 'pending', 678508), (6607, '2025-01-07 14:01:23.000', 'pending', 676964), (6607, '2025-01-07 14:01:23.000', 'pending', 678373), (6607, '2025-01-07 14:01:23.000', 'pending', 676944), (6607, '2025-01-07 14:01:23.000', 'pending', 677969), (6607, '2025-01-07 14:01:23.000', 'pending', 678800), (6607, '2025-01-07 14:01:23.000', 'pending', 678739), (6607, '2025-01-07 14:01:23.000', 'pending', 678903), (6607, '2025-01-07 14:01:23.000', 'pending', 679075), (6607, '2025-01-07 14:01:23.000', 'pending', 679087), (6607, '2025-01-07 14:01:23.000', 'pending', 679059), (6607, '2025-01-07 14:01:23.000', 'pending', 678050), (6607, '2025-01-07 14:01:23.000', 'pending', 679354), (6607, '2025-01-07 14:01:23.000', 'pending', 679297), (6607, '2025-01-07 14:01:23.000', 'pending', 679485), (6607, '2025-01-07 14:01:23.000', 'pending', 678627), (6607, '2025-01-07 14:01:23.000', 'pending', 677585), (6607, '2025-01-07 14:01:23.000', 'pending', 679096), (6607, '2025-01-07 14:01:23.000', 'pending', 679187), (6607, '2025-01-07 14:01:23.000', 'pending', 678662), (6607, '2025-01-07 14:01:23.000', 'pending', 679432), (6607, '2025-01-07 14:01:23.000', 'pending', 679630), (6607, '2025-01-07 14:01:23.000', 'pending', 680021), (6607, '2025-01-07 14:01:23.000', 'pending', 679568), (6607, '2025-01-07 14:01:23.000', 'pending', 679873), (6607, '2025-01-07 14:01:23.000', 'pending', 679857), (6607, '2025-01-07 14:01:23.000', 'pending', 679442), (6607, '2025-01-07 14:01:23.000', 'pending', 679295), (6607, '2025-01-07 14:01:23.000', 'pending', 679967), (6607, '2025-01-07 14:01:23.000', 'pending', 680088), (6607, '2025-01-07 14:01:23.000', 'pending', 680092), (6607, '2025-01-07 14:01:23.000', 'pending', 679736), (6607, '2025-01-07 14:01:23.000', 'pending', 680110), (6607, '2025-01-07 14:01:23.000', 'pending', 680101), (6607, '2025-01-07 14:01:23.000', 'pending', 680103), (6607, '2025-01-07 14:01:23.000', 'pending', 680155), (6607, '2025-01-07 14:01:23.000', 'pending', 680098), (6607, '2025-01-07 14:01:23.000', 'pending', 680177), (6607, '2025-01-07 14:01:23.000', 'pending', 680149), (6607, '2025-01-07 14:01:23.000', 'pending', 680194), (6607, '2025-01-07 14:01:23.000', 'pending', 680209), (6607, '2025-01-07 14:01:23.000', 'pending', 680216), (6607, '2025-01-07 14:01:23.000', 'pending', 680193), (6607, '2025-01-07 14:01:23.000', 'pending', 680169), (6607, '2025-01-07 14:01:23.000', 'pending', 680
RECORD LOCKS space id 49 page no 192877 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344064629 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 192877 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344064629 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344064628, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 6 row lock(s)
MySQL thread id 5276, OS thread handle 70398644122960, query id 2326271539 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6606, '2025-01-11 12:00:00.000', 'pending', 404540), (6606, '2025-01-11 12:00:00.000', 'pending', 404549), (6606, '2025-01-11 12:00:00.000', 'pending', 404552), (6606, '2025-01-11 12:00:00.000', 'pending', 404575), (6606, '2025-01-11 12:00:00.000', 'pending', 404576), (6606, '2025-01-11 12:00:00.000', 'pending', 404603), (6606, '2025-01-11 12:00:00.000', 'pending', 404587), (6606, '2025-01-11 12:00:00.000', 'pending', 404612), (6606, '2025-01-11 12:00:00.000', 'pending', 404649), (6606, '2025-01-11 12:00:00.000', 'pending', 404652), (6606, '2025-01-11 12:00:00.000', 'pending', 404687), (6606, '2025-01-11 12:00:00.000', 'pending', 404690), (6606, '2025-01-11 12:00:00.000', 'pending', 404691), (6606, '2025-01-11 12:00:00.000', 'pending', 404700), (6606, '2025-01-11 12:00:00.000', 'pending', 404715), (6606, '2025-01-11 12:00:00.000', 'pending', 404728), (6606, '2025-01-11 12:00:00.000', 'pending', 404707), (6606, '2025-01-11 12:00:00.000', 'pending', 404732), (6606, '2025-01-11 12:00:00.000', 'pending', 404733), (6606, '2025-01-11 12:00:00.000', 'pending', 404730), (6606, '2025-01-11 12:00:00.000', 'pending', 404738), (6606, '2025-01-11 12:00:00.000', 'pending', 404753), (6606, '2025-01-11 12:00:00.000', 'pending', 404754), (6606, '2025-01-11 12:00:00.000', 'pending', 404759), (6606, '2025-01-11 12:00:00.000', 'pending', 404762), (6606, '2025-01-11 12:00:00.000', 'pending', 404798), (6606, '2025-01-11 12:00:00.000', 'pending', 404857), (6606, '2025-01-11 12:00:00.000', 'pending', 404872), (6606, '2025-01-11 12:00:00.000', 'pending', 404871), (6606, '2025-01-11 12:00:00.000', 'pending', 404902), (6606, '2025-01-11 12:00:00.000', 'pending', 404922), (6606, '2025-01-11 12:00:00.000', 'pending', 404913), (6606, '2025-01-11 12:00:00.000', 'pending', 405526), (6606, '2025-01-11 12:00:00.000', 'pending', 405572), (6606, '2025-01-11 12:00:00.000', 'pending', 405574), (6606, '2025-01-11 12:00:00.000', 'pending', 405620), (6606, '2025-01-11 12:00:00.000', 'pending', 405640), (6606, '2025-01-11 12:00:00.000', 'pending', 405616), (6606, '2025-01-11 12:00:00.000', 'pending', 405029), (6606, '2025-01-11 12:00:00.000', 'pending', 405666), (6606, '2025-01-11 12:00:00.000', 'pending', 405135), (6606, '2025-01-11 12:00:00.000', 'pending', 405641), (6606, '2025-01-11 12:00:00.000', 'pending', 405881), (6606, '2025-01-11 12:00:00.000', 'pending', 405920), (6606, '2025-01-11 12:00:00.000', 'pending', 405643), (6606, '2025-01-11 12:00:00.000', 'pending', 406041), (6606, '2025-01-11 12:00:00.000', 'pending', 406052), (6606, '2025-01-11 12:00:00.000', 'pending', 406114), (6606, '2025-01-11 12:00:00.000', 'pending', 405997), (6606, '2025-01-11 12:00:00.000', 'pending', 406076), (6606, '2025-01-11 12:00:00.000', 'pending', 406149), (6606, '2025-01-11 12:00:00.000', 'pending', 406235), (6606, '2025-01-11 12:00:00.000', 'pending', 406150), (6606, '2025-01-11 12:00:00.000', 'pending', 406
RECORD LOCKS space id 49 page no 192877 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344064628 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 192877 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344064628 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772855, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5273, OS thread handle 70398007395664, query id 2329857144 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 367534), (6610, '2025-01-12 18:00:00.000', 'pending', 367564), (6610, '2025-01-12 18:00:00.000', 'pending', 367636), (6610, '2025-01-12 18:00:00.000', 'pending', 367691), (6610, '2025-01-12 18:00:00.000', 'pending', 367718), (6610, '2025-01-12 18:00:00.000', 'pending', 367741), (6610, '2025-01-12 18:00:00.000', 'pending', 367752), (6610, '2025-01-12 18:00:00.000', 'pending', 367799), (6610, '2025-01-12 18:00:00.000', 'pending', 367759), (6610, '2025-01-12 18:00:00.000', 'pending', 367809), (6610, '2025-01-12 18:00:00.000', 'pending', 367796), (6610, '2025-01-12 18:00:00.000', 'pending', 367959), (6610, '2025-01-12 18:00:00.000', 'pending', 368020), (6610, '2025-01-12 18:00:00.000', 'pending', 367974), (6610, '2025-01-12 18:00:00.000', 'pending', 367944), (6610, '2025-01-12 18:00:00.000', 'pending', 368095), (6610, '2025-01-12 18:00:00.000', 'pending', 368124), (6610, '2025-01-12 18:00:00.000', 'pending', 368146), (6610, '2025-01-12 18:00:00.000', 'pending', 368109), (6610, '2025-01-12 18:00:00.000', 'pending', 368031), (6610, '2025-01-12 18:00:00.000', 'pending', 368091), (6610, '2025-01-12 18:00:00.000', 'pending', 368137), (6610, '2025-01-12 18:00:00.000', 'pending', 368200), (6610, '2025-01-12 18:00:00.000', 'pending', 368268), (6610, '2025-01-12 18:00:00.000', 'pending', 368304), (6610, '2025-01-12 18:00:00.000', 'pending', 368368), (6610, '2025-01-12 18:00:00.000', 'pending', 368468), (6610, '2025-01-12 18:00:00.000', 'pending', 368482), (6610, '2025-01-12 18:00:00.000', 'pending', 368395), (6610, '2025-01-12 18:00:00.000', 'pending', 368422), (6610, '2025-01-12 18:00:00.000', 'pending', 368365), (6610, '2025-01-12 18:00:00.000', 'pending', 368501), (6610, '2025-01-12 18:00:00.000', 'pending', 368502), (6610, '2025-01-12 18:00:00.000', 'pending', 368333), (6610, '2025-01-12 18:00:00.000', 'pending', 368554), (6610, '2025-01-12 18:00:00.000', 'pending', 368336), (6610, '2025-01-12 18:00:00.000', 'pending', 368529), (6610, '2025-01-12 18:00:00.000', 'pending', 368582), (6610, '2025-01-12 18:00:00.000', 'pending', 368524), (6610, '2025-01-12 18:00:00.000', 'pending', 368689), (6610, '2025-01-12 18:00:00.000', 'pending', 368515), (6610, '2025-01-12 18:00:00.000', 'pending', 368571), (6610, '2025-01-12 18:00:00.000', 'pending', 368567), (6610, '2025-01-12 18:00:00.000', 'pending', 368597), (6610, '2025-01-12 18:00:00.000', 'pending', 368732), (6610, '2025-01-12 18:00:00.000', 'pending', 368764), (6610, '2025-01-12 18:00:00.000', 'pending', 368734), (6610, '2025-01-12 18:00:00.000', 'pending', 368851), (6610, '2025-01-12 18:00:00.000', 'pending', 368807), (6610, '2025-01-12 18:00:00.000', 'pending', 368748), (6610, '2025-01-12 18:00:00.000', 'pending', 368894), (6610, '2025-01-12 18:00:00.000', 'pending', 368959), (6610, '2025-01-12 18:00:00.000', 'pending', 369129), (6610, '2025-01-12 18:00:00.000', 'pending', 369
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772855 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772855 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772858, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5502, OS thread handle 70398109369680, query id 2329857149 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 291566), (6614, '2025-01-08 17:00:00.000', 'pending', 291569), (6614, '2025-01-08 17:00:00.000', 'pending', 291577), (6614, '2025-01-08 17:00:00.000', 'pending', 291567), (6614, '2025-01-08 17:00:00.000', 'pending', 291581), (6614, '2025-01-08 17:00:00.000', 'pending', 291579), (6614, '2025-01-08 17:00:00.000', 'pending', 291571), (6614, '2025-01-08 17:00:00.000', 'pending', 291570), (6614, '2025-01-08 17:00:00.000', 'pending', 291582), (6614, '2025-01-08 17:00:00.000', 'pending', 291592), (6614, '2025-01-08 17:00:00.000', 'pending', 291586), (6614, '2025-01-08 17:00:00.000', 'pending', 291585), (6614, '2025-01-08 17:00:00.000', 'pending', 291573), (6614, '2025-01-08 17:00:00.000', 'pending', 291576), (6614, '2025-01-08 17:00:00.000', 'pending', 291598), (6614, '2025-01-08 17:00:00.000', 'pending', 291593), (6614, '2025-01-08 17:00:00.000', 'pending', 291589), (6614, '2025-01-08 17:00:00.000', 'pending', 291602), (6614, '2025-01-08 17:00:00.000', 'pending', 291572), (6614, '2025-01-08 17:00:00.000', 'pending', 291599), (6614, '2025-01-08 17:00:00.000', 'pending', 291604), (6614, '2025-01-08 17:00:00.000', 'pending', 291596), (6614, '2025-01-08 17:00:00.000', 'pending', 291603), (6614, '2025-01-08 17:00:00.000', 'pending', 291588), (6614, '2025-01-08 17:00:00.000', 'pending', 291590), (6614, '2025-01-08 17:00:00.000', 'pending', 291574), (6614, '2025-01-08 17:00:00.000', 'pending', 291578), (6614, '2025-01-08 17:00:00.000', 'pending', 291609), (6614, '2025-01-08 17:00:00.000', 'pending', 291587), (6614, '2025-01-08 17:00:00.000', 'pending', 291606), (6614, '2025-01-08 17:00:00.000', 'pending', 291583), (6614, '2025-01-08 17:00:00.000', 'pending', 291601), (6614, '2025-01-08 17:00:00.000', 'pending', 291605), (6614, '2025-01-08 17:00:00.000', 'pending', 291600), (6614, '2025-01-08 17:00:00.000', 'pending', 291612), (6614, '2025-01-08 17:00:00.000', 'pending', 291575), (6614, '2025-01-08 17:00:00.000', 'pending', 291610), (6614, '2025-01-08 17:00:00.000', 'pending', 291591), (6614, '2025-01-08 17:00:00.000', 'pending', 291597), (6614, '2025-01-08 17:00:00.000', 'pending', 291608), (6614, '2025-01-08 17:00:00.000', 'pending', 291614), (6614, '2025-01-08 17:00:00.000', 'pending', 291613), (6614, '2025-01-08 17:00:00.000', 'pending', 291607), (6614, '2025-01-08 17:00:00.000', 'pending', 291611), (6614, '2025-01-08 17:00:00.000', 'pending', 1976), (6614, '2025-01-08 17:00:00.000', 'pending', 291615), (6614, '2025-01-08 17:00:00.000', 'pending', 291616), (6614, '2025-01-08 17:00:00.000', 'pending', 291595), (6614, '2025-01-08 17:00:00.000', 'pending', 303213), (6614, '2025-01-08 17:00:00.000', 'pending', 303443), (6614, '2025-01-08 17:00:00.000', 'pending', 303444), (6614, '2025-01-08 17:00:00.000', 'pending', 303453), (6614, '2025-01-08 17:00:00.000', 'pending', 303452), (6614, '2025-01-08 17:00:00.000', 'pending', 30345
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772858 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772858 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772877, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5497, OS thread handle 70398544672080, query id 2329857310 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 399944), (6610, '2025-01-12 18:00:00.000', 'pending', 399945), (6610, '2025-01-12 18:00:00.000', 'pending', 399955), (6610, '2025-01-12 18:00:00.000', 'pending', 399966), (6610, '2025-01-12 18:00:00.000', 'pending', 399965), (6610, '2025-01-12 18:00:00.000', 'pending', 399984), (6610, '2025-01-12 18:00:00.000', 'pending', 399999), (6610, '2025-01-12 18:00:00.000', 'pending', 400016), (6610, '2025-01-12 18:00:00.000', 'pending', 400024), (6610, '2025-01-12 18:00:00.000', 'pending', 400052), (6610, '2025-01-12 18:00:00.000', 'pending', 400060), (6610, '2025-01-12 18:00:00.000', 'pending', 400099), (6610, '2025-01-12 18:00:00.000', 'pending', 400110), (6610, '2025-01-12 18:00:00.000', 'pending', 400096), (6610, '2025-01-12 18:00:00.000', 'pending', 400121), (6610, '2025-01-12 18:00:00.000', 'pending', 400142), (6610, '2025-01-12 18:00:00.000', 'pending', 400157), (6610, '2025-01-12 18:00:00.000', 'pending', 400181), (6610, '2025-01-12 18:00:00.000', 'pending', 400175), (6610, '2025-01-12 18:00:00.000', 'pending', 400196), (6610, '2025-01-12 18:00:00.000', 'pending', 400220), (6610, '2025-01-12 18:00:00.000', 'pending', 400237), (6610, '2025-01-12 18:00:00.000', 'pending', 400244), (6610, '2025-01-12 18:00:00.000', 'pending', 400238), (6610, '2025-01-12 18:00:00.000', 'pending', 400236), (6610, '2025-01-12 18:00:00.000', 'pending', 400241), (6610, '2025-01-12 18:00:00.000', 'pending', 400253), (6610, '2025-01-12 18:00:00.000', 'pending', 400269), (6610, '2025-01-12 18:00:00.000', 'pending', 400270), (6610, '2025-01-12 18:00:00.000', 'pending', 400304), (6610, '2025-01-12 18:00:00.000', 'pending', 400305), (6610, '2025-01-12 18:00:00.000', 'pending', 400329), (6610, '2025-01-12 18:00:00.000', 'pending', 400317), (6610, '2025-01-12 18:00:00.000', 'pending', 400337), (6610, '2025-01-12 18:00:00.000', 'pending', 400336), (6610, '2025-01-12 18:00:00.000', 'pending', 400325), (6610, '2025-01-12 18:00:00.000', 'pending', 400355), (6610, '2025-01-12 18:00:00.000', 'pending', 400323), (6610, '2025-01-12 18:00:00.000', 'pending', 400374), (6610, '2025-01-12 18:00:00.000', 'pending', 400379), (6610, '2025-01-12 18:00:00.000', 'pending', 400371), (6610, '2025-01-12 18:00:00.000', 'pending', 400382), (6610, '2025-01-12 18:00:00.000', 'pending', 400390), (6610, '2025-01-12 18:00:00.000', 'pending', 400395), (6610, '2025-01-12 18:00:00.000', 'pending', 400391), (6610, '2025-01-12 18:00:00.000', 'pending', 400404), (6610, '2025-01-12 18:00:00.000', 'pending', 400409), (6610, '2025-01-12 18:00:00.000', 'pending', 400402), (6610, '2025-01-12 18:00:00.000', 'pending', 400415), (6610, '2025-01-12 18:00:00.000', 'pending', 400417), (6610, '2025-01-12 18:00:00.000', 'pending', 400428), (6610, '2025-01-12 18:00:00.000', 'pending', 400426), (6610, '2025-01-12 18:00:00.000', 'pending', 400430), (6610, '2025-01-12 18:00:00.000', 'pending', 400
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772877 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772877 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772878, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5292, OS thread handle 70398094546256, query id 2329857312 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 589906), (6613, '2025-01-08 01:00:00.000', 'pending', 589983), (6613, '2025-01-08 01:00:00.000', 'pending', 589978), (6613, '2025-01-08 01:00:00.000', 'pending', 589973), (6613, '2025-01-08 01:00:00.000', 'pending', 589972), (6613, '2025-01-08 01:00:00.000', 'pending', 589985), (6613, '2025-01-08 01:00:00.000', 'pending', 589987), (6613, '2025-01-08 01:00:00.000', 'pending', 589998), (6613, '2025-01-08 01:00:00.000', 'pending', 589984), (6613, '2025-01-08 01:00:00.000', 'pending', 589981), (6613, '2025-01-08 01:00:00.000', 'pending', 589996), (6613, '2025-01-08 01:00:00.000', 'pending', 590002), (6613, '2025-01-08 01:00:00.000', 'pending', 589893), (6613, '2025-01-08 01:00:00.000', 'pending', 589997), (6613, '2025-01-08 01:00:00.000', 'pending', 589991), (6613, '2025-01-08 01:00:00.000', 'pending', 590001), (6613, '2025-01-08 01:00:00.000', 'pending', 589999), (6613, '2025-01-08 01:00:00.000', 'pending', 590006), (6613, '2025-01-08 01:00:00.000', 'pending', 590003), (6613, '2025-01-08 01:00:00.000', 'pending', 590005), (6613, '2025-01-08 01:00:00.000', 'pending', 590015), (6613, '2025-01-08 01:00:00.000', 'pending', 590009), (6613, '2025-01-08 01:00:00.000', 'pending', 590013), (6613, '2025-01-08 01:00:00.000', 'pending', 590011), (6613, '2025-01-08 01:00:00.000', 'pending', 590008), (6613, '2025-01-08 01:00:00.000', 'pending', 590012), (6613, '2025-01-08 01:00:00.000', 'pending', 590014), (6613, '2025-01-08 01:00:00.000', 'pending', 590016), (6613, '2025-01-08 01:00:00.000', 'pending', 590010), (6613, '2025-01-08 01:00:00.000', 'pending', 590004), (6613, '2025-01-08 01:00:00.000', 'pending', 590017), (6613, '2025-01-08 01:00:00.000', 'pending', 590033), (6613, '2025-01-08 01:00:00.000', 'pending', 590018), (6613, '2025-01-08 01:00:00.000', 'pending', 590036), (6613, '2025-01-08 01:00:00.000', 'pending', 590007), (6613, '2025-01-08 01:00:00.000', 'pending', 590020), (6613, '2025-01-08 01:00:00.000', 'pending', 590026), (6613, '2025-01-08 01:00:00.000', 'pending', 590021), (6613, '2025-01-08 01:00:00.000', 'pending', 590023), (6613, '2025-01-08 01:00:00.000', 'pending', 590030), (6613, '2025-01-08 01:00:00.000', 'pending', 590031), (6613, '2025-01-08 01:00:00.000', 'pending', 590024), (6613, '2025-01-08 01:00:00.000', 'pending', 590034), (6613, '2025-01-08 01:00:00.000', 'pending', 590028), (6613, '2025-01-08 01:00:00.000', 'pending', 590025), (6613, '2025-01-08 01:00:00.000', 'pending', 590032), (6613, '2025-01-08 01:00:00.000', 'pending', 590035), (6613, '2025-01-08 01:00:00.000', 'pending', 590019), (6613, '2025-01-08 01:00:00.000', 'pending', 590039), (6613, '2025-01-08 01:00:00.000', 'pending', 590040), (6613, '2025-01-08 01:00:00.000', 'pending', 590037), (6613, '2025-01-08 01:00:00.000', 'pending', 590046), (6613, '2025-01-08 01:00:00.000', 'pending', 590043), (6613, '2025-01-08 01:00:00.000', 'pending', 590
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772878 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772878 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772885, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2329857352 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 519530), (6614, '2025-01-08 17:00:00.000', 'pending', 519524), (6614, '2025-01-08 17:00:00.000', 'pending', 519531), (6614, '2025-01-08 17:00:00.000', 'pending', 519532), (6614, '2025-01-08 17:00:00.000', 'pending', 519529), (6614, '2025-01-08 17:00:00.000', 'pending', 519534), (6614, '2025-01-08 17:00:00.000', 'pending', 519528), (6614, '2025-01-08 17:00:00.000', 'pending', 519539), (6614, '2025-01-08 17:00:00.000', 'pending', 519536), (6614, '2025-01-08 17:00:00.000', 'pending', 519544), (6614, '2025-01-08 17:00:00.000', 'pending', 519527), (6614, '2025-01-08 17:00:00.000', 'pending', 519538), (6614, '2025-01-08 17:00:00.000', 'pending', 519540), (6614, '2025-01-08 17:00:00.000', 'pending', 519543), (6614, '2025-01-08 17:00:00.000', 'pending', 519550), (6614, '2025-01-08 17:00:00.000', 'pending', 519545), (6614, '2025-01-08 17:00:00.000', 'pending', 519547), (6614, '2025-01-08 17:00:00.000', 'pending', 519537), (6614, '2025-01-08 17:00:00.000', 'pending', 519541), (6614, '2025-01-08 17:00:00.000', 'pending', 519535), (6614, '2025-01-08 17:00:00.000', 'pending', 519533), (6614, '2025-01-08 17:00:00.000', 'pending', 519548), (6614, '2025-01-08 17:00:00.000', 'pending', 519551), (6614, '2025-01-08 17:00:00.000', 'pending', 519552), (6614, '2025-01-08 17:00:00.000', 'pending', 519553), (6614, '2025-01-08 17:00:00.000', 'pending', 519556), (6614, '2025-01-08 17:00:00.000', 'pending', 519560), (6614, '2025-01-08 17:00:00.000', 'pending', 519546), (6614, '2025-01-08 17:00:00.000', 'pending', 519563), (6614, '2025-01-08 17:00:00.000', 'pending', 519564), (6614, '2025-01-08 17:00:00.000', 'pending', 519558), (6614, '2025-01-08 17:00:00.000', 'pending', 519557), (6614, '2025-01-08 17:00:00.000', 'pending', 519566), (6614, '2025-01-08 17:00:00.000', 'pending', 519570), (6614, '2025-01-08 17:00:00.000', 'pending', 519567), (6614, '2025-01-08 17:00:00.000', 'pending', 519569), (6614, '2025-01-08 17:00:00.000', 'pending', 519571), (6614, '2025-01-08 17:00:00.000', 'pending', 519572), (6614, '2025-01-08 17:00:00.000', 'pending', 519573), (6614, '2025-01-08 17:00:00.000', 'pending', 519576), (6614, '2025-01-08 17:00:00.000', 'pending', 519554), (6614, '2025-01-08 17:00:00.000', 'pending', 519562), (6614, '2025-01-08 17:00:00.000', 'pending', 519561), (6614, '2025-01-08 17:00:00.000', 'pending', 519574), (6614, '2025-01-08 17:00:00.000', 'pending', 519555), (6614, '2025-01-08 17:00:00.000', 'pending', 519568), (6614, '2025-01-08 17:00:00.000', 'pending', 519578), (6614, '2025-01-08 17:00:00.000', 'pending', 519559), (6614, '2025-01-08 17:00:00.000', 'pending', 519577), (6614, '2025-01-08 17:00:00.000', 'pending', 519581), (6614, '2025-01-08 17:00:00.000', 'pending', 519580), (6614, '2025-01-08 17:00:00.000', 'pending', 519565), (6614, '2025-01-08 17:00:00.000', 'pending', 519575), (6614, '2025-01-08 17:00:00.000', 'pending', 519
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772885 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772885 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772889, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5502, OS thread handle 70398109369680, query id 2329857361 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 404612), (6610, '2025-01-12 18:00:00.000', 'pending', 404652), (6610, '2025-01-12 18:00:00.000', 'pending', 404649), (6610, '2025-01-12 18:00:00.000', 'pending', 404687), (6610, '2025-01-12 18:00:00.000', 'pending', 404700), (6610, '2025-01-12 18:00:00.000', 'pending', 404707), (6610, '2025-01-12 18:00:00.000', 'pending', 404690), (6610, '2025-01-12 18:00:00.000', 'pending', 404691), (6610, '2025-01-12 18:00:00.000', 'pending', 404715), (6610, '2025-01-12 18:00:00.000', 'pending', 404733), (6610, '2025-01-12 18:00:00.000', 'pending', 404732), (6610, '2025-01-12 18:00:00.000', 'pending', 404730), (6610, '2025-01-12 18:00:00.000', 'pending', 404738), (6610, '2025-01-12 18:00:00.000', 'pending', 404728), (6610, '2025-01-12 18:00:00.000', 'pending', 404753), (6610, '2025-01-12 18:00:00.000', 'pending', 404754), (6610, '2025-01-12 18:00:00.000', 'pending', 404762), (6610, '2025-01-12 18:00:00.000', 'pending', 404798), (6610, '2025-01-12 18:00:00.000', 'pending', 404857), (6610, '2025-01-12 18:00:00.000', 'pending', 404871), (6610, '2025-01-12 18:00:00.000', 'pending', 404872), (6610, '2025-01-12 18:00:00.000', 'pending', 404902), (6610, '2025-01-12 18:00:00.000', 'pending', 405029), (6610, '2025-01-12 18:00:00.000', 'pending', 405135), (6610, '2025-01-12 18:00:00.000', 'pending', 404922), (6610, '2025-01-12 18:00:00.000', 'pending', 405574), (6610, '2025-01-12 18:00:00.000', 'pending', 405616), (6610, '2025-01-12 18:00:00.000', 'pending', 405572), (6610, '2025-01-12 18:00:00.000', 'pending', 405620), (6610, '2025-01-12 18:00:00.000', 'pending', 405881), (6610, '2025-01-12 18:00:00.000', 'pending', 405640), (6610, '2025-01-12 18:00:00.000', 'pending', 405920), (6610, '2025-01-12 18:00:00.000', 'pending', 406114), (6610, '2025-01-12 18:00:00.000', 'pending', 406161), (6610, '2025-01-12 18:00:00.000', 'pending', 405997), (6610, '2025-01-12 18:00:00.000', 'pending', 406041), (6610, '2025-01-12 18:00:00.000', 'pending', 406150), (6610, '2025-01-12 18:00:00.000', 'pending', 406441), (6610, '2025-01-12 18:00:00.000', 'pending', 406076), (6610, '2025-01-12 18:00:00.000', 'pending', 406401), (6610, '2025-01-12 18:00:00.000', 'pending', 406147), (6610, '2025-01-12 18:00:00.000', 'pending', 406235), (6610, '2025-01-12 18:00:00.000', 'pending', 406352), (6610, '2025-01-12 18:00:00.000', 'pending', 406424), (6610, '2025-01-12 18:00:00.000', 'pending', 406597), (6610, '2025-01-12 18:00:00.000', 'pending', 407047), (6610, '2025-01-12 18:00:00.000', 'pending', 407325), (6610, '2025-01-12 18:00:00.000', 'pending', 407365), (6610, '2025-01-12 18:00:00.000', 'pending', 407513), (6610, '2025-01-12 18:00:00.000', 'pending', 407432), (6610, '2025-01-12 18:00:00.000', 'pending', 407119), (6610, '2025-01-12 18:00:00.000', 'pending', 407685), (6610, '2025-01-12 18:00:00.000', 'pending', 407898), (6610, '2025-01-12 18:00:00.000', 'pending', 407
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772889 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772889 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772896, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5497, OS thread handle 70398544672080, query id 2329857416 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 542171), (6614, '2025-01-08 17:00:00.000', 'pending', 542170), (6614, '2025-01-08 17:00:00.000', 'pending', 542192), (6614, '2025-01-08 17:00:00.000', 'pending', 542177), (6614, '2025-01-08 17:00:00.000', 'pending', 542190), (6614, '2025-01-08 17:00:00.000', 'pending', 542181), (6614, '2025-01-08 17:00:00.000', 'pending', 542188), (6614, '2025-01-08 17:00:00.000', 'pending', 542182), (6614, '2025-01-08 17:00:00.000', 'pending', 542180), (6614, '2025-01-08 17:00:00.000', 'pending', 542173), (6614, '2025-01-08 17:00:00.000', 'pending', 542183), (6614, '2025-01-08 17:00:00.000', 'pending', 542201), (6614, '2025-01-08 17:00:00.000', 'pending', 542175), (6614, '2025-01-08 17:00:00.000', 'pending', 542194), (6614, '2025-01-08 17:00:00.000', 'pending', 542178), (6614, '2025-01-08 17:00:00.000', 'pending', 542191), (6614, '2025-01-08 17:00:00.000', 'pending', 542203), (6614, '2025-01-08 17:00:00.000', 'pending', 542179), (6614, '2025-01-08 17:00:00.000', 'pending', 542220), (6614, '2025-01-08 17:00:00.000', 'pending', 542196), (6614, '2025-01-08 17:00:00.000', 'pending', 542197), (6614, '2025-01-08 17:00:00.000', 'pending', 542189), (6614, '2025-01-08 17:00:00.000', 'pending', 542174), (6614, '2025-01-08 17:00:00.000', 'pending', 542176), (6614, '2025-01-08 17:00:00.000', 'pending', 542199), (6614, '2025-01-08 17:00:00.000', 'pending', 542187), (6614, '2025-01-08 17:00:00.000', 'pending', 542172), (6614, '2025-01-08 17:00:00.000', 'pending', 542184), (6614, '2025-01-08 17:00:00.000', 'pending', 542198), (6614, '2025-01-08 17:00:00.000', 'pending', 542219), (6614, '2025-01-08 17:00:00.000', 'pending', 542204), (6614, '2025-01-08 17:00:00.000', 'pending', 542209), (6614, '2025-01-08 17:00:00.000', 'pending', 542222), (6614, '2025-01-08 17:00:00.000', 'pending', 542213), (6614, '2025-01-08 17:00:00.000', 'pending', 542205), (6614, '2025-01-08 17:00:00.000', 'pending', 542193), (6614, '2025-01-08 17:00:00.000', 'pending', 542195), (6614, '2025-01-08 17:00:00.000', 'pending', 542206), (6614, '2025-01-08 17:00:00.000', 'pending', 542216), (6614, '2025-01-08 17:00:00.000', 'pending', 542218), (6614, '2025-01-08 17:00:00.000', 'pending', 542185), (6614, '2025-01-08 17:00:00.000', 'pending', 542214), (6614, '2025-01-08 17:00:00.000', 'pending', 542200), (6614, '2025-01-08 17:00:00.000', 'pending', 542224), (6614, '2025-01-08 17:00:00.000', 'pending', 542207), (6614, '2025-01-08 17:00:00.000', 'pending', 542208), (6614, '2025-01-08 17:00:00.000', 'pending', 542217), (6614, '2025-01-08 17:00:00.000', 'pending', 542210), (6614, '2025-01-08 17:00:00.000', 'pending', 542211), (6614, '2025-01-08 17:00:00.000', 'pending', 542212), (6614, '2025-01-08 17:00:00.000', 'pending', 542221), (6614, '2025-01-08 17:00:00.000', 'pending', 542215), (6614, '2025-01-08 17:00:00.000', 'pending', 542223), (6614, '2025-01-08 17:00:00.000', 'pending', 542
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772896 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772896 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772897, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5289, OS thread handle 70398318794064, query id 2329857423 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 426137), (6610, '2025-01-12 18:00:00.000', 'pending', 426091), (6610, '2025-01-12 18:00:00.000', 'pending', 426216), (6610, '2025-01-12 18:00:00.000', 'pending', 426249), (6610, '2025-01-12 18:00:00.000', 'pending', 426192), (6610, '2025-01-12 18:00:00.000', 'pending', 426344), (6610, '2025-01-12 18:00:00.000', 'pending', 426469), (6610, '2025-01-12 18:00:00.000', 'pending', 426370), (6610, '2025-01-12 18:00:00.000', 'pending', 426399), (6610, '2025-01-12 18:00:00.000', 'pending', 426473), (6610, '2025-01-12 18:00:00.000', 'pending', 426477), (6610, '2025-01-12 18:00:00.000', 'pending', 426453), (6610, '2025-01-12 18:00:00.000', 'pending', 426363), (6610, '2025-01-12 18:00:00.000', 'pending', 426573), (6610, '2025-01-12 18:00:00.000', 'pending', 426505), (6610, '2025-01-12 18:00:00.000', 'pending', 426742), (6610, '2025-01-12 18:00:00.000', 'pending', 426597), (6610, '2025-01-12 18:00:00.000', 'pending', 426635), (6610, '2025-01-12 18:00:00.000', 'pending', 426669), (6610, '2025-01-12 18:00:00.000', 'pending', 426876), (6610, '2025-01-12 18:00:00.000', 'pending', 426820), (6610, '2025-01-12 18:00:00.000', 'pending', 427687), (6610, '2025-01-12 18:00:00.000', 'pending', 428704), (6610, '2025-01-12 18:00:00.000', 'pending', 428325), (6610, '2025-01-12 18:00:00.000', 'pending', 428826), (6610, '2025-01-12 18:00:00.000', 'pending', 428208), (6610, '2025-01-12 18:00:00.000', 'pending', 429953), (6610, '2025-01-12 18:00:00.000', 'pending', 427397), (6610, '2025-01-12 18:00:00.000', 'pending', 429984), (6610, '2025-01-12 18:00:00.000', 'pending', 428659), (6610, '2025-01-12 18:00:00.000', 'pending', 430487), (6610, '2025-01-12 18:00:00.000', 'pending', 430429), (6610, '2025-01-12 18:00:00.000', 'pending', 430714), (6610, '2025-01-12 18:00:00.000', 'pending', 430238), (6610, '2025-01-12 18:00:00.000', 'pending', 430122), (6610, '2025-01-12 18:00:00.000', 'pending', 430989), (6610, '2025-01-12 18:00:00.000', 'pending', 431970), (6610, '2025-01-12 18:00:00.000', 'pending', 431300), (6610, '2025-01-12 18:00:00.000', 'pending', 431485), (6610, '2025-01-12 18:00:00.000', 'pending', 432128), (6610, '2025-01-12 18:00:00.000', 'pending', 432302), (6610, '2025-01-12 18:00:00.000', 'pending', 432488), (6610, '2025-01-12 18:00:00.000', 'pending', 432284), (6610, '2025-01-12 18:00:00.000', 'pending', 432203), (6610, '2025-01-12 18:00:00.000', 'pending', 432570), (6610, '2025-01-12 18:00:00.000', 'pending', 432742), (6610, '2025-01-12 18:00:00.000', 'pending', 432688), (6610, '2025-01-12 18:00:00.000', 'pending', 432843), (6610, '2025-01-12 18:00:00.000', 'pending', 432814), (6610, '2025-01-12 18:00:00.000', 'pending', 431884), (6610, '2025-01-12 18:00:00.000', 'pending', 432809), (6610, '2025-01-12 18:00:00.000', 'pending', 432826), (6610, '2025-01-12 18:00:00.000', 'pending', 433321), (6610, '2025-01-12 18:00:00.000', 'pending', 433
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772897 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772897 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772899, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5274, OS thread handle 70398002881872, query id 2329857451 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 599454), (6613, '2025-01-08 01:00:00.000', 'pending', 599463), (6613, '2025-01-08 01:00:00.000', 'pending', 599453), (6613, '2025-01-08 01:00:00.000', 'pending', 599450), (6613, '2025-01-08 01:00:00.000', 'pending', 599455), (6613, '2025-01-08 01:00:00.000', 'pending', 599471), (6613, '2025-01-08 01:00:00.000', 'pending', 599460), (6613, '2025-01-08 01:00:00.000', 'pending', 599444), (6613, '2025-01-08 01:00:00.000', 'pending', 599467), (6613, '2025-01-08 01:00:00.000', 'pending', 599470), (6613, '2025-01-08 01:00:00.000', 'pending', 599465), (6613, '2025-01-08 01:00:00.000', 'pending', 599472), (6613, '2025-01-08 01:00:00.000', 'pending', 599458), (6613, '2025-01-08 01:00:00.000', 'pending', 599473), (6613, '2025-01-08 01:00:00.000', 'pending', 599459), (6613, '2025-01-08 01:00:00.000', 'pending', 599456), (6613, '2025-01-08 01:00:00.000', 'pending', 599451), (6613, '2025-01-08 01:00:00.000', 'pending', 599485), (6613, '2025-01-08 01:00:00.000', 'pending', 599461), (6613, '2025-01-08 01:00:00.000', 'pending', 599474), (6613, '2025-01-08 01:00:00.000', 'pending', 599462), (6613, '2025-01-08 01:00:00.000', 'pending', 599480), (6613, '2025-01-08 01:00:00.000', 'pending', 599468), (6613, '2025-01-08 01:00:00.000', 'pending', 599469), (6613, '2025-01-08 01:00:00.000', 'pending', 599479), (6613, '2025-01-08 01:00:00.000', 'pending', 599486), (6613, '2025-01-08 01:00:00.000', 'pending', 599478), (6613, '2025-01-08 01:00:00.000', 'pending', 599494), (6613, '2025-01-08 01:00:00.000', 'pending', 599489), (6613, '2025-01-08 01:00:00.000', 'pending', 599481), (6613, '2025-01-08 01:00:00.000', 'pending', 599495), (6613, '2025-01-08 01:00:00.000', 'pending', 599476), (6613, '2025-01-08 01:00:00.000', 'pending', 599464), (6613, '2025-01-08 01:00:00.000', 'pending', 599482), (6613, '2025-01-08 01:00:00.000', 'pending', 599484), (6613, '2025-01-08 01:00:00.000', 'pending', 599491), (6613, '2025-01-08 01:00:00.000', 'pending', 599507), (6613, '2025-01-08 01:00:00.000', 'pending', 599493), (6613, '2025-01-08 01:00:00.000', 'pending', 599497), (6613, '2025-01-08 01:00:00.000', 'pending', 599483), (6613, '2025-01-08 01:00:00.000', 'pending', 599492), (6613, '2025-01-08 01:00:00.000', 'pending', 599502), (6613, '2025-01-08 01:00:00.000', 'pending', 599475), (6613, '2025-01-08 01:00:00.000', 'pending', 599504), (6613, '2025-01-08 01:00:00.000', 'pending', 599506), (6613, '2025-01-08 01:00:00.000', 'pending', 599487), (6613, '2025-01-08 01:00:00.000', 'pending', 599457), (6613, '2025-01-08 01:00:00.000', 'pending', 599508), (6613, '2025-01-08 01:00:00.000', 'pending', 599500), (6613, '2025-01-08 01:00:00.000', 'pending', 599503), (6613, '2025-01-08 01:00:00.000', 'pending', 599512), (6613, '2025-01-08 01:00:00.000', 'pending', 599496), (6613, '2025-01-08 01:00:00.000', 'pending', 599498), (6613, '2025-01-08 01:00:00.000', 'pending', 599
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772899 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772899 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772900, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5289, OS thread handle 70398318794064, query id 2329857452 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 542281), (6614, '2025-01-08 17:00:00.000', 'pending', 542279), (6614, '2025-01-08 17:00:00.000', 'pending', 542261), (6614, '2025-01-08 17:00:00.000', 'pending', 542271), (6614, '2025-01-08 17:00:00.000', 'pending', 542282), (6614, '2025-01-08 17:00:00.000', 'pending', 542259), (6614, '2025-01-08 17:00:00.000', 'pending', 542275), (6614, '2025-01-08 17:00:00.000', 'pending', 542278), (6614, '2025-01-08 17:00:00.000', 'pending', 542286), (6614, '2025-01-08 17:00:00.000', 'pending', 542264), (6614, '2025-01-08 17:00:00.000', 'pending', 542288), (6614, '2025-01-08 17:00:00.000', 'pending', 542295), (6614, '2025-01-08 17:00:00.000', 'pending', 542285), (6614, '2025-01-08 17:00:00.000', 'pending', 542291), (6614, '2025-01-08 17:00:00.000', 'pending', 542294), (6614, '2025-01-08 17:00:00.000', 'pending', 542293), (6614, '2025-01-08 17:00:00.000', 'pending', 542284), (6614, '2025-01-08 17:00:00.000', 'pending', 542287), (6614, '2025-01-08 17:00:00.000', 'pending', 542290), (6614, '2025-01-08 17:00:00.000', 'pending', 542299), (6614, '2025-01-08 17:00:00.000', 'pending', 542289), (6614, '2025-01-08 17:00:00.000', 'pending', 542296), (6614, '2025-01-08 17:00:00.000', 'pending', 542304), (6614, '2025-01-08 17:00:00.000', 'pending', 542283), (6614, '2025-01-08 17:00:00.000', 'pending', 542297), (6614, '2025-01-08 17:00:00.000', 'pending', 542301), (6614, '2025-01-08 17:00:00.000', 'pending', 542308), (6614, '2025-01-08 17:00:00.000', 'pending', 542306), (6614, '2025-01-08 17:00:00.000', 'pending', 542298), (6614, '2025-01-08 17:00:00.000', 'pending', 542302), (6614, '2025-01-08 17:00:00.000', 'pending', 542303), (6614, '2025-01-08 17:00:00.000', 'pending', 542305), (6614, '2025-01-08 17:00:00.000', 'pending', 542318), (6614, '2025-01-08 17:00:00.000', 'pending', 542322), (6614, '2025-01-08 17:00:00.000', 'pending', 542328), (6614, '2025-01-08 17:00:00.000', 'pending', 542307), (6614, '2025-01-08 17:00:00.000', 'pending', 542310), (6614, '2025-01-08 17:00:00.000', 'pending', 542315), (6614, '2025-01-08 17:00:00.000', 'pending', 542313), (6614, '2025-01-08 17:00:00.000', 'pending', 542311), (6614, '2025-01-08 17:00:00.000', 'pending', 542319), (6614, '2025-01-08 17:00:00.000', 'pending', 542317), (6614, '2025-01-08 17:00:00.000', 'pending', 542300), (6614, '2025-01-08 17:00:00.000', 'pending', 542321), (6614, '2025-01-08 17:00:00.000', 'pending', 542320), (6614, '2025-01-08 17:00:00.000', 'pending', 542312), (6614, '2025-01-08 17:00:00.000', 'pending', 542325), (6614, '2025-01-08 17:00:00.000', 'pending', 542330), (6614, '2025-01-08 17:00:00.000', 'pending', 542323), (6614, '2025-01-08 17:00:00.000', 'pending', 542316), (6614, '2025-01-08 17:00:00.000', 'pending', 542332), (6614, '2025-01-08 17:00:00.000', 'pending', 542314), (6614, '2025-01-08 17:00:00.000', 'pending', 542324), (6614, '2025-01-08 17:00:00.000', 'pending', 542
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772900 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772900 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772920, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2329857564 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 473370), (6610, '2025-01-12 18:00:00.000', 'pending', 471696), (6610, '2025-01-12 18:00:00.000', 'pending', 482188), (6610, '2025-01-12 18:00:00.000', 'pending', 482612), (6610, '2025-01-12 18:00:00.000', 'pending', 488841), (6610, '2025-01-12 18:00:00.000', 'pending', 474628), (6610, '2025-01-12 18:00:00.000', 'pending', 482560), (6610, '2025-01-12 18:00:00.000', 'pending', 377447), (6610, '2025-01-12 18:00:00.000', 'pending', 487116), (6610, '2025-01-12 18:00:00.000', 'pending', 491429), (6610, '2025-01-12 18:00:00.000', 'pending', 401368), (6610, '2025-01-12 18:00:00.000', 'pending', 433395), (6610, '2025-01-12 18:00:00.000', 'pending', 479934), (6610, '2025-01-12 18:00:00.000', 'pending', 464665), (6610, '2025-01-12 18:00:00.000', 'pending', 484116), (6610, '2025-01-12 18:00:00.000', 'pending', 380073), (6610, '2025-01-12 18:00:00.000', 'pending', 492598), (6610, '2025-01-12 18:00:00.000', 'pending', 492848), (6610, '2025-01-12 18:00:00.000', 'pending', 491782), (6610, '2025-01-12 18:00:00.000', 'pending', 492635), (6610, '2025-01-12 18:00:00.000', 'pending', 444844), (6610, '2025-01-12 18:00:00.000', 'pending', 494389), (6610, '2025-01-12 18:00:00.000', 'pending', 481362), (6610, '2025-01-12 18:00:00.000', 'pending', 481478), (6610, '2025-01-12 18:00:00.000', 'pending', 420440), (6610, '2025-01-12 18:00:00.000', 'pending', 481983), (6610, '2025-01-12 18:00:00.000', 'pending', 494632), (6610, '2025-01-12 18:00:00.000', 'pending', 404026), (6610, '2025-01-12 18:00:00.000', 'pending', 481969), (6610, '2025-01-12 18:00:00.000', 'pending', 494914), (6610, '2025-01-12 18:00:00.000', 'pending', 481150), (6610, '2025-01-12 18:00:00.000', 'pending', 378005), (6610, '2025-01-12 18:00:00.000', 'pending', 403516), (6610, '2025-01-12 18:00:00.000', 'pending', 494589), (6610, '2025-01-12 18:00:00.000', 'pending', 495114), (6610, '2025-01-12 18:00:00.000', 'pending', 474466), (6610, '2025-01-12 18:00:00.000', 'pending', 468931), (6610, '2025-01-12 18:00:00.000', 'pending', 483434), (6610, '2025-01-12 18:00:00.000', 'pending', 426109), (6610, '2025-01-12 18:00:00.000', 'pending', 480454), (6610, '2025-01-12 18:00:00.000', 'pending', 363581), (6610, '2025-01-12 18:00:00.000', 'pending', 485589), (6610, '2025-01-12 18:00:00.000', 'pending', 259188), (6610, '2025-01-12 18:00:00.000', 'pending', 368252), (6610, '2025-01-12 18:00:00.000', 'pending', 485432), (6610, '2025-01-12 18:00:00.000', 'pending', 373950), (6610, '2025-01-12 18:00:00.000', 'pending', 482455), (6610, '2025-01-12 18:00:00.000', 'pending', 495268), (6610, '2025-01-12 18:00:00.000', 'pending', 491527), (6610, '2025-01-12 18:00:00.000', 'pending', 494658), (6610, '2025-01-12 18:00:00.000', 'pending', 404365), (6610, '2025-01-12 18:00:00.000', 'pending', 470865), (6610, '2025-01-12 18:00:00.000', 'pending', 472329), (6610, '2025-01-12 18:00:00.000', 'pending', 482
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772920 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772920 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772921, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5289, OS thread handle 70398318794064, query id 2329857567 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 561645), (6614, '2025-01-08 17:00:00.000', 'pending', 561653), (6614, '2025-01-08 17:00:00.000', 'pending', 561656), (6614, '2025-01-08 17:00:00.000', 'pending', 561652), (6614, '2025-01-08 17:00:00.000', 'pending', 561663), (6614, '2025-01-08 17:00:00.000', 'pending', 561660), (6614, '2025-01-08 17:00:00.000', 'pending', 561661), (6614, '2025-01-08 17:00:00.000', 'pending', 561665), (6614, '2025-01-08 17:00:00.000', 'pending', 561681), (6614, '2025-01-08 17:00:00.000', 'pending', 561668), (6614, '2025-01-08 17:00:00.000', 'pending', 561684), (6614, '2025-01-08 17:00:00.000', 'pending', 561659), (6614, '2025-01-08 17:00:00.000', 'pending', 561649), (6614, '2025-01-08 17:00:00.000', 'pending', 561647), (6614, '2025-01-08 17:00:00.000', 'pending', 561662), (6614, '2025-01-08 17:00:00.000', 'pending', 561677), (6614, '2025-01-08 17:00:00.000', 'pending', 561669), (6614, '2025-01-08 17:00:00.000', 'pending', 561666), (6614, '2025-01-08 17:00:00.000', 'pending', 561664), (6614, '2025-01-08 17:00:00.000', 'pending', 561678), (6614, '2025-01-08 17:00:00.000', 'pending', 561683), (6614, '2025-01-08 17:00:00.000', 'pending', 561673), (6614, '2025-01-08 17:00:00.000', 'pending', 561675), (6614, '2025-01-08 17:00:00.000', 'pending', 561671), (6614, '2025-01-08 17:00:00.000', 'pending', 561667), (6614, '2025-01-08 17:00:00.000', 'pending', 561676), (6614, '2025-01-08 17:00:00.000', 'pending', 561674), (6614, '2025-01-08 17:00:00.000', 'pending', 561672), (6614, '2025-01-08 17:00:00.000', 'pending', 561687), (6614, '2025-01-08 17:00:00.000', 'pending', 561685), (6614, '2025-01-08 17:00:00.000', 'pending', 561682), (6614, '2025-01-08 17:00:00.000', 'pending', 561679), (6614, '2025-01-08 17:00:00.000', 'pending', 561680), (6614, '2025-01-08 17:00:00.000', 'pending', 561688), (6614, '2025-01-08 17:00:00.000', 'pending', 561686), (6614, '2025-01-08 17:00:00.000', 'pending', 561689), (6614, '2025-01-08 17:00:00.000', 'pending', 561695), (6614, '2025-01-08 17:00:00.000', 'pending', 561691), (6614, '2025-01-08 17:00:00.000', 'pending', 561709), (6614, '2025-01-08 17:00:00.000', 'pending', 561699), (6614, '2025-01-08 17:00:00.000', 'pending', 561713), (6614, '2025-01-08 17:00:00.000', 'pending', 561697), (6614, '2025-01-08 17:00:00.000', 'pending', 561698), (6614, '2025-01-08 17:00:00.000', 'pending', 561712), (6614, '2025-01-08 17:00:00.000', 'pending', 561710), (6614, '2025-01-08 17:00:00.000', 'pending', 561706), (6614, '2025-01-08 17:00:00.000', 'pending', 561701), (6614, '2025-01-08 17:00:00.000', 'pending', 561711), (6614, '2025-01-08 17:00:00.000', 'pending', 561719), (6614, '2025-01-08 17:00:00.000', 'pending', 561741), (6614, '2025-01-08 17:00:00.000', 'pending', 561692), (6614, '2025-01-08 17:00:00.000', 'pending', 561720), (6614, '2025-01-08 17:00:00.000', 'pending', 561728), (6614, '2025-01-08 17:00:00.000', 'pending', 561
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772921 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772921 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772955, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5274, OS thread handle 70398002881872, query id 2329857747 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 663383), (6613, '2025-01-08 01:00:00.000', 'pending', 663396), (6613, '2025-01-08 01:00:00.000', 'pending', 663395), (6613, '2025-01-08 01:00:00.000', 'pending', 663409), (6613, '2025-01-08 01:00:00.000', 'pending', 663407), (6613, '2025-01-08 01:00:00.000', 'pending', 663403), (6613, '2025-01-08 01:00:00.000', 'pending', 663402), (6613, '2025-01-08 01:00:00.000', 'pending', 663406), (6613, '2025-01-08 01:00:00.000', 'pending', 663412), (6613, '2025-01-08 01:00:00.000', 'pending', 663324), (6613, '2025-01-08 01:00:00.000', 'pending', 663401), (6613, '2025-01-08 01:00:00.000', 'pending', 663323), (6613, '2025-01-08 01:00:00.000', 'pending', 663400), (6613, '2025-01-08 01:00:00.000', 'pending', 663393), (6613, '2025-01-08 01:00:00.000', 'pending', 663410), (6613, '2025-01-08 01:00:00.000', 'pending', 663322), (6613, '2025-01-08 01:00:00.000', 'pending', 663415), (6613, '2025-01-08 01:00:00.000', 'pending', 663392), (6613, '2025-01-08 01:00:00.000', 'pending', 663354), (6613, '2025-01-08 01:00:00.000', 'pending', 663421), (6613, '2025-01-08 01:00:00.000', 'pending', 663399), (6613, '2025-01-08 01:00:00.000', 'pending', 663398), (6613, '2025-01-08 01:00:00.000', 'pending', 663411), (6613, '2025-01-08 01:00:00.000', 'pending', 663419), (6613, '2025-01-08 01:00:00.000', 'pending', 663422), (6613, '2025-01-08 01:00:00.000', 'pending', 663413), (6613, '2025-01-08 01:00:00.000', 'pending', 663405), (6613, '2025-01-08 01:00:00.000', 'pending', 663425), (6613, '2025-01-08 01:00:00.000', 'pending', 663416), (6613, '2025-01-08 01:00:00.000', 'pending', 663417), (6613, '2025-01-08 01:00:00.000', 'pending', 663427), (6613, '2025-01-08 01:00:00.000', 'pending', 663431), (6613, '2025-01-08 01:00:00.000', 'pending', 663429), (6613, '2025-01-08 01:00:00.000', 'pending', 663404), (6613, '2025-01-08 01:00:00.000', 'pending', 663420), (6613, '2025-01-08 01:00:00.000', 'pending', 663408), (6613, '2025-01-08 01:00:00.000', 'pending', 663414), (6613, '2025-01-08 01:00:00.000', 'pending', 663433), (6613, '2025-01-08 01:00:00.000', 'pending', 663432), (6613, '2025-01-08 01:00:00.000', 'pending', 663430), (6613, '2025-01-08 01:00:00.000', 'pending', 663426), (6613, '2025-01-08 01:00:00.000', 'pending', 663424), (6613, '2025-01-08 01:00:00.000', 'pending', 663428), (6613, '2025-01-08 01:00:00.000', 'pending', 663436), (6613, '2025-01-08 01:00:00.000', 'pending', 663434), (6613, '2025-01-08 01:00:00.000', 'pending', 663423), (6613, '2025-01-08 01:00:00.000', 'pending', 663438), (6613, '2025-01-08 01:00:00.000', 'pending', 663435), (6613, '2025-01-08 01:00:00.000', 'pending', 663446), (6613, '2025-01-08 01:00:00.000', 'pending', 663437), (6613, '2025-01-08 01:00:00.000', 'pending', 663443), (6613, '2025-01-08 01:00:00.000', 'pending', 663418), (6613, '2025-01-08 01:00:00.000', 'pending', 663445), (6613, '2025-01-08 01:00:00.000', 'pending', 663
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772955 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772955 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772956, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2329857753 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 590243), (6614, '2025-01-08 17:00:00.000', 'pending', 590246), (6614, '2025-01-08 17:00:00.000', 'pending', 590235), (6614, '2025-01-08 17:00:00.000', 'pending', 590237), (6614, '2025-01-08 17:00:00.000', 'pending', 590247), (6614, '2025-01-08 17:00:00.000', 'pending', 590242), (6614, '2025-01-08 17:00:00.000', 'pending', 590234), (6614, '2025-01-08 17:00:00.000', 'pending', 590245), (6614, '2025-01-08 17:00:00.000', 'pending', 590238), (6614, '2025-01-08 17:00:00.000', 'pending', 589927), (6614, '2025-01-08 17:00:00.000', 'pending', 590240), (6614, '2025-01-08 17:00:00.000', 'pending', 590244), (6614, '2025-01-08 17:00:00.000', 'pending', 590248), (6614, '2025-01-08 17:00:00.000', 'pending', 590241), (6614, '2025-01-08 17:00:00.000', 'pending', 590250), (6614, '2025-01-08 17:00:00.000', 'pending', 590251), (6614, '2025-01-08 17:00:00.000', 'pending', 590253), (6614, '2025-01-08 17:00:00.000', 'pending', 590231), (6614, '2025-01-08 17:00:00.000', 'pending', 589942), (6614, '2025-01-08 17:00:00.000', 'pending', 590254), (6614, '2025-01-08 17:00:00.000', 'pending', 590060), (6614, '2025-01-08 17:00:00.000', 'pending', 590252), (6614, '2025-01-08 17:00:00.000', 'pending', 590255), (6614, '2025-01-08 17:00:00.000', 'pending', 590057), (6614, '2025-01-08 17:00:00.000', 'pending', 590068), (6614, '2025-01-08 17:00:00.000', 'pending', 590072), (6614, '2025-01-08 17:00:00.000', 'pending', 590071), (6614, '2025-01-08 17:00:00.000', 'pending', 590080), (6614, '2025-01-08 17:00:00.000', 'pending', 590079), (6614, '2025-01-08 17:00:00.000', 'pending', 590077), (6614, '2025-01-08 17:00:00.000', 'pending', 590086), (6614, '2025-01-08 17:00:00.000', 'pending', 590082), (6614, '2025-01-08 17:00:00.000', 'pending', 590088), (6614, '2025-01-08 17:00:00.000', 'pending', 590091), (6614, '2025-01-08 17:00:00.000', 'pending', 590094), (6614, '2025-01-08 17:00:00.000', 'pending', 590101), (6614, '2025-01-08 17:00:00.000', 'pending', 590108), (6614, '2025-01-08 17:00:00.000', 'pending', 590109), (6614, '2025-01-08 17:00:00.000', 'pending', 590110), (6614, '2025-01-08 17:00:00.000', 'pending', 590122), (6614, '2025-01-08 17:00:00.000', 'pending', 590121), (6614, '2025-01-08 17:00:00.000', 'pending', 590123), (6614, '2025-01-08 17:00:00.000', 'pending', 590116), (6614, '2025-01-08 17:00:00.000', 'pending', 590127), (6614, '2025-01-08 17:00:00.000', 'pending', 590129), (6614, '2025-01-08 17:00:00.000', 'pending', 590226), (6614, '2025-01-08 17:00:00.000', 'pending', 590056), (6614, '2025-01-08 17:00:00.000', 'pending', 590061), (6614, '2025-01-08 17:00:00.000', 'pending', 590147), (6614, '2025-01-08 17:00:00.000', 'pending', 590085), (6614, '2025-01-08 17:00:00.000', 'pending', 590084), (6614, '2025-01-08 17:00:00.000', 'pending', 590144), (6614, '2025-01-08 17:00:00.000', 'pending', 590195), (6614, '2025-01-08 17:00:00.000', 'pending', 590
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772956 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772956 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772961, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2329857805 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 599350), (6614, '2025-01-08 17:00:00.000', 'pending', 599354), (6614, '2025-01-08 17:00:00.000', 'pending', 599353), (6614, '2025-01-08 17:00:00.000', 'pending', 599340), (6614, '2025-01-08 17:00:00.000', 'pending', 599349), (6614, '2025-01-08 17:00:00.000', 'pending', 599337), (6614, '2025-01-08 17:00:00.000', 'pending', 599358), (6614, '2025-01-08 17:00:00.000', 'pending', 599355), (6614, '2025-01-08 17:00:00.000', 'pending', 599359), (6614, '2025-01-08 17:00:00.000', 'pending', 599366), (6614, '2025-01-08 17:00:00.000', 'pending', 599357), (6614, '2025-01-08 17:00:00.000', 'pending', 599367), (6614, '2025-01-08 17:00:00.000', 'pending', 599365), (6614, '2025-01-08 17:00:00.000', 'pending', 599361), (6614, '2025-01-08 17:00:00.000', 'pending', 599363), (6614, '2025-01-08 17:00:00.000', 'pending', 599373), (6614, '2025-01-08 17:00:00.000', 'pending', 599356), (6614, '2025-01-08 17:00:00.000', 'pending', 599374), (6614, '2025-01-08 17:00:00.000', 'pending', 599364), (6614, '2025-01-08 17:00:00.000', 'pending', 599360), (6614, '2025-01-08 17:00:00.000', 'pending', 599377), (6614, '2025-01-08 17:00:00.000', 'pending', 599372), (6614, '2025-01-08 17:00:00.000', 'pending', 599375), (6614, '2025-01-08 17:00:00.000', 'pending', 599368), (6614, '2025-01-08 17:00:00.000', 'pending', 599384), (6614, '2025-01-08 17:00:00.000', 'pending', 599378), (6614, '2025-01-08 17:00:00.000', 'pending', 599382), (6614, '2025-01-08 17:00:00.000', 'pending', 599371), (6614, '2025-01-08 17:00:00.000', 'pending', 599369), (6614, '2025-01-08 17:00:00.000', 'pending', 599379), (6614, '2025-01-08 17:00:00.000', 'pending', 599387), (6614, '2025-01-08 17:00:00.000', 'pending', 599376), (6614, '2025-01-08 17:00:00.000', 'pending', 599388), (6614, '2025-01-08 17:00:00.000', 'pending', 599390), (6614, '2025-01-08 17:00:00.000', 'pending', 599383), (6614, '2025-01-08 17:00:00.000', 'pending', 599362), (6614, '2025-01-08 17:00:00.000', 'pending', 599381), (6614, '2025-01-08 17:00:00.000', 'pending', 599370), (6614, '2025-01-08 17:00:00.000', 'pending', 599386), (6614, '2025-01-08 17:00:00.000', 'pending', 599385), (6614, '2025-01-08 17:00:00.000', 'pending', 599392), (6614, '2025-01-08 17:00:00.000', 'pending', 599389), (6614, '2025-01-08 17:00:00.000', 'pending', 599404), (6614, '2025-01-08 17:00:00.000', 'pending', 599380), (6614, '2025-01-08 17:00:00.000', 'pending', 599394), (6614, '2025-01-08 17:00:00.000', 'pending', 599407), (6614, '2025-01-08 17:00:00.000', 'pending', 599395), (6614, '2025-01-08 17:00:00.000', 'pending', 599396), (6614, '2025-01-08 17:00:00.000', 'pending', 599406), (6614, '2025-01-08 17:00:00.000', 'pending', 599402), (6614, '2025-01-08 17:00:00.000', 'pending', 599408), (6614, '2025-01-08 17:00:00.000', 'pending', 599418), (6614, '2025-01-08 17:00:00.000', 'pending', 599393), (6614, '2025-01-08 17:00:00.000', 'pending', 599
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772961 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772961 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772962, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5292, OS thread handle 70398094546256, query id 2329857813 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 663586), (6613, '2025-01-08 01:00:00.000', 'pending', 663584), (6613, '2025-01-08 01:00:00.000', 'pending', 663580), (6613, '2025-01-08 01:00:00.000', 'pending', 663601), (6613, '2025-01-08 01:00:00.000', 'pending', 663600), (6613, '2025-01-08 01:00:00.000', 'pending', 663603), (6613, '2025-01-08 01:00:00.000', 'pending', 663606), (6613, '2025-01-08 01:00:00.000', 'pending', 663599), (6613, '2025-01-08 01:00:00.000', 'pending', 663602), (6613, '2025-01-08 01:00:00.000', 'pending', 663612), (6613, '2025-01-08 01:00:00.000', 'pending', 663605), (6613, '2025-01-08 01:00:00.000', 'pending', 663614), (6613, '2025-01-08 01:00:00.000', 'pending', 663621), (6613, '2025-01-08 01:00:00.000', 'pending', 663608), (6613, '2025-01-08 01:00:00.000', 'pending', 663593), (6613, '2025-01-08 01:00:00.000', 'pending', 663613), (6613, '2025-01-08 01:00:00.000', 'pending', 663619), (6613, '2025-01-08 01:00:00.000', 'pending', 663597), (6613, '2025-01-08 01:00:00.000', 'pending', 663622), (6613, '2025-01-08 01:00:00.000', 'pending', 663607), (6613, '2025-01-08 01:00:00.000', 'pending', 663568), (6613, '2025-01-08 01:00:00.000', 'pending', 663544), (6613, '2025-01-08 01:00:00.000', 'pending', 663618), (6613, '2025-01-08 01:00:00.000', 'pending', 663604), (6613, '2025-01-08 01:00:00.000', 'pending', 663609), (6613, '2025-01-08 01:00:00.000', 'pending', 663624), (6613, '2025-01-08 01:00:00.000', 'pending', 663617), (6613, '2025-01-08 01:00:00.000', 'pending', 663625), (6613, '2025-01-08 01:00:00.000', 'pending', 663616), (6613, '2025-01-08 01:00:00.000', 'pending', 663632), (6613, '2025-01-08 01:00:00.000', 'pending', 663620), (6613, '2025-01-08 01:00:00.000', 'pending', 663635), (6613, '2025-01-08 01:00:00.000', 'pending', 663623), (6613, '2025-01-08 01:00:00.000', 'pending', 663640), (6613, '2025-01-08 01:00:00.000', 'pending', 663628), (6613, '2025-01-08 01:00:00.000', 'pending', 663615), (6613, '2025-01-08 01:00:00.000', 'pending', 663631), (6613, '2025-01-08 01:00:00.000', 'pending', 663610), (6613, '2025-01-08 01:00:00.000', 'pending', 663611), (6613, '2025-01-08 01:00:00.000', 'pending', 663633), (6613, '2025-01-08 01:00:00.000', 'pending', 663630), (6613, '2025-01-08 01:00:00.000', 'pending', 663629), (6613, '2025-01-08 01:00:00.000', 'pending', 663636), (6613, '2025-01-08 01:00:00.000', 'pending', 663642), (6613, '2025-01-08 01:00:00.000', 'pending', 663634), (6613, '2025-01-08 01:00:00.000', 'pending', 663641), (6613, '2025-01-08 01:00:00.000', 'pending', 663637), (6613, '2025-01-08 01:00:00.000', 'pending', 663639), (6613, '2025-01-08 01:00:00.000', 'pending', 663645), (6613, '2025-01-08 01:00:00.000', 'pending', 663627), (6613, '2025-01-08 01:00:00.000', 'pending', 663646), (6613, '2025-01-08 01:00:00.000', 'pending', 663570), (6613, '2025-01-08 01:00:00.000', 'pending', 663575), (6613, '2025-01-08 01:00:00.000', 'pending', 663
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772962 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772962 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772964, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2329857822 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 599450), (6614, '2025-01-08 17:00:00.000', 'pending', 599455), (6614, '2025-01-08 17:00:00.000', 'pending', 599471), (6614, '2025-01-08 17:00:00.000', 'pending', 599460), (6614, '2025-01-08 17:00:00.000', 'pending', 599444), (6614, '2025-01-08 17:00:00.000', 'pending', 599467), (6614, '2025-01-08 17:00:00.000', 'pending', 599470), (6614, '2025-01-08 17:00:00.000', 'pending', 599465), (6614, '2025-01-08 17:00:00.000', 'pending', 599472), (6614, '2025-01-08 17:00:00.000', 'pending', 599458), (6614, '2025-01-08 17:00:00.000', 'pending', 599473), (6614, '2025-01-08 17:00:00.000', 'pending', 599459), (6614, '2025-01-08 17:00:00.000', 'pending', 599456), (6614, '2025-01-08 17:00:00.000', 'pending', 599451), (6614, '2025-01-08 17:00:00.000', 'pending', 599485), (6614, '2025-01-08 17:00:00.000', 'pending', 599461), (6614, '2025-01-08 17:00:00.000', 'pending', 599474), (6614, '2025-01-08 17:00:00.000', 'pending', 599462), (6614, '2025-01-08 17:00:00.000', 'pending', 599480), (6614, '2025-01-08 17:00:00.000', 'pending', 599468), (6614, '2025-01-08 17:00:00.000', 'pending', 599469), (6614, '2025-01-08 17:00:00.000', 'pending', 599479), (6614, '2025-01-08 17:00:00.000', 'pending', 599486), (6614, '2025-01-08 17:00:00.000', 'pending', 599478), (6614, '2025-01-08 17:00:00.000', 'pending', 599494), (6614, '2025-01-08 17:00:00.000', 'pending', 599489), (6614, '2025-01-08 17:00:00.000', 'pending', 599481), (6614, '2025-01-08 17:00:00.000', 'pending', 599495), (6614, '2025-01-08 17:00:00.000', 'pending', 599476), (6614, '2025-01-08 17:00:00.000', 'pending', 599464), (6614, '2025-01-08 17:00:00.000', 'pending', 599482), (6614, '2025-01-08 17:00:00.000', 'pending', 599484), (6614, '2025-01-08 17:00:00.000', 'pending', 599491), (6614, '2025-01-08 17:00:00.000', 'pending', 599507), (6614, '2025-01-08 17:00:00.000', 'pending', 599493), (6614, '2025-01-08 17:00:00.000', 'pending', 599497), (6614, '2025-01-08 17:00:00.000', 'pending', 599483), (6614, '2025-01-08 17:00:00.000', 'pending', 599492), (6614, '2025-01-08 17:00:00.000', 'pending', 599502), (6614, '2025-01-08 17:00:00.000', 'pending', 599475), (6614, '2025-01-08 17:00:00.000', 'pending', 599504), (6614, '2025-01-08 17:00:00.000', 'pending', 599506), (6614, '2025-01-08 17:00:00.000', 'pending', 599487), (6614, '2025-01-08 17:00:00.000', 'pending', 599457), (6614, '2025-01-08 17:00:00.000', 'pending', 599508), (6614, '2025-01-08 17:00:00.000', 'pending', 599500), (6614, '2025-01-08 17:00:00.000', 'pending', 599503), (6614, '2025-01-08 17:00:00.000', 'pending', 599512), (6614, '2025-01-08 17:00:00.000', 'pending', 599496), (6614, '2025-01-08 17:00:00.000', 'pending', 599498), (6614, '2025-01-08 17:00:00.000', 'pending', 599513), (6614, '2025-01-08 17:00:00.000', 'pending', 599510), (6614, '2025-01-08 17:00:00.000', 'pending', 599514), (6614, '2025-01-08 17:00:00.000', 'pending', 599
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772964 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772964 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772965, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5187, OS thread handle 70398491084112, query id 2329857823 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 542119), (6610, '2025-01-12 18:00:00.000', 'pending', 535458), (6610, '2025-01-12 18:00:00.000', 'pending', 566181), (6610, '2025-01-12 18:00:00.000', 'pending', 328108), (6610, '2025-01-12 18:00:00.000', 'pending', 560971), (6610, '2025-01-12 18:00:00.000', 'pending', 328451), (6610, '2025-01-12 18:00:00.000', 'pending', 386096), (6610, '2025-01-12 18:00:00.000', 'pending', 567173), (6610, '2025-01-12 18:00:00.000', 'pending', 550865), (6610, '2025-01-12 18:00:00.000', 'pending', 558265), (6610, '2025-01-12 18:00:00.000', 'pending', 256962), (6610, '2025-01-12 18:00:00.000', 'pending', 571768), (6610, '2025-01-12 18:00:00.000', 'pending', 498248), (6610, '2025-01-12 18:00:00.000', 'pending', 256869), (6610, '2025-01-12 18:00:00.000', 'pending', 274563), (6610, '2025-01-12 18:00:00.000', 'pending', 556359), (6610, '2025-01-12 18:00:00.000', 'pending', 256846), (6610, '2025-01-12 18:00:00.000', 'pending', 256971), (6610, '2025-01-12 18:00:00.000', 'pending', 567498), (6610, '2025-01-12 18:00:00.000', 'pending', 250153), (6610, '2025-01-12 18:00:00.000', 'pending', 256949), (6610, '2025-01-12 18:00:00.000', 'pending', 330483), (6610, '2025-01-12 18:00:00.000', 'pending', 570549), (6610, '2025-01-12 18:00:00.000', 'pending', 573331), (6610, '2025-01-12 18:00:00.000', 'pending', 259175), (6610, '2025-01-12 18:00:00.000', 'pending', 566188), (6610, '2025-01-12 18:00:00.000', 'pending', 567200), (6610, '2025-01-12 18:00:00.000', 'pending', 567357), (6610, '2025-01-12 18:00:00.000', 'pending', 567160), (6610, '2025-01-12 18:00:00.000', 'pending', 321078), (6610, '2025-01-12 18:00:00.000', 'pending', 385697), (6610, '2025-01-12 18:00:00.000', 'pending', 432572), (6610, '2025-01-12 18:00:00.000', 'pending', 558428), (6610, '2025-01-12 18:00:00.000', 'pending', 527663), (6610, '2025-01-12 18:00:00.000', 'pending', 551947), (6610, '2025-01-12 18:00:00.000', 'pending', 566205), (6610, '2025-01-12 18:00:00.000', 'pending', 256915), (6610, '2025-01-12 18:00:00.000', 'pending', 476441), (6610, '2025-01-12 18:00:00.000', 'pending', 256996), (6610, '2025-01-12 18:00:00.000', 'pending', 577270), (6610, '2025-01-12 18:00:00.000', 'pending', 576850), (6610, '2025-01-12 18:00:00.000', 'pending', 529663), (6610, '2025-01-12 18:00:00.000', 'pending', 557305), (6610, '2025-01-12 18:00:00.000', 'pending', 400056), (6610, '2025-01-12 18:00:00.000', 'pending', 503649), (6610, '2025-01-12 18:00:00.000', 'pending', 298094), (6610, '2025-01-12 18:00:00.000', 'pending', 558709), (6610, '2025-01-12 18:00:00.000', 'pending', 551763), (6610, '2025-01-12 18:00:00.000', 'pending', 531552), (6610, '2025-01-12 18:00:00.000', 'pending', 558007), (6610, '2025-01-12 18:00:00.000', 'pending', 250162), (6610, '2025-01-12 18:00:00.000', 'pending', 544440), (6610, '2025-01-12 18:00:00.000', 'pending', 298125), (6610, '2025-01-12 18:00:00.000', 'pending', 367
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772965 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772965 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772969, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5292, OS thread handle 70398094546256, query id 2329857864 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 436485), (6610, '2025-01-12 18:00:00.000', 'pending', 328446), (6610, '2025-01-12 18:00:00.000', 'pending', 558120), (6610, '2025-01-12 18:00:00.000', 'pending', 557425), (6610, '2025-01-12 18:00:00.000', 'pending', 417014), (6610, '2025-01-12 18:00:00.000', 'pending', 494871), (6610, '2025-01-12 18:00:00.000', 'pending', 557352), (6610, '2025-01-12 18:00:00.000', 'pending', 558787), (6610, '2025-01-12 18:00:00.000', 'pending', 551925), (6610, '2025-01-12 18:00:00.000', 'pending', 494946), (6610, '2025-01-12 18:00:00.000', 'pending', 567488), (6610, '2025-01-12 18:00:00.000', 'pending', 577979), (6610, '2025-01-12 18:00:00.000', 'pending', 523524), (6610, '2025-01-12 18:00:00.000', 'pending', 365965), (6610, '2025-01-12 18:00:00.000', 'pending', 482627), (6610, '2025-01-12 18:00:00.000', 'pending', 578479), (6610, '2025-01-12 18:00:00.000', 'pending', 569381), (6610, '2025-01-12 18:00:00.000', 'pending', 536271), (6610, '2025-01-12 18:00:00.000', 'pending', 413554), (6610, '2025-01-12 18:00:00.000', 'pending', 551969), (6610, '2025-01-12 18:00:00.000', 'pending', 554250), (6610, '2025-01-12 18:00:00.000', 'pending', 564911), (6610, '2025-01-12 18:00:00.000', 'pending', 259190), (6610, '2025-01-12 18:00:00.000', 'pending', 556718), (6610, '2025-01-12 18:00:00.000', 'pending', 298606), (6610, '2025-01-12 18:00:00.000', 'pending', 575556), (6610, '2025-01-12 18:00:00.000', 'pending', 557801), (6610, '2025-01-12 18:00:00.000', 'pending', 558772), (6610, '2025-01-12 18:00:00.000', 'pending', 567999), (6610, '2025-01-12 18:00:00.000', 'pending', 542509), (6610, '2025-01-12 18:00:00.000', 'pending', 514960), (6610, '2025-01-12 18:00:00.000', 'pending', 338204), (6610, '2025-01-12 18:00:00.000', 'pending', 528629), (6610, '2025-01-12 18:00:00.000', 'pending', 558873), (6610, '2025-01-12 18:00:00.000', 'pending', 328395), (6610, '2025-01-12 18:00:00.000', 'pending', 553772), (6610, '2025-01-12 18:00:00.000', 'pending', 567457), (6610, '2025-01-12 18:00:00.000', 'pending', 567495), (6610, '2025-01-12 18:00:00.000', 'pending', 383602), (6610, '2025-01-12 18:00:00.000', 'pending', 256967), (6610, '2025-01-12 18:00:00.000', 'pending', 587051), (6610, '2025-01-12 18:00:00.000', 'pending', 475017), (6610, '2025-01-12 18:00:00.000', 'pending', 531318), (6610, '2025-01-12 18:00:00.000', 'pending', 509467), (6610, '2025-01-12 18:00:00.000', 'pending', 558920), (6610, '2025-01-12 18:00:00.000', 'pending', 572460), (6610, '2025-01-12 18:00:00.000', 'pending', 573935), (6610, '2025-01-12 18:00:00.000', 'pending', 530466), (6610, '2025-01-12 18:00:00.000', 'pending', 256884), (6610, '2025-01-12 18:00:00.000', 'pending', 544691), (6610, '2025-01-12 18:00:00.000', 'pending', 566349), (6610, '2025-01-12 18:00:00.000', 'pending', 494938), (6610, '2025-01-12 18:00:00.000', 'pending', 357823), (6610, '2025-01-12 18:00:00.000', 'pending', 564
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772969 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772969 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772970, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5273, OS thread handle 70398007395664, query id 2329857866 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 599568), (6614, '2025-01-08 17:00:00.000', 'pending', 599569), (6614, '2025-01-08 17:00:00.000', 'pending', 599548), (6614, '2025-01-08 17:00:00.000', 'pending', 599551), (6614, '2025-01-08 17:00:00.000', 'pending', 599575), (6614, '2025-01-08 17:00:00.000', 'pending', 599561), (6614, '2025-01-08 17:00:00.000', 'pending', 599571), (6614, '2025-01-08 17:00:00.000', 'pending', 599565), (6614, '2025-01-08 17:00:00.000', 'pending', 599558), (6614, '2025-01-08 17:00:00.000', 'pending', 599572), (6614, '2025-01-08 17:00:00.000', 'pending', 599547), (6614, '2025-01-08 17:00:00.000', 'pending', 599554), (6614, '2025-01-08 17:00:00.000', 'pending', 599556), (6614, '2025-01-08 17:00:00.000', 'pending', 599564), (6614, '2025-01-08 17:00:00.000', 'pending', 599577), (6614, '2025-01-08 17:00:00.000', 'pending', 599570), (6614, '2025-01-08 17:00:00.000', 'pending', 599578), (6614, '2025-01-08 17:00:00.000', 'pending', 599574), (6614, '2025-01-08 17:00:00.000', 'pending', 599579), (6614, '2025-01-08 17:00:00.000', 'pending', 599566), (6614, '2025-01-08 17:00:00.000', 'pending', 599582), (6614, '2025-01-08 17:00:00.000', 'pending', 599581), (6614, '2025-01-08 17:00:00.000', 'pending', 599590), (6614, '2025-01-08 17:00:00.000', 'pending', 599576), (6614, '2025-01-08 17:00:00.000', 'pending', 599580), (6614, '2025-01-08 17:00:00.000', 'pending', 599594), (6614, '2025-01-08 17:00:00.000', 'pending', 599586), (6614, '2025-01-08 17:00:00.000', 'pending', 599567), (6614, '2025-01-08 17:00:00.000', 'pending', 599583), (6614, '2025-01-08 17:00:00.000', 'pending', 599595), (6614, '2025-01-08 17:00:00.000', 'pending', 599573), (6614, '2025-01-08 17:00:00.000', 'pending', 599585), (6614, '2025-01-08 17:00:00.000', 'pending', 599589), (6614, '2025-01-08 17:00:00.000', 'pending', 599587), (6614, '2025-01-08 17:00:00.000', 'pending', 599596), (6614, '2025-01-08 17:00:00.000', 'pending', 599597), (6614, '2025-01-08 17:00:00.000', 'pending', 599605), (6614, '2025-01-08 17:00:00.000', 'pending', 599598), (6614, '2025-01-08 17:00:00.000', 'pending', 599600), (6614, '2025-01-08 17:00:00.000', 'pending', 599592), (6614, '2025-01-08 17:00:00.000', 'pending', 599593), (6614, '2025-01-08 17:00:00.000', 'pending', 599591), (6614, '2025-01-08 17:00:00.000', 'pending', 599606), (6614, '2025-01-08 17:00:00.000', 'pending', 599599), (6614, '2025-01-08 17:00:00.000', 'pending', 599611), (6614, '2025-01-08 17:00:00.000', 'pending', 599603), (6614, '2025-01-08 17:00:00.000', 'pending', 599601), (6614, '2025-01-08 17:00:00.000', 'pending', 599608), (6614, '2025-01-08 17:00:00.000', 'pending', 599588), (6614, '2025-01-08 17:00:00.000', 'pending', 599616), (6614, '2025-01-08 17:00:00.000', 'pending', 599615), (6614, '2025-01-08 17:00:00.000', 'pending', 599602), (6614, '2025-01-08 17:00:00.000', 'pending', 599607), (6614, '2025-01-08 17:00:00.000', 'pending', 599
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772970 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772970 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772992, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5292, OS thread handle 70398094546256, query id 2329857949 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 674942), (6613, '2025-01-08 01:00:00.000', 'pending', 674950), (6613, '2025-01-08 01:00:00.000', 'pending', 674947), (6613, '2025-01-08 01:00:00.000', 'pending', 674940), (6613, '2025-01-08 01:00:00.000', 'pending', 674963), (6613, '2025-01-08 01:00:00.000', 'pending', 674941), (6613, '2025-01-08 01:00:00.000', 'pending', 674962), (6613, '2025-01-08 01:00:00.000', 'pending', 674970), (6613, '2025-01-08 01:00:00.000', 'pending', 674938), (6613, '2025-01-08 01:00:00.000', 'pending', 674952), (6613, '2025-01-08 01:00:00.000', 'pending', 674967), (6613, '2025-01-08 01:00:00.000', 'pending', 674953), (6613, '2025-01-08 01:00:00.000', 'pending', 674960), (6613, '2025-01-08 01:00:00.000', 'pending', 674957), (6613, '2025-01-08 01:00:00.000', 'pending', 674958), (6613, '2025-01-08 01:00:00.000', 'pending', 674951), (6613, '2025-01-08 01:00:00.000', 'pending', 674921), (6613, '2025-01-08 01:00:00.000', 'pending', 674954), (6613, '2025-01-08 01:00:00.000', 'pending', 674964), (6613, '2025-01-08 01:00:00.000', 'pending', 674959), (6613, '2025-01-08 01:00:00.000', 'pending', 674965), (6613, '2025-01-08 01:00:00.000', 'pending', 674956), (6613, '2025-01-08 01:00:00.000', 'pending', 674961), (6613, '2025-01-08 01:00:00.000', 'pending', 674955), (6613, '2025-01-08 01:00:00.000', 'pending', 674966), (6613, '2025-01-08 01:00:00.000', 'pending', 674969), (6613, '2025-01-08 01:00:00.000', 'pending', 674968), (6613, '2025-01-08 01:00:00.000', 'pending', 674980), (6613, '2025-01-08 01:00:00.000', 'pending', 674974), (6613, '2025-01-08 01:00:00.000', 'pending', 674977), (6613, '2025-01-08 01:00:00.000', 'pending', 674998), (6613, '2025-01-08 01:00:00.000', 'pending', 675007), (6613, '2025-01-08 01:00:00.000', 'pending', 674993), (6613, '2025-01-08 01:00:00.000', 'pending', 675016), (6613, '2025-01-08 01:00:00.000', 'pending', 674972), (6613, '2025-01-08 01:00:00.000', 'pending', 674985), (6613, '2025-01-08 01:00:00.000', 'pending', 674979), (6613, '2025-01-08 01:00:00.000', 'pending', 674991), (6613, '2025-01-08 01:00:00.000', 'pending', 675005), (6613, '2025-01-08 01:00:00.000', 'pending', 675001), (6613, '2025-01-08 01:00:00.000', 'pending', 674971), (6613, '2025-01-08 01:00:00.000', 'pending', 674976), (6613, '2025-01-08 01:00:00.000', 'pending', 674995), (6613, '2025-01-08 01:00:00.000', 'pending', 674999), (6613, '2025-01-08 01:00:00.000', 'pending', 674992), (6613, '2025-01-08 01:00:00.000', 'pending', 675015), (6613, '2025-01-08 01:00:00.000', 'pending', 675012), (6613, '2025-01-08 01:00:00.000', 'pending', 674973), (6613, '2025-01-08 01:00:00.000', 'pending', 675020), (6613, '2025-01-08 01:00:00.000', 'pending', 674983), (6613, '2025-01-08 01:00:00.000', 'pending', 675024), (6613, '2025-01-08 01:00:00.000', 'pending', 674975), (6613, '2025-01-08 01:00:00.000', 'pending', 674988), (6613, '2025-01-08 01:00:00.000', 'pending', 674
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772992 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772992 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344772993, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5276, OS thread handle 70398644122960, query id 2329857952 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 631036), (6614, '2025-01-08 17:00:00.000', 'pending', 631005), (6614, '2025-01-08 17:00:00.000', 'pending', 631037), (6614, '2025-01-08 17:00:00.000', 'pending', 631034), (6614, '2025-01-08 17:00:00.000', 'pending', 630999), (6614, '2025-01-08 17:00:00.000', 'pending', 631040), (6614, '2025-01-08 17:00:00.000', 'pending', 631045), (6614, '2025-01-08 17:00:00.000', 'pending', 631032), (6614, '2025-01-08 17:00:00.000', 'pending', 631035), (6614, '2025-01-08 17:00:00.000', 'pending', 631046), (6614, '2025-01-08 17:00:00.000', 'pending', 631044), (6614, '2025-01-08 17:00:00.000', 'pending', 631043), (6614, '2025-01-08 17:00:00.000', 'pending', 631053), (6614, '2025-01-08 17:00:00.000', 'pending', 631007), (6614, '2025-01-08 17:00:00.000', 'pending', 631047), (6614, '2025-01-08 17:00:00.000', 'pending', 631060), (6614, '2025-01-08 17:00:00.000', 'pending', 631038), (6614, '2025-01-08 17:00:00.000', 'pending', 631057), (6614, '2025-01-08 17:00:00.000', 'pending', 631056), (6614, '2025-01-08 17:00:00.000', 'pending', 631042), (6614, '2025-01-08 17:00:00.000', 'pending', 631052), (6614, '2025-01-08 17:00:00.000', 'pending', 631059), (6614, '2025-01-08 17:00:00.000', 'pending', 631064), (6614, '2025-01-08 17:00:00.000', 'pending', 631049), (6614, '2025-01-08 17:00:00.000', 'pending', 631058), (6614, '2025-01-08 17:00:00.000', 'pending', 631039), (6614, '2025-01-08 17:00:00.000', 'pending', 631055), (6614, '2025-01-08 17:00:00.000', 'pending', 631071), (6614, '2025-01-08 17:00:00.000', 'pending', 631048), (6614, '2025-01-08 17:00:00.000', 'pending', 631062), (6614, '2025-01-08 17:00:00.000', 'pending', 631017), (6614, '2025-01-08 17:00:00.000', 'pending', 631050), (6614, '2025-01-08 17:00:00.000', 'pending', 631090), (6614, '2025-01-08 17:00:00.000', 'pending', 631051), (6614, '2025-01-08 17:00:00.000', 'pending', 631078), (6614, '2025-01-08 17:00:00.000', 'pending', 631066), (6614, '2025-01-08 17:00:00.000', 'pending', 631068), (6614, '2025-01-08 17:00:00.000', 'pending', 631069), (6614, '2025-01-08 17:00:00.000', 'pending', 631087), (6614, '2025-01-08 17:00:00.000', 'pending', 631072), (6614, '2025-01-08 17:00:00.000', 'pending', 631083), (6614, '2025-01-08 17:00:00.000', 'pending', 631061), (6614, '2025-01-08 17:00:00.000', 'pending', 631093), (6614, '2025-01-08 17:00:00.000', 'pending', 631082), (6614, '2025-01-08 17:00:00.000', 'pending', 631076), (6614, '2025-01-08 17:00:00.000', 'pending', 631074), (6614, '2025-01-08 17:00:00.000', 'pending', 631073), (6614, '2025-01-08 17:00:00.000', 'pending', 631097), (6614, '2025-01-08 17:00:00.000', 'pending', 631085), (6614, '2025-01-08 17:00:00.000', 'pending', 631104), (6614, '2025-01-08 17:00:00.000', 'pending', 631081), (6614, '2025-01-08 17:00:00.000', 'pending', 631079), (6614, '2025-01-08 17:00:00.000', 'pending', 631088), (6614, '2025-01-08 17:00:00.000', 'pending', 631
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772993 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 160 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344772993 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820597, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5271, OS thread handle 70398094275920, query id 2330067443 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 291566), (6614, '2025-01-08 17:00:00.000', 'pending', 291569), (6614, '2025-01-08 17:00:00.000', 'pending', 291577), (6614, '2025-01-08 17:00:00.000', 'pending', 291567), (6614, '2025-01-08 17:00:00.000', 'pending', 291581), (6614, '2025-01-08 17:00:00.000', 'pending', 291579), (6614, '2025-01-08 17:00:00.000', 'pending', 291571), (6614, '2025-01-08 17:00:00.000', 'pending', 291570), (6614, '2025-01-08 17:00:00.000', 'pending', 291582), (6614, '2025-01-08 17:00:00.000', 'pending', 291592), (6614, '2025-01-08 17:00:00.000', 'pending', 291586), (6614, '2025-01-08 17:00:00.000', 'pending', 291585), (6614, '2025-01-08 17:00:00.000', 'pending', 291573), (6614, '2025-01-08 17:00:00.000', 'pending', 291576), (6614, '2025-01-08 17:00:00.000', 'pending', 291598), (6614, '2025-01-08 17:00:00.000', 'pending', 291593), (6614, '2025-01-08 17:00:00.000', 'pending', 291589), (6614, '2025-01-08 17:00:00.000', 'pending', 291602), (6614, '2025-01-08 17:00:00.000', 'pending', 291572), (6614, '2025-01-08 17:00:00.000', 'pending', 291599), (6614, '2025-01-08 17:00:00.000', 'pending', 291604), (6614, '2025-01-08 17:00:00.000', 'pending', 291596), (6614, '2025-01-08 17:00:00.000', 'pending', 291603), (6614, '2025-01-08 17:00:00.000', 'pending', 291588), (6614, '2025-01-08 17:00:00.000', 'pending', 291590), (6614, '2025-01-08 17:00:00.000', 'pending', 291574), (6614, '2025-01-08 17:00:00.000', 'pending', 291578), (6614, '2025-01-08 17:00:00.000', 'pending', 291609), (6614, '2025-01-08 17:00:00.000', 'pending', 291587), (6614, '2025-01-08 17:00:00.000', 'pending', 291606), (6614, '2025-01-08 17:00:00.000', 'pending', 291583), (6614, '2025-01-08 17:00:00.000', 'pending', 291601), (6614, '2025-01-08 17:00:00.000', 'pending', 291605), (6614, '2025-01-08 17:00:00.000', 'pending', 291600), (6614, '2025-01-08 17:00:00.000', 'pending', 291612), (6614, '2025-01-08 17:00:00.000', 'pending', 291575), (6614, '2025-01-08 17:00:00.000', 'pending', 291610), (6614, '2025-01-08 17:00:00.000', 'pending', 291591), (6614, '2025-01-08 17:00:00.000', 'pending', 291597), (6614, '2025-01-08 17:00:00.000', 'pending', 291608), (6614, '2025-01-08 17:00:00.000', 'pending', 291614), (6614, '2025-01-08 17:00:00.000', 'pending', 291613), (6614, '2025-01-08 17:00:00.000', 'pending', 291607), (6614, '2025-01-08 17:00:00.000', 'pending', 291611), (6614, '2025-01-08 17:00:00.000', 'pending', 1976), (6614, '2025-01-08 17:00:00.000', 'pending', 291615), (6614, '2025-01-08 17:00:00.000', 'pending', 291616), (6614, '2025-01-08 17:00:00.000', 'pending', 291595), (6614, '2025-01-08 17:00:00.000', 'pending', 303213), (6614, '2025-01-08 17:00:00.000', 'pending', 303443), (6614, '2025-01-08 17:00:00.000', 'pending', 303444), (6614, '2025-01-08 17:00:00.000', 'pending', 303453), (6614, '2025-01-08 17:00:00.000', 'pending', 303452), (6614, '2025-01-08 17:00:00.000', 'pending', 30345
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820597 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820597 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820596, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5185, OS thread handle 70385003300176, query id 2330067441 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 407798), (6613, '2025-01-08 01:00:00.000', 'pending', 407761), (6613, '2025-01-08 01:00:00.000', 'pending', 407769), (6613, '2025-01-08 01:00:00.000', 'pending', 407771), (6613, '2025-01-08 01:00:00.000', 'pending', 407791), (6613, '2025-01-08 01:00:00.000', 'pending', 407787), (6613, '2025-01-08 01:00:00.000', 'pending', 407794), (6613, '2025-01-08 01:00:00.000', 'pending', 407800), (6613, '2025-01-08 01:00:00.000', 'pending', 407786), (6613, '2025-01-08 01:00:00.000', 'pending', 407766), (6613, '2025-01-08 01:00:00.000', 'pending', 407779), (6613, '2025-01-08 01:00:00.000', 'pending', 407797), (6613, '2025-01-08 01:00:00.000', 'pending', 407793), (6613, '2025-01-08 01:00:00.000', 'pending', 407809), (6613, '2025-01-08 01:00:00.000', 'pending', 407782), (6613, '2025-01-08 01:00:00.000', 'pending', 407805), (6613, '2025-01-08 01:00:00.000', 'pending', 407795), (6613, '2025-01-08 01:00:00.000', 'pending', 407768), (6613, '2025-01-08 01:00:00.000', 'pending', 407789), (6613, '2025-01-08 01:00:00.000', 'pending', 407801), (6613, '2025-01-08 01:00:00.000', 'pending', 407772), (6613, '2025-01-08 01:00:00.000', 'pending', 407796), (6613, '2025-01-08 01:00:00.000', 'pending', 407804), (6613, '2025-01-08 01:00:00.000', 'pending', 407803), (6613, '2025-01-08 01:00:00.000', 'pending', 407792), (6613, '2025-01-08 01:00:00.000', 'pending', 407808), (6613, '2025-01-08 01:00:00.000', 'pending', 407807), (6613, '2025-01-08 01:00:00.000', 'pending', 407810), (6613, '2025-01-08 01:00:00.000', 'pending', 407790), (6613, '2025-01-08 01:00:00.000', 'pending', 407812), (6613, '2025-01-08 01:00:00.000', 'pending', 407814), (6613, '2025-01-08 01:00:00.000', 'pending', 407811), (6613, '2025-01-08 01:00:00.000', 'pending', 407813), (6613, '2025-01-08 01:00:00.000', 'pending', 407815), (6613, '2025-01-08 01:00:00.000', 'pending', 407816), (6613, '2025-01-08 01:00:00.000', 'pending', 407817), (6613, '2025-01-08 01:00:00.000', 'pending', 407818), (6613, '2025-01-08 01:00:00.000', 'pending', 407819), (6613, '2025-01-08 01:00:00.000', 'pending', 456620), (6613, '2025-01-08 01:00:00.000', 'pending', 456619), (6613, '2025-01-08 01:00:00.000', 'pending', 456645), (6613, '2025-01-08 01:00:00.000', 'pending', 456646), (6613, '2025-01-08 01:00:00.000', 'pending', 456647), (6613, '2025-01-08 01:00:00.000', 'pending', 456632), (6613, '2025-01-08 01:00:00.000', 'pending', 456635), (6613, '2025-01-08 01:00:00.000', 'pending', 456644), (6613, '2025-01-08 01:00:00.000', 'pending', 456672), (6613, '2025-01-08 01:00:00.000', 'pending', 456673), (6613, '2025-01-08 01:00:00.000', 'pending', 456675), (6613, '2025-01-08 01:00:00.000', 'pending', 456653), (6613, '2025-01-08 01:00:00.000', 'pending', 456622), (6613, '2025-01-08 01:00:00.000', 'pending', 456676), (6613, '2025-01-08 01:00:00.000', 'pending', 456650), (6613, '2025-01-08 01:00:00.000', 'pending', 456
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820596 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820596 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820639, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5510, OS thread handle 70370521920848, query id 2330067609 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 342701), (6610, '2025-01-12 18:00:00.000', 'pending', 343859), (6610, '2025-01-12 18:00:00.000', 'pending', 343966), (6610, '2025-01-12 18:00:00.000', 'pending', 343846), (6610, '2025-01-12 18:00:00.000', 'pending', 343971), (6610, '2025-01-12 18:00:00.000', 'pending', 342992), (6610, '2025-01-12 18:00:00.000', 'pending', 344527), (6610, '2025-01-12 18:00:00.000', 'pending', 344262), (6610, '2025-01-12 18:00:00.000', 'pending', 343603), (6610, '2025-01-12 18:00:00.000', 'pending', 343690), (6610, '2025-01-12 18:00:00.000', 'pending', 345148), (6610, '2025-01-12 18:00:00.000', 'pending', 348776), (6610, '2025-01-12 18:00:00.000', 'pending', 345724), (6610, '2025-01-12 18:00:00.000', 'pending', 349733), (6610, '2025-01-12 18:00:00.000', 'pending', 349555), (6610, '2025-01-12 18:00:00.000', 'pending', 349735), (6610, '2025-01-12 18:00:00.000', 'pending', 349599), (6610, '2025-01-12 18:00:00.000', 'pending', 349744), (6610, '2025-01-12 18:00:00.000', 'pending', 348233), (6610, '2025-01-12 18:00:00.000', 'pending', 349725), (6610, '2025-01-12 18:00:00.000', 'pending', 349461), (6610, '2025-01-12 18:00:00.000', 'pending', 349737), (6610, '2025-01-12 18:00:00.000', 'pending', 349755), (6610, '2025-01-12 18:00:00.000', 'pending', 349768), (6610, '2025-01-12 18:00:00.000', 'pending', 349785), (6610, '2025-01-12 18:00:00.000', 'pending', 349778), (6610, '2025-01-12 18:00:00.000', 'pending', 349832), (6610, '2025-01-12 18:00:00.000', 'pending', 349848), (6610, '2025-01-12 18:00:00.000', 'pending', 349858), (6610, '2025-01-12 18:00:00.000', 'pending', 349854), (6610, '2025-01-12 18:00:00.000', 'pending', 349877), (6610, '2025-01-12 18:00:00.000', 'pending', 349862), (6610, '2025-01-12 18:00:00.000', 'pending', 349864), (6610, '2025-01-12 18:00:00.000', 'pending', 349878), (6610, '2025-01-12 18:00:00.000', 'pending', 349906), (6610, '2025-01-12 18:00:00.000', 'pending', 349910), (6610, '2025-01-12 18:00:00.000', 'pending', 349914), (6610, '2025-01-12 18:00:00.000', 'pending', 349919), (6610, '2025-01-12 18:00:00.000', 'pending', 349927), (6610, '2025-01-12 18:00:00.000', 'pending', 349921), (6610, '2025-01-12 18:00:00.000', 'pending', 349948), (6610, '2025-01-12 18:00:00.000', 'pending', 350001), (6610, '2025-01-12 18:00:00.000', 'pending', 350025), (6610, '2025-01-12 18:00:00.000', 'pending', 350021), (6610, '2025-01-12 18:00:00.000', 'pending', 350028), (6610, '2025-01-12 18:00:00.000', 'pending', 350036), (6610, '2025-01-12 18:00:00.000', 'pending', 350046), (6610, '2025-01-12 18:00:00.000', 'pending', 350060), (6610, '2025-01-12 18:00:00.000', 'pending', 350073), (6610, '2025-01-12 18:00:00.000', 'pending', 350093), (6610, '2025-01-12 18:00:00.000', 'pending', 350094), (6610, '2025-01-12 18:00:00.000', 'pending', 350089), (6610, '2025-01-12 18:00:00.000', 'pending', 350106), (6610, '2025-01-12 18:00:00.000', 'pending', 350
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820639 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820639 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820644, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5494, OS thread handle 70398171714896, query id 2330067612 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 519635), (6613, '2025-01-08 01:00:00.000', 'pending', 519637), (6613, '2025-01-08 01:00:00.000', 'pending', 519640), (6613, '2025-01-08 01:00:00.000', 'pending', 519629), (6613, '2025-01-08 01:00:00.000', 'pending', 519644), (6613, '2025-01-08 01:00:00.000', 'pending', 519634), (6613, '2025-01-08 01:00:00.000', 'pending', 519636), (6613, '2025-01-08 01:00:00.000', 'pending', 519639), (6613, '2025-01-08 01:00:00.000', 'pending', 519632), (6613, '2025-01-08 01:00:00.000', 'pending', 519646), (6613, '2025-01-08 01:00:00.000', 'pending', 519642), (6613, '2025-01-08 01:00:00.000', 'pending', 519650), (6613, '2025-01-08 01:00:00.000', 'pending', 519647), (6613, '2025-01-08 01:00:00.000', 'pending', 519648), (6613, '2025-01-08 01:00:00.000', 'pending', 519649), (6613, '2025-01-08 01:00:00.000', 'pending', 519641), (6613, '2025-01-08 01:00:00.000', 'pending', 519645), (6613, '2025-01-08 01:00:00.000', 'pending', 519651), (6613, '2025-01-08 01:00:00.000', 'pending', 519652), (6613, '2025-01-08 01:00:00.000', 'pending', 519653), (6613, '2025-01-08 01:00:00.000', 'pending', 519654), (6613, '2025-01-08 01:00:00.000', 'pending', 519655), (6613, '2025-01-08 01:00:00.000', 'pending', 519659), (6613, '2025-01-08 01:00:00.000', 'pending', 519661), (6613, '2025-01-08 01:00:00.000', 'pending', 519662), (6613, '2025-01-08 01:00:00.000', 'pending', 519656), (6613, '2025-01-08 01:00:00.000', 'pending', 519658), (6613, '2025-01-08 01:00:00.000', 'pending', 519660), (6613, '2025-01-08 01:00:00.000', 'pending', 519666), (6613, '2025-01-08 01:00:00.000', 'pending', 519663), (6613, '2025-01-08 01:00:00.000', 'pending', 519664), (6613, '2025-01-08 01:00:00.000', 'pending', 519657), (6613, '2025-01-08 01:00:00.000', 'pending', 519665), (6613, '2025-01-08 01:00:00.000', 'pending', 519671), (6613, '2025-01-08 01:00:00.000', 'pending', 519667), (6613, '2025-01-08 01:00:00.000', 'pending', 519673), (6613, '2025-01-08 01:00:00.000', 'pending', 519669), (6613, '2025-01-08 01:00:00.000', 'pending', 519672), (6613, '2025-01-08 01:00:00.000', 'pending', 519674), (6613, '2025-01-08 01:00:00.000', 'pending', 519676), (6613, '2025-01-08 01:00:00.000', 'pending', 519677), (6613, '2025-01-08 01:00:00.000', 'pending', 519675), (6613, '2025-01-08 01:00:00.000', 'pending', 519678), (6613, '2025-01-08 01:00:00.000', 'pending', 519684), (6613, '2025-01-08 01:00:00.000', 'pending', 519685), (6613, '2025-01-08 01:00:00.000', 'pending', 519679), (6613, '2025-01-08 01:00:00.000', 'pending', 519686), (6613, '2025-01-08 01:00:00.000', 'pending', 519681), (6613, '2025-01-08 01:00:00.000', 'pending', 519680), (6613, '2025-01-08 01:00:00.000', 'pending', 519687), (6613, '2025-01-08 01:00:00.000', 'pending', 519688), (6613, '2025-01-08 01:00:00.000', 'pending', 519690), (6613, '2025-01-08 01:00:00.000', 'pending', 519689), (6613, '2025-01-08 01:00:00.000', 'pending', 519
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820644 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820644 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820661, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 7 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5276, OS thread handle 70398644122960, query id 2330067654 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 353774), (6610, '2025-01-12 18:00:00.000', 'pending', 353784), (6610, '2025-01-12 18:00:00.000', 'pending', 353789), (6610, '2025-01-12 18:00:00.000', 'pending', 353788), (6610, '2025-01-12 18:00:00.000', 'pending', 353801), (6610, '2025-01-12 18:00:00.000', 'pending', 353806), (6610, '2025-01-12 18:00:00.000', 'pending', 353827), (6610, '2025-01-12 18:00:00.000', 'pending', 353840), (6610, '2025-01-12 18:00:00.000', 'pending', 353873), (6610, '2025-01-12 18:00:00.000', 'pending', 353879), (6610, '2025-01-12 18:00:00.000', 'pending', 353887), (6610, '2025-01-12 18:00:00.000', 'pending', 353934), (6610, '2025-01-12 18:00:00.000', 'pending', 353925), (6610, '2025-01-12 18:00:00.000', 'pending', 353929), (6610, '2025-01-12 18:00:00.000', 'pending', 353956), (6610, '2025-01-12 18:00:00.000', 'pending', 353953), (6610, '2025-01-12 18:00:00.000', 'pending', 353938), (6610, '2025-01-12 18:00:00.000', 'pending', 353980), (6610, '2025-01-12 18:00:00.000', 'pending', 353986), (6610, '2025-01-12 18:00:00.000', 'pending', 353993), (6610, '2025-01-12 18:00:00.000', 'pending', 354041), (6610, '2025-01-12 18:00:00.000', 'pending', 354270), (6610, '2025-01-12 18:00:00.000', 'pending', 354536), (6610, '2025-01-12 18:00:00.000', 'pending', 354148), (6610, '2025-01-12 18:00:00.000', 'pending', 354641), (6610, '2025-01-12 18:00:00.000', 'pending', 354214), (6610, '2025-01-12 18:00:00.000', 'pending', 354653), (6610, '2025-01-12 18:00:00.000', 'pending', 354688), (6610, '2025-01-12 18:00:00.000', 'pending', 354645), (6610, '2025-01-12 18:00:00.000', 'pending', 354330), (6610, '2025-01-12 18:00:00.000', 'pending', 354709), (6610, '2025-01-12 18:00:00.000', 'pending', 354738), (6610, '2025-01-12 18:00:00.000', 'pending', 354772), (6610, '2025-01-12 18:00:00.000', 'pending', 354747), (6610, '2025-01-12 18:00:00.000', 'pending', 354654), (6610, '2025-01-12 18:00:00.000', 'pending', 354808), (6610, '2025-01-12 18:00:00.000', 'pending', 354835), (6610, '2025-01-12 18:00:00.000', 'pending', 354849), (6610, '2025-01-12 18:00:00.000', 'pending', 354827), (6610, '2025-01-12 18:00:00.000', 'pending', 354869), (6610, '2025-01-12 18:00:00.000', 'pending', 354874), (6610, '2025-01-12 18:00:00.000', 'pending', 354915), (6610, '2025-01-12 18:00:00.000', 'pending', 354975), (6610, '2025-01-12 18:00:00.000', 'pending', 355028), (6610, '2025-01-12 18:00:00.000', 'pending', 355061), (6610, '2025-01-12 18:00:00.000', 'pending', 355026), (6610, '2025-01-12 18:00:00.000', 'pending', 354846), (6610, '2025-01-12 18:00:00.000', 'pending', 354864), (6610, '2025-01-12 18:00:00.000', 'pending', 355110), (6610, '2025-01-12 18:00:00.000', 'pending', 355116), (6610, '2025-01-12 18:00:00.000', 'pending', 354998), (6610, '2025-01-12 18:00:00.000', 'pending', 354976), (6610, '2025-01-12 18:00:00.000', 'pending', 355185), (6610, '2025-01-12 18:00:00.000', 'pending', 355
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820661 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820661 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820660, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 6 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2330067653 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 519508), (6614, '2025-01-08 17:00:00.000', 'pending', 519530), (6614, '2025-01-08 17:00:00.000', 'pending', 519524), (6614, '2025-01-08 17:00:00.000', 'pending', 519531), (6614, '2025-01-08 17:00:00.000', 'pending', 519532), (6614, '2025-01-08 17:00:00.000', 'pending', 519529), (6614, '2025-01-08 17:00:00.000', 'pending', 519534), (6614, '2025-01-08 17:00:00.000', 'pending', 519528), (6614, '2025-01-08 17:00:00.000', 'pending', 519539), (6614, '2025-01-08 17:00:00.000', 'pending', 519536), (6614, '2025-01-08 17:00:00.000', 'pending', 519544), (6614, '2025-01-08 17:00:00.000', 'pending', 519527), (6614, '2025-01-08 17:00:00.000', 'pending', 519538), (6614, '2025-01-08 17:00:00.000', 'pending', 519540), (6614, '2025-01-08 17:00:00.000', 'pending', 519543), (6614, '2025-01-08 17:00:00.000', 'pending', 519550), (6614, '2025-01-08 17:00:00.000', 'pending', 519545), (6614, '2025-01-08 17:00:00.000', 'pending', 519547), (6614, '2025-01-08 17:00:00.000', 'pending', 519537), (6614, '2025-01-08 17:00:00.000', 'pending', 519541), (6614, '2025-01-08 17:00:00.000', 'pending', 519535), (6614, '2025-01-08 17:00:00.000', 'pending', 519533), (6614, '2025-01-08 17:00:00.000', 'pending', 519548), (6614, '2025-01-08 17:00:00.000', 'pending', 519551), (6614, '2025-01-08 17:00:00.000', 'pending', 519552), (6614, '2025-01-08 17:00:00.000', 'pending', 519553), (6614, '2025-01-08 17:00:00.000', 'pending', 519556), (6614, '2025-01-08 17:00:00.000', 'pending', 519560), (6614, '2025-01-08 17:00:00.000', 'pending', 519546), (6614, '2025-01-08 17:00:00.000', 'pending', 519563), (6614, '2025-01-08 17:00:00.000', 'pending', 519564), (6614, '2025-01-08 17:00:00.000', 'pending', 519558), (6614, '2025-01-08 17:00:00.000', 'pending', 519557), (6614, '2025-01-08 17:00:00.000', 'pending', 519566), (6614, '2025-01-08 17:00:00.000', 'pending', 519570), (6614, '2025-01-08 17:00:00.000', 'pending', 519567), (6614, '2025-01-08 17:00:00.000', 'pending', 519569), (6614, '2025-01-08 17:00:00.000', 'pending', 519571), (6614, '2025-01-08 17:00:00.000', 'pending', 519572), (6614, '2025-01-08 17:00:00.000', 'pending', 519573), (6614, '2025-01-08 17:00:00.000', 'pending', 519576), (6614, '2025-01-08 17:00:00.000', 'pending', 519554), (6614, '2025-01-08 17:00:00.000', 'pending', 519562), (6614, '2025-01-08 17:00:00.000', 'pending', 519561), (6614, '2025-01-08 17:00:00.000', 'pending', 519574), (6614, '2025-01-08 17:00:00.000', 'pending', 519555), (6614, '2025-01-08 17:00:00.000', 'pending', 519568), (6614, '2025-01-08 17:00:00.000', 'pending', 519578), (6614, '2025-01-08 17:00:00.000', 'pending', 519559), (6614, '2025-01-08 17:00:00.000', 'pending', 519577), (6614, '2025-01-08 17:00:00.000', 'pending', 519581), (6614, '2025-01-08 17:00:00.000', 'pending', 519580), (6614, '2025-01-08 17:00:00.000', 'pending', 519565), (6614, '2025-01-08 17:00:00.000', 'pending', 519
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820660 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820660 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820749, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5189, OS thread handle 70397677274448, query id 2330067950 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 590236), (6614, '2025-01-08 17:00:00.000', 'pending', 590239), (6614, '2025-01-08 17:00:00.000', 'pending', 590232), (6614, '2025-01-08 17:00:00.000', 'pending', 590243), (6614, '2025-01-08 17:00:00.000', 'pending', 590246), (6614, '2025-01-08 17:00:00.000', 'pending', 590235), (6614, '2025-01-08 17:00:00.000', 'pending', 590237), (6614, '2025-01-08 17:00:00.000', 'pending', 590247), (6614, '2025-01-08 17:00:00.000', 'pending', 590242), (6614, '2025-01-08 17:00:00.000', 'pending', 590234), (6614, '2025-01-08 17:00:00.000', 'pending', 590245), (6614, '2025-01-08 17:00:00.000', 'pending', 590238), (6614, '2025-01-08 17:00:00.000', 'pending', 589927), (6614, '2025-01-08 17:00:00.000', 'pending', 590240), (6614, '2025-01-08 17:00:00.000', 'pending', 590244), (6614, '2025-01-08 17:00:00.000', 'pending', 590248), (6614, '2025-01-08 17:00:00.000', 'pending', 590241), (6614, '2025-01-08 17:00:00.000', 'pending', 590250), (6614, '2025-01-08 17:00:00.000', 'pending', 590251), (6614, '2025-01-08 17:00:00.000', 'pending', 590253), (6614, '2025-01-08 17:00:00.000', 'pending', 590231), (6614, '2025-01-08 17:00:00.000', 'pending', 589942), (6614, '2025-01-08 17:00:00.000', 'pending', 590254), (6614, '2025-01-08 17:00:00.000', 'pending', 590060), (6614, '2025-01-08 17:00:00.000', 'pending', 590252), (6614, '2025-01-08 17:00:00.000', 'pending', 590255), (6614, '2025-01-08 17:00:00.000', 'pending', 590057), (6614, '2025-01-08 17:00:00.000', 'pending', 590068), (6614, '2025-01-08 17:00:00.000', 'pending', 590072), (6614, '2025-01-08 17:00:00.000', 'pending', 590071), (6614, '2025-01-08 17:00:00.000', 'pending', 590080), (6614, '2025-01-08 17:00:00.000', 'pending', 590079), (6614, '2025-01-08 17:00:00.000', 'pending', 590077), (6614, '2025-01-08 17:00:00.000', 'pending', 590086), (6614, '2025-01-08 17:00:00.000', 'pending', 590082), (6614, '2025-01-08 17:00:00.000', 'pending', 590088), (6614, '2025-01-08 17:00:00.000', 'pending', 590091), (6614, '2025-01-08 17:00:00.000', 'pending', 590094), (6614, '2025-01-08 17:00:00.000', 'pending', 590101), (6614, '2025-01-08 17:00:00.000', 'pending', 590108), (6614, '2025-01-08 17:00:00.000', 'pending', 590109), (6614, '2025-01-08 17:00:00.000', 'pending', 590110), (6614, '2025-01-08 17:00:00.000', 'pending', 590122), (6614, '2025-01-08 17:00:00.000', 'pending', 590121), (6614, '2025-01-08 17:00:00.000', 'pending', 590123), (6614, '2025-01-08 17:00:00.000', 'pending', 590116), (6614, '2025-01-08 17:00:00.000', 'pending', 590127), (6614, '2025-01-08 17:00:00.000', 'pending', 590129), (6614, '2025-01-08 17:00:00.000', 'pending', 590226), (6614, '2025-01-08 17:00:00.000', 'pending', 590056), (6614, '2025-01-08 17:00:00.000', 'pending', 590061), (6614, '2025-01-08 17:00:00.000', 'pending', 590147), (6614, '2025-01-08 17:00:00.000', 'pending', 590085), (6614, '2025-01-08 17:00:00.000', 'pending', 590
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820749 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820749 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820750, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5288, OS thread handle 70398109099344, query id 2330067960 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 404652), (6610, '2025-01-12 18:00:00.000', 'pending', 404649), (6610, '2025-01-12 18:00:00.000', 'pending', 404687), (6610, '2025-01-12 18:00:00.000', 'pending', 404700), (6610, '2025-01-12 18:00:00.000', 'pending', 404707), (6610, '2025-01-12 18:00:00.000', 'pending', 404690), (6610, '2025-01-12 18:00:00.000', 'pending', 404691), (6610, '2025-01-12 18:00:00.000', 'pending', 404715), (6610, '2025-01-12 18:00:00.000', 'pending', 404733), (6610, '2025-01-12 18:00:00.000', 'pending', 404732), (6610, '2025-01-12 18:00:00.000', 'pending', 404730), (6610, '2025-01-12 18:00:00.000', 'pending', 404738), (6610, '2025-01-12 18:00:00.000', 'pending', 404728), (6610, '2025-01-12 18:00:00.000', 'pending', 404753), (6610, '2025-01-12 18:00:00.000', 'pending', 404754), (6610, '2025-01-12 18:00:00.000', 'pending', 404762), (6610, '2025-01-12 18:00:00.000', 'pending', 404798), (6610, '2025-01-12 18:00:00.000', 'pending', 404857), (6610, '2025-01-12 18:00:00.000', 'pending', 404871), (6610, '2025-01-12 18:00:00.000', 'pending', 404872), (6610, '2025-01-12 18:00:00.000', 'pending', 404902), (6610, '2025-01-12 18:00:00.000', 'pending', 405029), (6610, '2025-01-12 18:00:00.000', 'pending', 405135), (6610, '2025-01-12 18:00:00.000', 'pending', 404922), (6610, '2025-01-12 18:00:00.000', 'pending', 405574), (6610, '2025-01-12 18:00:00.000', 'pending', 405616), (6610, '2025-01-12 18:00:00.000', 'pending', 405572), (6610, '2025-01-12 18:00:00.000', 'pending', 405620), (6610, '2025-01-12 18:00:00.000', 'pending', 405881), (6610, '2025-01-12 18:00:00.000', 'pending', 405640), (6610, '2025-01-12 18:00:00.000', 'pending', 405920), (6610, '2025-01-12 18:00:00.000', 'pending', 406114), (6610, '2025-01-12 18:00:00.000', 'pending', 406161), (6610, '2025-01-12 18:00:00.000', 'pending', 405997), (6610, '2025-01-12 18:00:00.000', 'pending', 406041), (6610, '2025-01-12 18:00:00.000', 'pending', 406150), (6610, '2025-01-12 18:00:00.000', 'pending', 406441), (6610, '2025-01-12 18:00:00.000', 'pending', 406076), (6610, '2025-01-12 18:00:00.000', 'pending', 406401), (6610, '2025-01-12 18:00:00.000', 'pending', 406147), (6610, '2025-01-12 18:00:00.000', 'pending', 406235), (6610, '2025-01-12 18:00:00.000', 'pending', 406352), (6610, '2025-01-12 18:00:00.000', 'pending', 406424), (6610, '2025-01-12 18:00:00.000', 'pending', 406597), (6610, '2025-01-12 18:00:00.000', 'pending', 407047), (6610, '2025-01-12 18:00:00.000', 'pending', 407325), (6610, '2025-01-12 18:00:00.000', 'pending', 407365), (6610, '2025-01-12 18:00:00.000', 'pending', 407513), (6610, '2025-01-12 18:00:00.000', 'pending', 407432), (6610, '2025-01-12 18:00:00.000', 'pending', 407119), (6610, '2025-01-12 18:00:00.000', 'pending', 407685), (6610, '2025-01-12 18:00:00.000', 'pending', 407898), (6610, '2025-01-12 18:00:00.000', 'pending', 407956), (6610, '2025-01-12 18:00:00.000', 'pending', 408
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820750 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820750 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820995, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5269, OS thread handle 70398064043344, query id 2330068696 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 674556), (6613, '2025-01-08 01:00:00.000', 'pending', 674422), (6613, '2025-01-08 01:00:00.000', 'pending', 674473), (6613, '2025-01-08 01:00:00.000', 'pending', 674578), (6613, '2025-01-08 01:00:00.000', 'pending', 674562), (6613, '2025-01-08 01:00:00.000', 'pending', 674442), (6613, '2025-01-08 01:00:00.000', 'pending', 674572), (6613, '2025-01-08 01:00:00.000', 'pending', 674558), (6613, '2025-01-08 01:00:00.000', 'pending', 674577), (6613, '2025-01-08 01:00:00.000', 'pending', 674567), (6613, '2025-01-08 01:00:00.000', 'pending', 674570), (6613, '2025-01-08 01:00:00.000', 'pending', 674557), (6613, '2025-01-08 01:00:00.000', 'pending', 674561), (6613, '2025-01-08 01:00:00.000', 'pending', 674474), (6613, '2025-01-08 01:00:00.000', 'pending', 674576), (6613, '2025-01-08 01:00:00.000', 'pending', 674589), (6613, '2025-01-08 01:00:00.000', 'pending', 674566), (6613, '2025-01-08 01:00:00.000', 'pending', 674553), (6613, '2025-01-08 01:00:00.000', 'pending', 674420), (6613, '2025-01-08 01:00:00.000', 'pending', 674569), (6613, '2025-01-08 01:00:00.000', 'pending', 674590), (6613, '2025-01-08 01:00:00.000', 'pending', 674574), (6613, '2025-01-08 01:00:00.000', 'pending', 674552), (6613, '2025-01-08 01:00:00.000', 'pending', 674564), (6613, '2025-01-08 01:00:00.000', 'pending', 674560), (6613, '2025-01-08 01:00:00.000', 'pending', 674551), (6613, '2025-01-08 01:00:00.000', 'pending', 674592), (6613, '2025-01-08 01:00:00.000', 'pending', 674584), (6613, '2025-01-08 01:00:00.000', 'pending', 674568), (6613, '2025-01-08 01:00:00.000', 'pending', 674587), (6613, '2025-01-08 01:00:00.000', 'pending', 674421), (6613, '2025-01-08 01:00:00.000', 'pending', 674468), (6613, '2025-01-08 01:00:00.000', 'pending', 674559), (6613, '2025-01-08 01:00:00.000', 'pending', 674585), (6613, '2025-01-08 01:00:00.000', 'pending', 674565), (6613, '2025-01-08 01:00:00.000', 'pending', 674573), (6613, '2025-01-08 01:00:00.000', 'pending', 674582), (6613, '2025-01-08 01:00:00.000', 'pending', 674544), (6613, '2025-01-08 01:00:00.000', 'pending', 674475), (6613, '2025-01-08 01:00:00.000', 'pending', 674583), (6613, '2025-01-08 01:00:00.000', 'pending', 674555), (6613, '2025-01-08 01:00:00.000', 'pending', 674575), (6613, '2025-01-08 01:00:00.000', 'pending', 674593), (6613, '2025-01-08 01:00:00.000', 'pending', 674586), (6613, '2025-01-08 01:00:00.000', 'pending', 674492), (6613, '2025-01-08 01:00:00.000', 'pending', 674588), (6613, '2025-01-08 01:00:00.000', 'pending', 674591), (6613, '2025-01-08 01:00:00.000', 'pending', 674580), (6613, '2025-01-08 01:00:00.000', 'pending', 674579), (6613, '2025-01-08 01:00:00.000', 'pending', 674596), (6613, '2025-01-08 01:00:00.000', 'pending', 674594), (6613, '2025-01-08 01:00:00.000', 'pending', 674598), (6613, '2025-01-08 01:00:00.000', 'pending', 674581), (6613, '2025-01-08 01:00:00.000', 'pending', 674
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820995 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820995 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344820994, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330068694 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 660410), (6610, '2025-01-12 18:00:00.000', 'pending', 404159), (6610, '2025-01-12 18:00:00.000', 'pending', 377873), (6610, '2025-01-12 18:00:00.000', 'pending', 681209), (6610, '2025-01-12 18:00:00.000', 'pending', 676716), (6610, '2025-01-12 18:00:00.000', 'pending', 670868), (6610, '2025-01-12 18:00:00.000', 'pending', 670941), (6610, '2025-01-12 18:00:00.000', 'pending', 657349), (6610, '2025-01-12 18:00:00.000', 'pending', 682679), (6610, '2025-01-12 18:00:00.000', 'pending', 515241), (6610, '2025-01-12 18:00:00.000', 'pending', 679862), (6610, '2025-01-12 18:00:00.000', 'pending', 394454), (6610, '2025-01-12 18:00:00.000', 'pending', 671131), (6610, '2025-01-12 18:00:00.000', 'pending', 671484), (6610, '2025-01-12 18:00:00.000', 'pending', 670896), (6610, '2025-01-12 18:00:00.000', 'pending', 670872), (6610, '2025-01-12 18:00:00.000', 'pending', 683887), (6610, '2025-01-12 18:00:00.000', 'pending', 644609), (6610, '2025-01-12 18:00:00.000', 'pending', 677595), (6610, '2025-01-12 18:00:00.000', 'pending', 500013), (6610, '2025-01-12 18:00:00.000', 'pending', 388013), (6610, '2025-01-12 18:00:00.000', 'pending', 367324), (6610, '2025-01-12 18:00:00.000', 'pending', 670800), (6610, '2025-01-12 18:00:00.000', 'pending', 558107), (6610, '2025-01-12 18:00:00.000', 'pending', 670373), (6610, '2025-01-12 18:00:00.000', 'pending', 684835), (6610, '2025-01-12 18:00:00.000', 'pending', 678996), (6610, '2025-01-12 18:00:00.000', 'pending', 566117), (6610, '2025-01-12 18:00:00.000', 'pending', 670709), (6610, '2025-01-12 18:00:00.000', 'pending', 664339), (6610, '2025-01-12 18:00:00.000', 'pending', 401837), (6610, '2025-01-12 18:00:00.000', 'pending', 685833), (6610, '2025-01-12 18:00:00.000', 'pending', 685902), (6610, '2025-01-12 18:00:00.000', 'pending', 351598), (6610, '2025-01-12 18:00:00.000', 'pending', 379487), (6610, '2025-01-12 18:00:00.000', 'pending', 660023), (6610, '2025-01-12 18:00:00.000', 'pending', 686440), (6610, '2025-01-12 18:00:00.000', 'pending', 686515), (6610, '2025-01-12 18:00:00.000', 'pending', 686603), (6610, '2025-01-12 18:00:00.000', 'pending', 686495), (6610, '2025-01-12 18:00:00.000', 'pending', 667925), (6610, '2025-01-12 18:00:00.000', 'pending', 687105), (6610, '2025-01-12 18:00:00.000', 'pending', 673792), (6610, '2025-01-12 18:00:00.000', 'pending', 663966), (6610, '2025-01-12 18:00:00.000', 'pending', 328263), (6610, '2025-01-12 18:00:00.000', 'pending', 363739), (6610, '2025-01-12 18:00:00.000', 'pending', 687372), (6610, '2025-01-12 18:00:00.000', 'pending', 670774), (6610, '2025-01-12 18:00:00.000', 'pending', 414220), (6610, '2025-01-12 18:00:00.000', 'pending', 562147), (6610, '2025-01-12 18:00:00.000', 'pending', 670841), (6610, '2025-01-12 18:00:00.000', 'pending', 687833), (6610, '2025-01-12 18:00:00.000', 'pending', 686653), (6610, '2025-01-12 18:00:00.000', 'pending', 653
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820994 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344820994 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344821019, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5269, OS thread handle 70398064043344, query id 2330068797 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 674737), (6613, '2025-01-08 01:00:00.000', 'pending', 674761), (6613, '2025-01-08 01:00:00.000', 'pending', 674748), (6613, '2025-01-08 01:00:00.000', 'pending', 674741), (6613, '2025-01-08 01:00:00.000', 'pending', 674747), (6613, '2025-01-08 01:00:00.000', 'pending', 674757), (6613, '2025-01-08 01:00:00.000', 'pending', 674732), (6613, '2025-01-08 01:00:00.000', 'pending', 674759), (6613, '2025-01-08 01:00:00.000', 'pending', 674769), (6613, '2025-01-08 01:00:00.000', 'pending', 674733), (6613, '2025-01-08 01:00:00.000', 'pending', 674763), (6613, '2025-01-08 01:00:00.000', 'pending', 674762), (6613, '2025-01-08 01:00:00.000', 'pending', 674743), (6613, '2025-01-08 01:00:00.000', 'pending', 674768), (6613, '2025-01-08 01:00:00.000', 'pending', 674755), (6613, '2025-01-08 01:00:00.000', 'pending', 674770), (6613, '2025-01-08 01:00:00.000', 'pending', 674756), (6613, '2025-01-08 01:00:00.000', 'pending', 674767), (6613, '2025-01-08 01:00:00.000', 'pending', 674777), (6613, '2025-01-08 01:00:00.000', 'pending', 674773), (6613, '2025-01-08 01:00:00.000', 'pending', 674753), (6613, '2025-01-08 01:00:00.000', 'pending', 674742), (6613, '2025-01-08 01:00:00.000', 'pending', 674774), (6613, '2025-01-08 01:00:00.000', 'pending', 674744), (6613, '2025-01-08 01:00:00.000', 'pending', 674775), (6613, '2025-01-08 01:00:00.000', 'pending', 674766), (6613, '2025-01-08 01:00:00.000', 'pending', 674745), (6613, '2025-01-08 01:00:00.000', 'pending', 674772), (6613, '2025-01-08 01:00:00.000', 'pending', 674779), (6613, '2025-01-08 01:00:00.000', 'pending', 674780), (6613, '2025-01-08 01:00:00.000', 'pending', 674783), (6613, '2025-01-08 01:00:00.000', 'pending', 674765), (6613, '2025-01-08 01:00:00.000', 'pending', 674752), (6613, '2025-01-08 01:00:00.000', 'pending', 674754), (6613, '2025-01-08 01:00:00.000', 'pending', 674758), (6613, '2025-01-08 01:00:00.000', 'pending', 674771), (6613, '2025-01-08 01:00:00.000', 'pending', 674778), (6613, '2025-01-08 01:00:00.000', 'pending', 674786), (6613, '2025-01-08 01:00:00.000', 'pending', 674785), (6613, '2025-01-08 01:00:00.000', 'pending', 674781), (6613, '2025-01-08 01:00:00.000', 'pending', 674789), (6613, '2025-01-08 01:00:00.000', 'pending', 674776), (6613, '2025-01-08 01:00:00.000', 'pending', 674787), (6613, '2025-01-08 01:00:00.000', 'pending', 674782), (6613, '2025-01-08 01:00:00.000', 'pending', 674784), (6613, '2025-01-08 01:00:00.000', 'pending', 674788), (6613, '2025-01-08 01:00:00.000', 'pending', 674790), (6613, '2025-01-08 01:00:00.000', 'pending', 674795), (6613, '2025-01-08 01:00:00.000', 'pending', 674797), (6613, '2025-01-08 01:00:00.000', 'pending', 674800), (6613, '2025-01-08 01:00:00.000', 'pending', 674794), (6613, '2025-01-08 01:00:00.000', 'pending', 674793), (6613, '2025-01-08 01:00:00.000', 'pending', 674805), (6613, '2025-01-08 01:00:00.000', 'pending', 674
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344821019 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344821019 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344821017, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 11 lock struct(s), heap size 1128, 7 row lock(s)
MySQL thread id 5263, OS thread handle 70398413317456, query id 2330068795 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 409892), (6610, '2025-01-12 18:00:00.000', 'pending', 705427), (6610, '2025-01-12 18:00:00.000', 'pending', 689702), (6610, '2025-01-12 18:00:00.000', 'pending', 364498), (6610, '2025-01-12 18:00:00.000', 'pending', 616983), (6610, '2025-01-12 18:00:00.000', 'pending', 703378), (6610, '2025-01-12 18:00:00.000', 'pending', 694448), (6610, '2025-01-12 18:00:00.000', 'pending', 559052), (6610, '2025-01-12 18:00:00.000', 'pending', 701750), (6610, '2025-01-12 18:00:00.000', 'pending', 639619), (6610, '2025-01-12 18:00:00.000', 'pending', 704725), (6610, '2025-01-12 18:00:00.000', 'pending', 705424), (6610, '2025-01-12 18:00:00.000', 'pending', 680146), (6610, '2025-01-12 18:00:00.000', 'pending', 695478), (6610, '2025-01-12 18:00:00.000', 'pending', 695790), (6610, '2025-01-12 18:00:00.000', 'pending', 679771), (6610, '2025-01-12 18:00:00.000', 'pending', 689189), (6610, '2025-01-12 18:00:00.000', 'pending', 250116), (6610, '2025-01-12 18:00:00.000', 'pending', 705779), (6610, '2025-01-12 18:00:00.000', 'pending', 689235), (6610, '2025-01-12 18:00:00.000', 'pending', 665310), (6610, '2025-01-12 18:00:00.000', 'pending', 507413), (6610, '2025-01-12 18:00:00.000', 'pending', 706162), (6610, '2025-01-12 18:00:00.000', 'pending', 678693), (6610, '2025-01-12 18:00:00.000', 'pending', 684257), (6610, '2025-01-12 18:00:00.000', 'pending', 689307), (6610, '2025-01-12 18:00:00.000', 'pending', 706943), (6610, '2025-01-12 18:00:00.000', 'pending', 697079), (6610, '2025-01-12 18:00:00.000', 'pending', 705791), (6610, '2025-01-12 18:00:00.000', 'pending', 696904), (6610, '2025-01-12 18:00:00.000', 'pending', 639840), (6610, '2025-01-12 18:00:00.000', 'pending', 688328), (6610, '2025-01-12 18:00:00.000', 'pending', 697867), (6610, '2025-01-12 18:00:00.000', 'pending', 707608), (6610, '2025-01-12 18:00:00.000', 'pending', 707762), (6610, '2025-01-12 18:00:00.000', 'pending', 699359), (6610, '2025-01-12 18:00:00.000', 'pending', 488221), (6610, '2025-01-12 18:00:00.000', 'pending', 622299), (6610, '2025-01-12 18:00:00.000', 'pending', 337480), (6610, '2025-01-12 18:00:00.000', 'pending', 689294), (6610, '2025-01-12 18:00:00.000', 'pending', 703501), (6610, '2025-01-12 18:00:00.000', 'pending', 692139), (6610, '2025-01-12 18:00:00.000', 'pending', 693279), (6610, '2025-01-12 18:00:00.000', 'pending', 387725), (6610, '2025-01-12 18:00:00.000', 'pending', 687769), (6610, '2025-01-12 18:00:00.000', 'pending', 706632), (6610, '2025-01-12 18:00:00.000', 'pending', 708033), (6610, '2025-01-12 18:00:00.000', 'pending', 689171), (6610, '2025-01-12 18:00:00.000', 'pending', 700350), (6610, '2025-01-12 18:00:00.000', 'pending', 708124), (6610, '2025-01-12 18:00:00.000', 'pending', 708149), (6610, '2025-01-12 18:00:00.000', 'pending', 701781), (6610, '2025-01-12 18:00:00.000', 'pending', 691718), (6610, '2025-01-12 18:00:00.000', 'pending', 693
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344821017 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193337 n bits 240 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344821017 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864144, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330228229 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 519638), (6614, '2025-01-08 17:00:00.000', 'pending', 519635), (6614, '2025-01-08 17:00:00.000', 'pending', 519637), (6614, '2025-01-08 17:00:00.000', 'pending', 519640), (6614, '2025-01-08 17:00:00.000', 'pending', 519629), (6614, '2025-01-08 17:00:00.000', 'pending', 519644), (6614, '2025-01-08 17:00:00.000', 'pending', 519634), (6614, '2025-01-08 17:00:00.000', 'pending', 519636), (6614, '2025-01-08 17:00:00.000', 'pending', 519639), (6614, '2025-01-08 17:00:00.000', 'pending', 519632), (6614, '2025-01-08 17:00:00.000', 'pending', 519646), (6614, '2025-01-08 17:00:00.000', 'pending', 519642), (6614, '2025-01-08 17:00:00.000', 'pending', 519650), (6614, '2025-01-08 17:00:00.000', 'pending', 519647), (6614, '2025-01-08 17:00:00.000', 'pending', 519648), (6614, '2025-01-08 17:00:00.000', 'pending', 519649), (6614, '2025-01-08 17:00:00.000', 'pending', 519641), (6614, '2025-01-08 17:00:00.000', 'pending', 519645), (6614, '2025-01-08 17:00:00.000', 'pending', 519651), (6614, '2025-01-08 17:00:00.000', 'pending', 519652), (6614, '2025-01-08 17:00:00.000', 'pending', 519653), (6614, '2025-01-08 17:00:00.000', 'pending', 519654), (6614, '2025-01-08 17:00:00.000', 'pending', 519655), (6614, '2025-01-08 17:00:00.000', 'pending', 519659), (6614, '2025-01-08 17:00:00.000', 'pending', 519661), (6614, '2025-01-08 17:00:00.000', 'pending', 519662), (6614, '2025-01-08 17:00:00.000', 'pending', 519656), (6614, '2025-01-08 17:00:00.000', 'pending', 519658), (6614, '2025-01-08 17:00:00.000', 'pending', 519660), (6614, '2025-01-08 17:00:00.000', 'pending', 519666), (6614, '2025-01-08 17:00:00.000', 'pending', 519663), (6614, '2025-01-08 17:00:00.000', 'pending', 519664), (6614, '2025-01-08 17:00:00.000', 'pending', 519657), (6614, '2025-01-08 17:00:00.000', 'pending', 519665), (6614, '2025-01-08 17:00:00.000', 'pending', 519671), (6614, '2025-01-08 17:00:00.000', 'pending', 519667), (6614, '2025-01-08 17:00:00.000', 'pending', 519673), (6614, '2025-01-08 17:00:00.000', 'pending', 519669), (6614, '2025-01-08 17:00:00.000', 'pending', 519672), (6614, '2025-01-08 17:00:00.000', 'pending', 519674), (6614, '2025-01-08 17:00:00.000', 'pending', 519676), (6614, '2025-01-08 17:00:00.000', 'pending', 519677), (6614, '2025-01-08 17:00:00.000', 'pending', 519675), (6614, '2025-01-08 17:00:00.000', 'pending', 519678), (6614, '2025-01-08 17:00:00.000', 'pending', 519684), (6614, '2025-01-08 17:00:00.000', 'pending', 519685), (6614, '2025-01-08 17:00:00.000', 'pending', 519679), (6614, '2025-01-08 17:00:00.000', 'pending', 519686), (6614, '2025-01-08 17:00:00.000', 'pending', 519681), (6614, '2025-01-08 17:00:00.000', 'pending', 519680), (6614, '2025-01-08 17:00:00.000', 'pending', 519687), (6614, '2025-01-08 17:00:00.000', 'pending', 519688), (6614, '2025-01-08 17:00:00.000', 'pending', 519690), (6614, '2025-01-08 17:00:00.000', 'pending', 519
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864144 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864144 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864143, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5260, OS thread handle 70398529848656, query id 2330228228 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 366349), (6610, '2025-01-12 18:00:00.000', 'pending', 366331), (6610, '2025-01-12 18:00:00.000', 'pending', 366361), (6610, '2025-01-12 18:00:00.000', 'pending', 366330), (6610, '2025-01-12 18:00:00.000', 'pending', 366268), (6610, '2025-01-12 18:00:00.000', 'pending', 366365), (6610, '2025-01-12 18:00:00.000', 'pending', 366362), (6610, '2025-01-12 18:00:00.000', 'pending', 366389), (6610, '2025-01-12 18:00:00.000', 'pending', 366371), (6610, '2025-01-12 18:00:00.000', 'pending', 366382), (6610, '2025-01-12 18:00:00.000', 'pending', 366437), (6610, '2025-01-12 18:00:00.000', 'pending', 366428), (6610, '2025-01-12 18:00:00.000', 'pending', 366487), (6610, '2025-01-12 18:00:00.000', 'pending', 366413), (6610, '2025-01-12 18:00:00.000', 'pending', 366465), (6610, '2025-01-12 18:00:00.000', 'pending', 366498), (6610, '2025-01-12 18:00:00.000', 'pending', 366510), (6610, '2025-01-12 18:00:00.000', 'pending', 366489), (6610, '2025-01-12 18:00:00.000', 'pending', 366554), (6610, '2025-01-12 18:00:00.000', 'pending', 366614), (6610, '2025-01-12 18:00:00.000', 'pending', 366543), (6610, '2025-01-12 18:00:00.000', 'pending', 366527), (6610, '2025-01-12 18:00:00.000', 'pending', 366546), (6610, '2025-01-12 18:00:00.000', 'pending', 366599), (6610, '2025-01-12 18:00:00.000', 'pending', 366595), (6610, '2025-01-12 18:00:00.000', 'pending', 366559), (6610, '2025-01-12 18:00:00.000', 'pending', 366592), (6610, '2025-01-12 18:00:00.000', 'pending', 366636), (6610, '2025-01-12 18:00:00.000', 'pending', 366624), (6610, '2025-01-12 18:00:00.000', 'pending', 366686), (6610, '2025-01-12 18:00:00.000', 'pending', 366692), (6610, '2025-01-12 18:00:00.000', 'pending', 366772), (6610, '2025-01-12 18:00:00.000', 'pending', 366771), (6610, '2025-01-12 18:00:00.000', 'pending', 366826), (6610, '2025-01-12 18:00:00.000', 'pending', 366717), (6610, '2025-01-12 18:00:00.000', 'pending', 366689), (6610, '2025-01-12 18:00:00.000', 'pending', 366629), (6610, '2025-01-12 18:00:00.000', 'pending', 366864), (6610, '2025-01-12 18:00:00.000', 'pending', 366655), (6610, '2025-01-12 18:00:00.000', 'pending', 366743), (6610, '2025-01-12 18:00:00.000', 'pending', 366773), (6610, '2025-01-12 18:00:00.000', 'pending', 366854), (6610, '2025-01-12 18:00:00.000', 'pending', 366760), (6610, '2025-01-12 18:00:00.000', 'pending', 366663), (6610, '2025-01-12 18:00:00.000', 'pending', 366886), (6610, '2025-01-12 18:00:00.000', 'pending', 366896), (6610, '2025-01-12 18:00:00.000', 'pending', 366907), (6610, '2025-01-12 18:00:00.000', 'pending', 366782), (6610, '2025-01-12 18:00:00.000', 'pending', 366932), (6610, '2025-01-12 18:00:00.000', 'pending', 366945), (6610, '2025-01-12 18:00:00.000', 'pending', 366874), (6610, '2025-01-12 18:00:00.000', 'pending', 366937), (6610, '2025-01-12 18:00:00.000', 'pending', 366949), (6610, '2025-01-12 18:00:00.000', 'pending', 366
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864143 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864143 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864177, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5502, OS thread handle 70398109369680, query id 2330228291 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 542262), (6614, '2025-01-08 17:00:00.000', 'pending', 542281), (6614, '2025-01-08 17:00:00.000', 'pending', 542279), (6614, '2025-01-08 17:00:00.000', 'pending', 542261), (6614, '2025-01-08 17:00:00.000', 'pending', 542271), (6614, '2025-01-08 17:00:00.000', 'pending', 542282), (6614, '2025-01-08 17:00:00.000', 'pending', 542259), (6614, '2025-01-08 17:00:00.000', 'pending', 542275), (6614, '2025-01-08 17:00:00.000', 'pending', 542278), (6614, '2025-01-08 17:00:00.000', 'pending', 542286), (6614, '2025-01-08 17:00:00.000', 'pending', 542264), (6614, '2025-01-08 17:00:00.000', 'pending', 542288), (6614, '2025-01-08 17:00:00.000', 'pending', 542295), (6614, '2025-01-08 17:00:00.000', 'pending', 542285), (6614, '2025-01-08 17:00:00.000', 'pending', 542291), (6614, '2025-01-08 17:00:00.000', 'pending', 542294), (6614, '2025-01-08 17:00:00.000', 'pending', 542293), (6614, '2025-01-08 17:00:00.000', 'pending', 542284), (6614, '2025-01-08 17:00:00.000', 'pending', 542287), (6614, '2025-01-08 17:00:00.000', 'pending', 542290), (6614, '2025-01-08 17:00:00.000', 'pending', 542299), (6614, '2025-01-08 17:00:00.000', 'pending', 542289), (6614, '2025-01-08 17:00:00.000', 'pending', 542296), (6614, '2025-01-08 17:00:00.000', 'pending', 542304), (6614, '2025-01-08 17:00:00.000', 'pending', 542283), (6614, '2025-01-08 17:00:00.000', 'pending', 542297), (6614, '2025-01-08 17:00:00.000', 'pending', 542301), (6614, '2025-01-08 17:00:00.000', 'pending', 542308), (6614, '2025-01-08 17:00:00.000', 'pending', 542306), (6614, '2025-01-08 17:00:00.000', 'pending', 542298), (6614, '2025-01-08 17:00:00.000', 'pending', 542302), (6614, '2025-01-08 17:00:00.000', 'pending', 542303), (6614, '2025-01-08 17:00:00.000', 'pending', 542305), (6614, '2025-01-08 17:00:00.000', 'pending', 542318), (6614, '2025-01-08 17:00:00.000', 'pending', 542322), (6614, '2025-01-08 17:00:00.000', 'pending', 542328), (6614, '2025-01-08 17:00:00.000', 'pending', 542307), (6614, '2025-01-08 17:00:00.000', 'pending', 542310), (6614, '2025-01-08 17:00:00.000', 'pending', 542315), (6614, '2025-01-08 17:00:00.000', 'pending', 542313), (6614, '2025-01-08 17:00:00.000', 'pending', 542311), (6614, '2025-01-08 17:00:00.000', 'pending', 542319), (6614, '2025-01-08 17:00:00.000', 'pending', 542317), (6614, '2025-01-08 17:00:00.000', 'pending', 542300), (6614, '2025-01-08 17:00:00.000', 'pending', 542321), (6614, '2025-01-08 17:00:00.000', 'pending', 542320), (6614, '2025-01-08 17:00:00.000', 'pending', 542312), (6614, '2025-01-08 17:00:00.000', 'pending', 542325), (6614, '2025-01-08 17:00:00.000', 'pending', 542330), (6614, '2025-01-08 17:00:00.000', 'pending', 542323), (6614, '2025-01-08 17:00:00.000', 'pending', 542316), (6614, '2025-01-08 17:00:00.000', 'pending', 542332), (6614, '2025-01-08 17:00:00.000', 'pending', 542314), (6614, '2025-01-08 17:00:00.000', 'pending', 542
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864177 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864177 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864178, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 7 lock struct(s), heap size 1128, 4 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330228293 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 561834), (6613, '2025-01-08 01:00:00.000', 'pending', 561840), (6613, '2025-01-08 01:00:00.000', 'pending', 561837), (6613, '2025-01-08 01:00:00.000', 'pending', 561862), (6613, '2025-01-08 01:00:00.000', 'pending', 561867), (6613, '2025-01-08 01:00:00.000', 'pending', 561865), (6613, '2025-01-08 01:00:00.000', 'pending', 561864), (6613, '2025-01-08 01:00:00.000', 'pending', 561863), (6613, '2025-01-08 01:00:00.000', 'pending', 561868), (6613, '2025-01-08 01:00:00.000', 'pending', 561861), (6613, '2025-01-08 01:00:00.000', 'pending', 561866), (6613, '2025-01-08 01:00:00.000', 'pending', 561869), (6613, '2025-01-08 01:00:00.000', 'pending', 561882), (6613, '2025-01-08 01:00:00.000', 'pending', 561874), (6613, '2025-01-08 01:00:00.000', 'pending', 561879), (6613, '2025-01-08 01:00:00.000', 'pending', 561886), (6613, '2025-01-08 01:00:00.000', 'pending', 561871), (6613, '2025-01-08 01:00:00.000', 'pending', 561873), (6613, '2025-01-08 01:00:00.000', 'pending', 561878), (6613, '2025-01-08 01:00:00.000', 'pending', 561880), (6613, '2025-01-08 01:00:00.000', 'pending', 561875), (6613, '2025-01-08 01:00:00.000', 'pending', 561870), (6613, '2025-01-08 01:00:00.000', 'pending', 561889), (6613, '2025-01-08 01:00:00.000', 'pending', 561877), (6613, '2025-01-08 01:00:00.000', 'pending', 589797), (6613, '2025-01-08 01:00:00.000', 'pending', 589798), (6613, '2025-01-08 01:00:00.000', 'pending', 589811), (6613, '2025-01-08 01:00:00.000', 'pending', 589826), (6613, '2025-01-08 01:00:00.000', 'pending', 589803), (6613, '2025-01-08 01:00:00.000', 'pending', 589799), (6613, '2025-01-08 01:00:00.000', 'pending', 589810), (6613, '2025-01-08 01:00:00.000', 'pending', 589813), (6613, '2025-01-08 01:00:00.000', 'pending', 589800), (6613, '2025-01-08 01:00:00.000', 'pending', 589835), (6613, '2025-01-08 01:00:00.000', 'pending', 589801), (6613, '2025-01-08 01:00:00.000', 'pending', 589839), (6613, '2025-01-08 01:00:00.000', 'pending', 589836), (6613, '2025-01-08 01:00:00.000', 'pending', 589814), (6613, '2025-01-08 01:00:00.000', 'pending', 589829), (6613, '2025-01-08 01:00:00.000', 'pending', 589808), (6613, '2025-01-08 01:00:00.000', 'pending', 589816), (6613, '2025-01-08 01:00:00.000', 'pending', 589842), (6613, '2025-01-08 01:00:00.000', 'pending', 589841), (6613, '2025-01-08 01:00:00.000', 'pending', 589815), (6613, '2025-01-08 01:00:00.000', 'pending', 589843), (6613, '2025-01-08 01:00:00.000', 'pending', 589832), (6613, '2025-01-08 01:00:00.000', 'pending', 589806), (6613, '2025-01-08 01:00:00.000', 'pending', 589817), (6613, '2025-01-08 01:00:00.000', 'pending', 589838), (6613, '2025-01-08 01:00:00.000', 'pending', 589828), (6613, '2025-01-08 01:00:00.000', 'pending', 589837), (6613, '2025-01-08 01:00:00.000', 'pending', 589824), (6613, '2025-01-08 01:00:00.000', 'pending', 589809), (6613, '2025-01-08 01:00:00.000', 'pending', 589
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864178 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864178 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864264, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5276, OS thread handle 70398644122960, query id 2330228487 172.30.6.37 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 404652), (6610, '2025-01-12 18:00:00.000', 'pending', 404649), (6610, '2025-01-12 18:00:00.000', 'pending', 404687), (6610, '2025-01-12 18:00:00.000', 'pending', 404700), (6610, '2025-01-12 18:00:00.000', 'pending', 404707), (6610, '2025-01-12 18:00:00.000', 'pending', 404690), (6610, '2025-01-12 18:00:00.000', 'pending', 404691), (6610, '2025-01-12 18:00:00.000', 'pending', 404715), (6610, '2025-01-12 18:00:00.000', 'pending', 404733), (6610, '2025-01-12 18:00:00.000', 'pending', 404732), (6610, '2025-01-12 18:00:00.000', 'pending', 404730), (6610, '2025-01-12 18:00:00.000', 'pending', 404738), (6610, '2025-01-12 18:00:00.000', 'pending', 404728), (6610, '2025-01-12 18:00:00.000', 'pending', 404753), (6610, '2025-01-12 18:00:00.000', 'pending', 404754), (6610, '2025-01-12 18:00:00.000', 'pending', 404762), (6610, '2025-01-12 18:00:00.000', 'pending', 404798), (6610, '2025-01-12 18:00:00.000', 'pending', 404857), (6610, '2025-01-12 18:00:00.000', 'pending', 404871), (6610, '2025-01-12 18:00:00.000', 'pending', 404872), (6610, '2025-01-12 18:00:00.000', 'pending', 404902), (6610, '2025-01-12 18:00:00.000', 'pending', 405029), (6610, '2025-01-12 18:00:00.000', 'pending', 405135), (6610, '2025-01-12 18:00:00.000', 'pending', 404922), (6610, '2025-01-12 18:00:00.000', 'pending', 405574), (6610, '2025-01-12 18:00:00.000', 'pending', 405616), (6610, '2025-01-12 18:00:00.000', 'pending', 405572), (6610, '2025-01-12 18:00:00.000', 'pending', 405620), (6610, '2025-01-12 18:00:00.000', 'pending', 405881), (6610, '2025-01-12 18:00:00.000', 'pending', 405640), (6610, '2025-01-12 18:00:00.000', 'pending', 405920), (6610, '2025-01-12 18:00:00.000', 'pending', 406114), (6610, '2025-01-12 18:00:00.000', 'pending', 406161), (6610, '2025-01-12 18:00:00.000', 'pending', 405997), (6610, '2025-01-12 18:00:00.000', 'pending', 406041), (6610, '2025-01-12 18:00:00.000', 'pending', 406150), (6610, '2025-01-12 18:00:00.000', 'pending', 406441), (6610, '2025-01-12 18:00:00.000', 'pending', 406076), (6610, '2025-01-12 18:00:00.000', 'pending', 406401), (6610, '2025-01-12 18:00:00.000', 'pending', 406147), (6610, '2025-01-12 18:00:00.000', 'pending', 406235), (6610, '2025-01-12 18:00:00.000', 'pending', 406352), (6610, '2025-01-12 18:00:00.000', 'pending', 406424), (6610, '2025-01-12 18:00:00.000', 'pending', 406597), (6610, '2025-01-12 18:00:00.000', 'pending', 407047), (6610, '2025-01-12 18:00:00.000', 'pending', 407325), (6610, '2025-01-12 18:00:00.000', 'pending', 407365), (6610, '2025-01-12 18:00:00.000', 'pending', 407513), (6610, '2025-01-12 18:00:00.000', 'pending', 407432), (6610, '2025-01-12 18:00:00.000', 'pending', 407119), (6610, '2025-01-12 18:00:00.000', 'pending', 407685), (6610, '2025-01-12 18:00:00.000', 'pending', 407898), (6610, '2025-01-12 18:00:00.000', 'pending', 407956), (6610, '2025-01-12 18:00:00.000', 'pending', 408
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864264 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864264 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864263, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5502, OS thread handle 70398109369680, query id 2330228486 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 561670), (6614, '2025-01-08 17:00:00.000', 'pending', 561655), (6614, '2025-01-08 17:00:00.000', 'pending', 561645), (6614, '2025-01-08 17:00:00.000', 'pending', 561653), (6614, '2025-01-08 17:00:00.000', 'pending', 561656), (6614, '2025-01-08 17:00:00.000', 'pending', 561652), (6614, '2025-01-08 17:00:00.000', 'pending', 561663), (6614, '2025-01-08 17:00:00.000', 'pending', 561660), (6614, '2025-01-08 17:00:00.000', 'pending', 561661), (6614, '2025-01-08 17:00:00.000', 'pending', 561665), (6614, '2025-01-08 17:00:00.000', 'pending', 561681), (6614, '2025-01-08 17:00:00.000', 'pending', 561668), (6614, '2025-01-08 17:00:00.000', 'pending', 561684), (6614, '2025-01-08 17:00:00.000', 'pending', 561659), (6614, '2025-01-08 17:00:00.000', 'pending', 561649), (6614, '2025-01-08 17:00:00.000', 'pending', 561647), (6614, '2025-01-08 17:00:00.000', 'pending', 561662), (6614, '2025-01-08 17:00:00.000', 'pending', 561677), (6614, '2025-01-08 17:00:00.000', 'pending', 561669), (6614, '2025-01-08 17:00:00.000', 'pending', 561666), (6614, '2025-01-08 17:00:00.000', 'pending', 561664), (6614, '2025-01-08 17:00:00.000', 'pending', 561678), (6614, '2025-01-08 17:00:00.000', 'pending', 561683), (6614, '2025-01-08 17:00:00.000', 'pending', 561673), (6614, '2025-01-08 17:00:00.000', 'pending', 561675), (6614, '2025-01-08 17:00:00.000', 'pending', 561671), (6614, '2025-01-08 17:00:00.000', 'pending', 561667), (6614, '2025-01-08 17:00:00.000', 'pending', 561676), (6614, '2025-01-08 17:00:00.000', 'pending', 561674), (6614, '2025-01-08 17:00:00.000', 'pending', 561672), (6614, '2025-01-08 17:00:00.000', 'pending', 561687), (6614, '2025-01-08 17:00:00.000', 'pending', 561685), (6614, '2025-01-08 17:00:00.000', 'pending', 561682), (6614, '2025-01-08 17:00:00.000', 'pending', 561679), (6614, '2025-01-08 17:00:00.000', 'pending', 561680), (6614, '2025-01-08 17:00:00.000', 'pending', 561688), (6614, '2025-01-08 17:00:00.000', 'pending', 561686), (6614, '2025-01-08 17:00:00.000', 'pending', 561689), (6614, '2025-01-08 17:00:00.000', 'pending', 561695), (6614, '2025-01-08 17:00:00.000', 'pending', 561691), (6614, '2025-01-08 17:00:00.000', 'pending', 561709), (6614, '2025-01-08 17:00:00.000', 'pending', 561699), (6614, '2025-01-08 17:00:00.000', 'pending', 561713), (6614, '2025-01-08 17:00:00.000', 'pending', 561697), (6614, '2025-01-08 17:00:00.000', 'pending', 561698), (6614, '2025-01-08 17:00:00.000', 'pending', 561712), (6614, '2025-01-08 17:00:00.000', 'pending', 561710), (6614, '2025-01-08 17:00:00.000', 'pending', 561706), (6614, '2025-01-08 17:00:00.000', 'pending', 561701), (6614, '2025-01-08 17:00:00.000', 'pending', 561711), (6614, '2025-01-08 17:00:00.000', 'pending', 561719), (6614, '2025-01-08 17:00:00.000', 'pending', 561741), (6614, '2025-01-08 17:00:00.000', 'pending', 561692), (6614, '2025-01-08 17:00:00.000', 'pending', 561
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864263 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864263 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864401, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5185, OS thread handle 70385003300176, query id 2330228871 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 510105), (6610, '2025-01-12 18:00:00.000', 'pending', 483608), (6610, '2025-01-12 18:00:00.000', 'pending', 529176), (6610, '2025-01-12 18:00:00.000', 'pending', 479852), (6610, '2025-01-12 18:00:00.000', 'pending', 527627), (6610, '2025-01-12 18:00:00.000', 'pending', 528967), (6610, '2025-01-12 18:00:00.000', 'pending', 529514), (6610, '2025-01-12 18:00:00.000', 'pending', 523128), (6610, '2025-01-12 18:00:00.000', 'pending', 527299), (6610, '2025-01-12 18:00:00.000', 'pending', 509788), (6610, '2025-01-12 18:00:00.000', 'pending', 412607), (6610, '2025-01-12 18:00:00.000', 'pending', 526792), (6610, '2025-01-12 18:00:00.000', 'pending', 523268), (6610, '2025-01-12 18:00:00.000', 'pending', 495218), (6610, '2025-01-12 18:00:00.000', 'pending', 527736), (6610, '2025-01-12 18:00:00.000', 'pending', 530101), (6610, '2025-01-12 18:00:00.000', 'pending', 526285), (6610, '2025-01-12 18:00:00.000', 'pending', 403204), (6610, '2025-01-12 18:00:00.000', 'pending', 371413), (6610, '2025-01-12 18:00:00.000', 'pending', 529395), (6610, '2025-01-12 18:00:00.000', 'pending', 530396), (6610, '2025-01-12 18:00:00.000', 'pending', 527467), (6610, '2025-01-12 18:00:00.000', 'pending', 509709), (6610, '2025-01-12 18:00:00.000', 'pending', 530540), (6610, '2025-01-12 18:00:00.000', 'pending', 491189), (6610, '2025-01-12 18:00:00.000', 'pending', 458753), (6610, '2025-01-12 18:00:00.000', 'pending', 530666), (6610, '2025-01-12 18:00:00.000', 'pending', 477665), (6610, '2025-01-12 18:00:00.000', 'pending', 528725), (6610, '2025-01-12 18:00:00.000', 'pending', 508394), (6610, '2025-01-12 18:00:00.000', 'pending', 531006), (6610, '2025-01-12 18:00:00.000', 'pending', 491623), (6610, '2025-01-12 18:00:00.000', 'pending', 506087), (6610, '2025-01-12 18:00:00.000', 'pending', 379363), (6610, '2025-01-12 18:00:00.000', 'pending', 491674), (6610, '2025-01-12 18:00:00.000', 'pending', 529069), (6610, '2025-01-12 18:00:00.000', 'pending', 451554), (6610, '2025-01-12 18:00:00.000', 'pending', 530852), (6610, '2025-01-12 18:00:00.000', 'pending', 520151), (6610, '2025-01-12 18:00:00.000', 'pending', 506834), (6610, '2025-01-12 18:00:00.000', 'pending', 491186), (6610, '2025-01-12 18:00:00.000', 'pending', 495735), (6610, '2025-01-12 18:00:00.000', 'pending', 531441), (6610, '2025-01-12 18:00:00.000', 'pending', 517479), (6610, '2025-01-12 18:00:00.000', 'pending', 531691), (6610, '2025-01-12 18:00:00.000', 'pending', 353808), (6610, '2025-01-12 18:00:00.000', 'pending', 527762), (6610, '2025-01-12 18:00:00.000', 'pending', 531988), (6610, '2025-01-12 18:00:00.000', 'pending', 400464), (6610, '2025-01-12 18:00:00.000', 'pending', 528308), (6610, '2025-01-12 18:00:00.000', 'pending', 330425), (6610, '2025-01-12 18:00:00.000', 'pending', 332619), (6610, '2025-01-12 18:00:00.000', 'pending', 526105), (6610, '2025-01-12 18:00:00.000', 'pending', 494
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864401 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864401 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864402, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330228874 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 599750), (6614, '2025-01-08 17:00:00.000', 'pending', 599756), (6614, '2025-01-08 17:00:00.000', 'pending', 599770), (6614, '2025-01-08 17:00:00.000', 'pending', 599764), (6614, '2025-01-08 17:00:00.000', 'pending', 599748), (6614, '2025-01-08 17:00:00.000', 'pending', 599753), (6614, '2025-01-08 17:00:00.000', 'pending', 599781), (6614, '2025-01-08 17:00:00.000', 'pending', 599761), (6614, '2025-01-08 17:00:00.000', 'pending', 599769), (6614, '2025-01-08 17:00:00.000', 'pending', 599763), (6614, '2025-01-08 17:00:00.000', 'pending', 599776), (6614, '2025-01-08 17:00:00.000', 'pending', 599782), (6614, '2025-01-08 17:00:00.000', 'pending', 599772), (6614, '2025-01-08 17:00:00.000', 'pending', 599775), (6614, '2025-01-08 17:00:00.000', 'pending', 599749), (6614, '2025-01-08 17:00:00.000', 'pending', 599780), (6614, '2025-01-08 17:00:00.000', 'pending', 599773), (6614, '2025-01-08 17:00:00.000', 'pending', 599777), (6614, '2025-01-08 17:00:00.000', 'pending', 599779), (6614, '2025-01-08 17:00:00.000', 'pending', 599789), (6614, '2025-01-08 17:00:00.000', 'pending', 599778), (6614, '2025-01-08 17:00:00.000', 'pending', 599767), (6614, '2025-01-08 17:00:00.000', 'pending', 599786), (6614, '2025-01-08 17:00:00.000', 'pending', 599788), (6614, '2025-01-08 17:00:00.000', 'pending', 599783), (6614, '2025-01-08 17:00:00.000', 'pending', 599793), (6614, '2025-01-08 17:00:00.000', 'pending', 599794), (6614, '2025-01-08 17:00:00.000', 'pending', 599796), (6614, '2025-01-08 17:00:00.000', 'pending', 599784), (6614, '2025-01-08 17:00:00.000', 'pending', 599795), (6614, '2025-01-08 17:00:00.000', 'pending', 599790), (6614, '2025-01-08 17:00:00.000', 'pending', 599791), (6614, '2025-01-08 17:00:00.000', 'pending', 599787), (6614, '2025-01-08 17:00:00.000', 'pending', 599801), (6614, '2025-01-08 17:00:00.000', 'pending', 599765), (6614, '2025-01-08 17:00:00.000', 'pending', 599802), (6614, '2025-01-08 17:00:00.000', 'pending', 599798), (6614, '2025-01-08 17:00:00.000', 'pending', 599805), (6614, '2025-01-08 17:00:00.000', 'pending', 599771), (6614, '2025-01-08 17:00:00.000', 'pending', 599800), (6614, '2025-01-08 17:00:00.000', 'pending', 599803), (6614, '2025-01-08 17:00:00.000', 'pending', 599810), (6614, '2025-01-08 17:00:00.000', 'pending', 599807), (6614, '2025-01-08 17:00:00.000', 'pending', 599804), (6614, '2025-01-08 17:00:00.000', 'pending', 599799), (6614, '2025-01-08 17:00:00.000', 'pending', 599811), (6614, '2025-01-08 17:00:00.000', 'pending', 599792), (6614, '2025-01-08 17:00:00.000', 'pending', 599806), (6614, '2025-01-08 17:00:00.000', 'pending', 599817), (6614, '2025-01-08 17:00:00.000', 'pending', 599813), (6614, '2025-01-08 17:00:00.000', 'pending', 599820), (6614, '2025-01-08 17:00:00.000', 'pending', 599824), (6614, '2025-01-08 17:00:00.000', 'pending', 599819), (6614, '2025-01-08 17:00:00.000', 'pending', 599
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864402 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864402 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864457, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330228990 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 631228), (6614, '2025-01-08 17:00:00.000', 'pending', 631216), (6614, '2025-01-08 17:00:00.000', 'pending', 631230), (6614, '2025-01-08 17:00:00.000', 'pending', 631223), (6614, '2025-01-08 17:00:00.000', 'pending', 631217), (6614, '2025-01-08 17:00:00.000', 'pending', 631235), (6614, '2025-01-08 17:00:00.000', 'pending', 631232), (6614, '2025-01-08 17:00:00.000', 'pending', 631229), (6614, '2025-01-08 17:00:00.000', 'pending', 631231), (6614, '2025-01-08 17:00:00.000', 'pending', 631238), (6614, '2025-01-08 17:00:00.000', 'pending', 631255), (6614, '2025-01-08 17:00:00.000', 'pending', 631241), (6614, '2025-01-08 17:00:00.000', 'pending', 631239), (6614, '2025-01-08 17:00:00.000', 'pending', 631246), (6614, '2025-01-08 17:00:00.000', 'pending', 631249), (6614, '2025-01-08 17:00:00.000', 'pending', 631261), (6614, '2025-01-08 17:00:00.000', 'pending', 631256), (6614, '2025-01-08 17:00:00.000', 'pending', 631224), (6614, '2025-01-08 17:00:00.000', 'pending', 631254), (6614, '2025-01-08 17:00:00.000', 'pending', 631252), (6614, '2025-01-08 17:00:00.000', 'pending', 631244), (6614, '2025-01-08 17:00:00.000', 'pending', 631253), (6614, '2025-01-08 17:00:00.000', 'pending', 631262), (6614, '2025-01-08 17:00:00.000', 'pending', 631265), (6614, '2025-01-08 17:00:00.000', 'pending', 631248), (6614, '2025-01-08 17:00:00.000', 'pending', 631251), (6614, '2025-01-08 17:00:00.000', 'pending', 631259), (6614, '2025-01-08 17:00:00.000', 'pending', 631250), (6614, '2025-01-08 17:00:00.000', 'pending', 631257), (6614, '2025-01-08 17:00:00.000', 'pending', 631268), (6614, '2025-01-08 17:00:00.000', 'pending', 631260), (6614, '2025-01-08 17:00:00.000', 'pending', 631264), (6614, '2025-01-08 17:00:00.000', 'pending', 631269), (6614, '2025-01-08 17:00:00.000', 'pending', 631263), (6614, '2025-01-08 17:00:00.000', 'pending', 631275), (6614, '2025-01-08 17:00:00.000', 'pending', 631258), (6614, '2025-01-08 17:00:00.000', 'pending', 631273), (6614, '2025-01-08 17:00:00.000', 'pending', 631266), (6614, '2025-01-08 17:00:00.000', 'pending', 631270), (6614, '2025-01-08 17:00:00.000', 'pending', 631267), (6614, '2025-01-08 17:00:00.000', 'pending', 631271), (6614, '2025-01-08 17:00:00.000', 'pending', 631277), (6614, '2025-01-08 17:00:00.000', 'pending', 631272), (6614, '2025-01-08 17:00:00.000', 'pending', 631276), (6614, '2025-01-08 17:00:00.000', 'pending', 631280), (6614, '2025-01-08 17:00:00.000', 'pending', 631274), (6614, '2025-01-08 17:00:00.000', 'pending', 631297), (6614, '2025-01-08 17:00:00.000', 'pending', 631284), (6614, '2025-01-08 17:00:00.000', 'pending', 631299), (6614, '2025-01-08 17:00:00.000', 'pending', 631295), (6614, '2025-01-08 17:00:00.000', 'pending', 631294), (6614, '2025-01-08 17:00:00.000', 'pending', 631285), (6614, '2025-01-08 17:00:00.000', 'pending', 631288), (6614, '2025-01-08 17:00:00.000', 'pending', 631
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864457 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864457 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864458, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5193, OS thread handle 70398414214480, query id 2330228992 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 544046), (6610, '2025-01-12 18:00:00.000', 'pending', 556561), (6610, '2025-01-12 18:00:00.000', 'pending', 563971), (6610, '2025-01-12 18:00:00.000', 'pending', 541538), (6610, '2025-01-12 18:00:00.000', 'pending', 565288), (6610, '2025-01-12 18:00:00.000', 'pending', 533371), (6610, '2025-01-12 18:00:00.000', 'pending', 558478), (6610, '2025-01-12 18:00:00.000', 'pending', 403731), (6610, '2025-01-12 18:00:00.000', 'pending', 507722), (6610, '2025-01-12 18:00:00.000', 'pending', 524823), (6610, '2025-01-12 18:00:00.000', 'pending', 565270), (6610, '2025-01-12 18:00:00.000', 'pending', 559440), (6610, '2025-01-12 18:00:00.000', 'pending', 551946), (6610, '2025-01-12 18:00:00.000', 'pending', 562421), (6610, '2025-01-12 18:00:00.000', 'pending', 557633), (6610, '2025-01-12 18:00:00.000', 'pending', 558138), (6610, '2025-01-12 18:00:00.000', 'pending', 566345), (6610, '2025-01-12 18:00:00.000', 'pending', 566317), (6610, '2025-01-12 18:00:00.000', 'pending', 495326), (6610, '2025-01-12 18:00:00.000', 'pending', 528892), (6610, '2025-01-12 18:00:00.000', 'pending', 379102), (6610, '2025-01-12 18:00:00.000', 'pending', 566728), (6610, '2025-01-12 18:00:00.000', 'pending', 556015), (6610, '2025-01-12 18:00:00.000', 'pending', 566343), (6610, '2025-01-12 18:00:00.000', 'pending', 551132), (6610, '2025-01-12 18:00:00.000', 'pending', 563255), (6610, '2025-01-12 18:00:00.000', 'pending', 566858), (6610, '2025-01-12 18:00:00.000', 'pending', 551356), (6610, '2025-01-12 18:00:00.000', 'pending', 567007), (6610, '2025-01-12 18:00:00.000', 'pending', 557386), (6610, '2025-01-12 18:00:00.000', 'pending', 558698), (6610, '2025-01-12 18:00:00.000', 'pending', 426458), (6610, '2025-01-12 18:00:00.000', 'pending', 557438), (6610, '2025-01-12 18:00:00.000', 'pending', 542734), (6610, '2025-01-12 18:00:00.000', 'pending', 507002), (6610, '2025-01-12 18:00:00.000', 'pending', 567065), (6610, '2025-01-12 18:00:00.000', 'pending', 567104), (6610, '2025-01-12 18:00:00.000', 'pending', 538250), (6610, '2025-01-12 18:00:00.000', 'pending', 567095), (6610, '2025-01-12 18:00:00.000', 'pending', 425454), (6610, '2025-01-12 18:00:00.000', 'pending', 543123), (6610, '2025-01-12 18:00:00.000', 'pending', 567362), (6610, '2025-01-12 18:00:00.000', 'pending', 567368), (6610, '2025-01-12 18:00:00.000', 'pending', 566563), (6610, '2025-01-12 18:00:00.000', 'pending', 567146), (6610, '2025-01-12 18:00:00.000', 'pending', 567419), (6610, '2025-01-12 18:00:00.000', 'pending', 567296), (6610, '2025-01-12 18:00:00.000', 'pending', 541029), (6610, '2025-01-12 18:00:00.000', 'pending', 509261), (6610, '2025-01-12 18:00:00.000', 'pending', 567250), (6610, '2025-01-12 18:00:00.000', 'pending', 498272), (6610, '2025-01-12 18:00:00.000', 'pending', 567443), (6610, '2025-01-12 18:00:00.000', 'pending', 567041), (6610, '2025-01-12 18:00:00.000', 'pending', 567
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864458 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864458 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864465, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5193, OS thread handle 70398414214480, query id 2330229015 172.30.8.73 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6610, '2025-01-12 18:00:00.000', 'pending', 542119), (6610, '2025-01-12 18:00:00.000', 'pending', 535458), (6610, '2025-01-12 18:00:00.000', 'pending', 566181), (6610, '2025-01-12 18:00:00.000', 'pending', 328108), (6610, '2025-01-12 18:00:00.000', 'pending', 560971), (6610, '2025-01-12 18:00:00.000', 'pending', 328451), (6610, '2025-01-12 18:00:00.000', 'pending', 386096), (6610, '2025-01-12 18:00:00.000', 'pending', 567173), (6610, '2025-01-12 18:00:00.000', 'pending', 550865), (6610, '2025-01-12 18:00:00.000', 'pending', 558265), (6610, '2025-01-12 18:00:00.000', 'pending', 256962), (6610, '2025-01-12 18:00:00.000', 'pending', 571768), (6610, '2025-01-12 18:00:00.000', 'pending', 498248), (6610, '2025-01-12 18:00:00.000', 'pending', 256869), (6610, '2025-01-12 18:00:00.000', 'pending', 274563), (6610, '2025-01-12 18:00:00.000', 'pending', 556359), (6610, '2025-01-12 18:00:00.000', 'pending', 256846), (6610, '2025-01-12 18:00:00.000', 'pending', 256971), (6610, '2025-01-12 18:00:00.000', 'pending', 567498), (6610, '2025-01-12 18:00:00.000', 'pending', 250153), (6610, '2025-01-12 18:00:00.000', 'pending', 256949), (6610, '2025-01-12 18:00:00.000', 'pending', 330483), (6610, '2025-01-12 18:00:00.000', 'pending', 570549), (6610, '2025-01-12 18:00:00.000', 'pending', 573331), (6610, '2025-01-12 18:00:00.000', 'pending', 259175), (6610, '2025-01-12 18:00:00.000', 'pending', 566188), (6610, '2025-01-12 18:00:00.000', 'pending', 567200), (6610, '2025-01-12 18:00:00.000', 'pending', 567357), (6610, '2025-01-12 18:00:00.000', 'pending', 567160), (6610, '2025-01-12 18:00:00.000', 'pending', 321078), (6610, '2025-01-12 18:00:00.000', 'pending', 385697), (6610, '2025-01-12 18:00:00.000', 'pending', 432572), (6610, '2025-01-12 18:00:00.000', 'pending', 558428), (6610, '2025-01-12 18:00:00.000', 'pending', 527663), (6610, '2025-01-12 18:00:00.000', 'pending', 551947), (6610, '2025-01-12 18:00:00.000', 'pending', 566205), (6610, '2025-01-12 18:00:00.000', 'pending', 256915), (6610, '2025-01-12 18:00:00.000', 'pending', 476441), (6610, '2025-01-12 18:00:00.000', 'pending', 256996), (6610, '2025-01-12 18:00:00.000', 'pending', 577270), (6610, '2025-01-12 18:00:00.000', 'pending', 576850), (6610, '2025-01-12 18:00:00.000', 'pending', 529663), (6610, '2025-01-12 18:00:00.000', 'pending', 557305), (6610, '2025-01-12 18:00:00.000', 'pending', 400056), (6610, '2025-01-12 18:00:00.000', 'pending', 503649), (6610, '2025-01-12 18:00:00.000', 'pending', 298094), (6610, '2025-01-12 18:00:00.000', 'pending', 558709), (6610, '2025-01-12 18:00:00.000', 'pending', 551763), (6610, '2025-01-12 18:00:00.000', 'pending', 531552), (6610, '2025-01-12 18:00:00.000', 'pending', 558007), (6610, '2025-01-12 18:00:00.000', 'pending', 250162), (6610, '2025-01-12 18:00:00.000', 'pending', 544440), (6610, '2025-01-12 18:00:00.000', 'pending', 298125), (6610, '2025-01-12 18:00:00.000', 'pending', 367
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864465 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864465 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864466, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5271, OS thread handle 70398094275920, query id 2330229016 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 631329), (6614, '2025-01-08 17:00:00.000', 'pending', 631338), (6614, '2025-01-08 17:00:00.000', 'pending', 631343), (6614, '2025-01-08 17:00:00.000', 'pending', 631341), (6614, '2025-01-08 17:00:00.000', 'pending', 631348), (6614, '2025-01-08 17:00:00.000', 'pending', 631345), (6614, '2025-01-08 17:00:00.000', 'pending', 631351), (6614, '2025-01-08 17:00:00.000', 'pending', 631347), (6614, '2025-01-08 17:00:00.000', 'pending', 631339), (6614, '2025-01-08 17:00:00.000', 'pending', 631349), (6614, '2025-01-08 17:00:00.000', 'pending', 631355), (6614, '2025-01-08 17:00:00.000', 'pending', 631363), (6614, '2025-01-08 17:00:00.000', 'pending', 631352), (6614, '2025-01-08 17:00:00.000', 'pending', 631340), (6614, '2025-01-08 17:00:00.000', 'pending', 631350), (6614, '2025-01-08 17:00:00.000', 'pending', 631336), (6614, '2025-01-08 17:00:00.000', 'pending', 631346), (6614, '2025-01-08 17:00:00.000', 'pending', 631367), (6614, '2025-01-08 17:00:00.000', 'pending', 631359), (6614, '2025-01-08 17:00:00.000', 'pending', 631371), (6614, '2025-01-08 17:00:00.000', 'pending', 631358), (6614, '2025-01-08 17:00:00.000', 'pending', 631369), (6614, '2025-01-08 17:00:00.000', 'pending', 631354), (6614, '2025-01-08 17:00:00.000', 'pending', 631382), (6614, '2025-01-08 17:00:00.000', 'pending', 631368), (6614, '2025-01-08 17:00:00.000', 'pending', 631356), (6614, '2025-01-08 17:00:00.000', 'pending', 631344), (6614, '2025-01-08 17:00:00.000', 'pending', 631361), (6614, '2025-01-08 17:00:00.000', 'pending', 631381), (6614, '2025-01-08 17:00:00.000', 'pending', 631360), (6614, '2025-01-08 17:00:00.000', 'pending', 631380), (6614, '2025-01-08 17:00:00.000', 'pending', 631362), (6614, '2025-01-08 17:00:00.000', 'pending', 631366), (6614, '2025-01-08 17:00:00.000', 'pending', 631390), (6614, '2025-01-08 17:00:00.000', 'pending', 631377), (6614, '2025-01-08 17:00:00.000', 'pending', 631370), (6614, '2025-01-08 17:00:00.000', 'pending', 631357), (6614, '2025-01-08 17:00:00.000', 'pending', 631378), (6614, '2025-01-08 17:00:00.000', 'pending', 631373), (6614, '2025-01-08 17:00:00.000', 'pending', 631386), (6614, '2025-01-08 17:00:00.000', 'pending', 631353), (6614, '2025-01-08 17:00:00.000', 'pending', 631376), (6614, '2025-01-08 17:00:00.000', 'pending', 631375), (6614, '2025-01-08 17:00:00.000', 'pending', 631365), (6614, '2025-01-08 17:00:00.000', 'pending', 631388), (6614, '2025-01-08 17:00:00.000', 'pending', 631385), (6614, '2025-01-08 17:00:00.000', 'pending', 631392), (6614, '2025-01-08 17:00:00.000', 'pending', 631387), (6614, '2025-01-08 17:00:00.000', 'pending', 631389), (6614, '2025-01-08 17:00:00.000', 'pending', 631379), (6614, '2025-01-08 17:00:00.000', 'pending', 631374), (6614, '2025-01-08 17:00:00.000', 'pending', 631372), (6614, '2025-01-08 17:00:00.000', 'pending', 631395), (6614, '2025-01-08 17:00:00.000', 'pending', 631
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864466 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864466 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864508, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 9 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5285, OS thread handle 70398464353616, query id 2330229130 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 663183), (6614, '2025-01-08 17:00:00.000', 'pending', 663191), (6614, '2025-01-08 17:00:00.000', 'pending', 663200), (6614, '2025-01-08 17:00:00.000', 'pending', 663208), (6614, '2025-01-08 17:00:00.000', 'pending', 663199), (6614, '2025-01-08 17:00:00.000', 'pending', 663213), (6614, '2025-01-08 17:00:00.000', 'pending', 663189), (6614, '2025-01-08 17:00:00.000', 'pending', 663209), (6614, '2025-01-08 17:00:00.000', 'pending', 663214), (6614, '2025-01-08 17:00:00.000', 'pending', 663212), (6614, '2025-01-08 17:00:00.000', 'pending', 663217), (6614, '2025-01-08 17:00:00.000', 'pending', 663216), (6614, '2025-01-08 17:00:00.000', 'pending', 663220), (6614, '2025-01-08 17:00:00.000', 'pending', 663218), (6614, '2025-01-08 17:00:00.000', 'pending', 663207), (6614, '2025-01-08 17:00:00.000', 'pending', 663210), (6614, '2025-01-08 17:00:00.000', 'pending', 663224), (6614, '2025-01-08 17:00:00.000', 'pending', 663228), (6614, '2025-01-08 17:00:00.000', 'pending', 663201), (6614, '2025-01-08 17:00:00.000', 'pending', 663230), (6614, '2025-01-08 17:00:00.000', 'pending', 663202), (6614, '2025-01-08 17:00:00.000', 'pending', 663226), (6614, '2025-01-08 17:00:00.000', 'pending', 663219), (6614, '2025-01-08 17:00:00.000', 'pending', 663229), (6614, '2025-01-08 17:00:00.000', 'pending', 663136), (6614, '2025-01-08 17:00:00.000', 'pending', 663233), (6614, '2025-01-08 17:00:00.000', 'pending', 663100), (6614, '2025-01-08 17:00:00.000', 'pending', 663227), (6614, '2025-01-08 17:00:00.000', 'pending', 663159), (6614, '2025-01-08 17:00:00.000', 'pending', 663225), (6614, '2025-01-08 17:00:00.000', 'pending', 663236), (6614, '2025-01-08 17:00:00.000', 'pending', 663232), (6614, '2025-01-08 17:00:00.000', 'pending', 663241), (6614, '2025-01-08 17:00:00.000', 'pending', 663231), (6614, '2025-01-08 17:00:00.000', 'pending', 663242), (6614, '2025-01-08 17:00:00.000', 'pending', 663234), (6614, '2025-01-08 17:00:00.000', 'pending', 663246), (6614, '2025-01-08 17:00:00.000', 'pending', 663235), (6614, '2025-01-08 17:00:00.000', 'pending', 663243), (6614, '2025-01-08 17:00:00.000', 'pending', 663247), (6614, '2025-01-08 17:00:00.000', 'pending', 663251), (6614, '2025-01-08 17:00:00.000', 'pending', 663244), (6614, '2025-01-08 17:00:00.000', 'pending', 663240), (6614, '2025-01-08 17:00:00.000', 'pending', 663245), (6614, '2025-01-08 17:00:00.000', 'pending', 663260), (6614, '2025-01-08 17:00:00.000', 'pending', 663263), (6614, '2025-01-08 17:00:00.000', 'pending', 663248), (6614, '2025-01-08 17:00:00.000', 'pending', 663239), (6614, '2025-01-08 17:00:00.000', 'pending', 663237), (6614, '2025-01-08 17:00:00.000', 'pending', 663255), (6614, '2025-01-08 17:00:00.000', 'pending', 663257), (6614, '2025-01-08 17:00:00.000', 'pending', 663254), (6614, '2025-01-08 17:00:00.000', 'pending', 663267), (6614, '2025-01-08 17:00:00.000', 'pending', 663
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864508 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864508 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864509, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 10 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5271, OS thread handle 70398094275920, query id 2330229136 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 663183), (6614, '2025-01-08 17:00:00.000', 'pending', 663191), (6614, '2025-01-08 17:00:00.000', 'pending', 663200), (6614, '2025-01-08 17:00:00.000', 'pending', 663208), (6614, '2025-01-08 17:00:00.000', 'pending', 663199), (6614, '2025-01-08 17:00:00.000', 'pending', 663213), (6614, '2025-01-08 17:00:00.000', 'pending', 663189), (6614, '2025-01-08 17:00:00.000', 'pending', 663209), (6614, '2025-01-08 17:00:00.000', 'pending', 663214), (6614, '2025-01-08 17:00:00.000', 'pending', 663212), (6614, '2025-01-08 17:00:00.000', 'pending', 663217), (6614, '2025-01-08 17:00:00.000', 'pending', 663216), (6614, '2025-01-08 17:00:00.000', 'pending', 663220), (6614, '2025-01-08 17:00:00.000', 'pending', 663218), (6614, '2025-01-08 17:00:00.000', 'pending', 663207), (6614, '2025-01-08 17:00:00.000', 'pending', 663210), (6614, '2025-01-08 17:00:00.000', 'pending', 663224), (6614, '2025-01-08 17:00:00.000', 'pending', 663228), (6614, '2025-01-08 17:00:00.000', 'pending', 663201), (6614, '2025-01-08 17:00:00.000', 'pending', 663230), (6614, '2025-01-08 17:00:00.000', 'pending', 663202), (6614, '2025-01-08 17:00:00.000', 'pending', 663226), (6614, '2025-01-08 17:00:00.000', 'pending', 663219), (6614, '2025-01-08 17:00:00.000', 'pending', 663229), (6614, '2025-01-08 17:00:00.000', 'pending', 663136), (6614, '2025-01-08 17:00:00.000', 'pending', 663233), (6614, '2025-01-08 17:00:00.000', 'pending', 663100), (6614, '2025-01-08 17:00:00.000', 'pending', 663227), (6614, '2025-01-08 17:00:00.000', 'pending', 663159), (6614, '2025-01-08 17:00:00.000', 'pending', 663225), (6614, '2025-01-08 17:00:00.000', 'pending', 663236), (6614, '2025-01-08 17:00:00.000', 'pending', 663232), (6614, '2025-01-08 17:00:00.000', 'pending', 663241), (6614, '2025-01-08 17:00:00.000', 'pending', 663231), (6614, '2025-01-08 17:00:00.000', 'pending', 663242), (6614, '2025-01-08 17:00:00.000', 'pending', 663234), (6614, '2025-01-08 17:00:00.000', 'pending', 663246), (6614, '2025-01-08 17:00:00.000', 'pending', 663235), (6614, '2025-01-08 17:00:00.000', 'pending', 663243), (6614, '2025-01-08 17:00:00.000', 'pending', 663247), (6614, '2025-01-08 17:00:00.000', 'pending', 663251), (6614, '2025-01-08 17:00:00.000', 'pending', 663244), (6614, '2025-01-08 17:00:00.000', 'pending', 663240), (6614, '2025-01-08 17:00:00.000', 'pending', 663245), (6614, '2025-01-08 17:00:00.000', 'pending', 663260), (6614, '2025-01-08 17:00:00.000', 'pending', 663263), (6614, '2025-01-08 17:00:00.000', 'pending', 663248), (6614, '2025-01-08 17:00:00.000', 'pending', 663239), (6614, '2025-01-08 17:00:00.000', 'pending', 663237), (6614, '2025-01-08 17:00:00.000', 'pending', 663255), (6614, '2025-01-08 17:00:00.000', 'pending', 663257), (6614, '2025-01-08 17:00:00.000', 'pending', 663254), (6614, '2025-01-08 17:00:00.000', 'pending', 663267), (6614, '2025-01-08 17:00:00.000', 'pending', 663
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864509 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864509 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864509, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 10 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5271, OS thread handle 70398094275920, query id 2330229136 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6614, '2025-01-08 17:00:00.000', 'pending', 663183), (6614, '2025-01-08 17:00:00.000', 'pending', 663191), (6614, '2025-01-08 17:00:00.000', 'pending', 663200), (6614, '2025-01-08 17:00:00.000', 'pending', 663208), (6614, '2025-01-08 17:00:00.000', 'pending', 663199), (6614, '2025-01-08 17:00:00.000', 'pending', 663213), (6614, '2025-01-08 17:00:00.000', 'pending', 663189), (6614, '2025-01-08 17:00:00.000', 'pending', 663209), (6614, '2025-01-08 17:00:00.000', 'pending', 663214), (6614, '2025-01-08 17:00:00.000', 'pending', 663212), (6614, '2025-01-08 17:00:00.000', 'pending', 663217), (6614, '2025-01-08 17:00:00.000', 'pending', 663216), (6614, '2025-01-08 17:00:00.000', 'pending', 663220), (6614, '2025-01-08 17:00:00.000', 'pending', 663218), (6614, '2025-01-08 17:00:00.000', 'pending', 663207), (6614, '2025-01-08 17:00:00.000', 'pending', 663210), (6614, '2025-01-08 17:00:00.000', 'pending', 663224), (6614, '2025-01-08 17:00:00.000', 'pending', 663228), (6614, '2025-01-08 17:00:00.000', 'pending', 663201), (6614, '2025-01-08 17:00:00.000', 'pending', 663230), (6614, '2025-01-08 17:00:00.000', 'pending', 663202), (6614, '2025-01-08 17:00:00.000', 'pending', 663226), (6614, '2025-01-08 17:00:00.000', 'pending', 663219), (6614, '2025-01-08 17:00:00.000', 'pending', 663229), (6614, '2025-01-08 17:00:00.000', 'pending', 663136), (6614, '2025-01-08 17:00:00.000', 'pending', 663233), (6614, '2025-01-08 17:00:00.000', 'pending', 663100), (6614, '2025-01-08 17:00:00.000', 'pending', 663227), (6614, '2025-01-08 17:00:00.000', 'pending', 663159), (6614, '2025-01-08 17:00:00.000', 'pending', 663225), (6614, '2025-01-08 17:00:00.000', 'pending', 663236), (6614, '2025-01-08 17:00:00.000', 'pending', 663232), (6614, '2025-01-08 17:00:00.000', 'pending', 663241), (6614, '2025-01-08 17:00:00.000', 'pending', 663231), (6614, '2025-01-08 17:00:00.000', 'pending', 663242), (6614, '2025-01-08 17:00:00.000', 'pending', 663234), (6614, '2025-01-08 17:00:00.000', 'pending', 663246), (6614, '2025-01-08 17:00:00.000', 'pending', 663235), (6614, '2025-01-08 17:00:00.000', 'pending', 663243), (6614, '2025-01-08 17:00:00.000', 'pending', 663247), (6614, '2025-01-08 17:00:00.000', 'pending', 663251), (6614, '2025-01-08 17:00:00.000', 'pending', 663244), (6614, '2025-01-08 17:00:00.000', 'pending', 663240), (6614, '2025-01-08 17:00:00.000', 'pending', 663245), (6614, '2025-01-08 17:00:00.000', 'pending', 663260), (6614, '2025-01-08 17:00:00.000', 'pending', 663263), (6614, '2025-01-08 17:00:00.000', 'pending', 663248), (6614, '2025-01-08 17:00:00.000', 'pending', 663239), (6614, '2025-01-08 17:00:00.000', 'pending', 663237), (6614, '2025-01-08 17:00:00.000', 'pending', 663255), (6614, '2025-01-08 17:00:00.000', 'pending', 663257), (6614, '2025-01-08 17:00:00.000', 'pending', 663254), (6614, '2025-01-08 17:00:00.000', 'pending', 663267), (6614, '2025-01-08 17:00:00.000', 'pending', 663
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864509 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864509 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
TRANSACTION 2344864510, ACTIVE 0 sec inserting
mysql tables in use 1, locked 1
LOCK WAIT 8 lock struct(s), heap size 1128, 5 row lock(s)
MySQL thread id 5269, OS thread handle 70398064043344, query id 2330229140 172.30.7.141 overwatch update
insert ignore into `campaign_sends` (`campaign_id`, `send_at`, `state`, `user_id`) values (6613, '2025-01-08 01:00:00.000', 'pending', 704132), (6613, '2025-01-08 01:00:00.000', 'pending', 704176), (6613, '2025-01-08 01:00:00.000', 'pending', 704156), (6613, '2025-01-08 01:00:00.000', 'pending', 704164), (6613, '2025-01-08 01:00:00.000', 'pending', 704158), (6613, '2025-01-08 01:00:00.000', 'pending', 704154), (6613, '2025-01-08 01:00:00.000', 'pending', 704131), (6613, '2025-01-08 01:00:00.000', 'pending', 704174), (6613, '2025-01-08 01:00:00.000', 'pending', 704165), (6613, '2025-01-08 01:00:00.000', 'pending', 704181), (6613, '2025-01-08 01:00:00.000', 'pending', 704166), (6613, '2025-01-08 01:00:00.000', 'pending', 704169), (6613, '2025-01-08 01:00:00.000', 'pending', 704160), (6613, '2025-01-08 01:00:00.000', 'pending', 704163), (6613, '2025-01-08 01:00:00.000', 'pending', 704173), (6613, '2025-01-08 01:00:00.000', 'pending', 704177), (6613, '2025-01-08 01:00:00.000', 'pending', 704170), (6613, '2025-01-08 01:00:00.000', 'pending', 704171), (6613, '2025-01-08 01:00:00.000', 'pending', 704172), (6613, '2025-01-08 01:00:00.000', 'pending', 704188), (6613, '2025-01-08 01:00:00.000', 'pending', 704175), (6613, '2025-01-08 01:00:00.000', 'pending', 704161), (6613, '2025-01-08 01:00:00.000', 'pending', 704187), (6613, '2025-01-08 01:00:00.000', 'pending', 704184), (6613, '2025-01-08 01:00:00.000', 'pending', 704193), (6613, '2025-01-08 01:00:00.000', 'pending', 704182), (6613, '2025-01-08 01:00:00.000', 'pending', 704155), (6613, '2025-01-08 01:00:00.000', 'pending', 704152), (6613, '2025-01-08 01:00:00.000', 'pending', 704178), (6613, '2025-01-08 01:00:00.000', 'pending', 704179), (6613, '2025-01-08 01:00:00.000', 'pending', 704153), (6613, '2025-01-08 01:00:00.000', 'pending', 704185), (6613, '2025-01-08 01:00:00.000', 'pending', 704195), (6613, '2025-01-08 01:00:00.000', 'pending', 704186), (6613, '2025-01-08 01:00:00.000', 'pending', 704194), (6613, '2025-01-08 01:00:00.000', 'pending', 704190), (6613, '2025-01-08 01:00:00.000', 'pending', 704183), (6613, '2025-01-08 01:00:00.000', 'pending', 704198), (6613, '2025-01-08 01:00:00.000', 'pending', 704180), (6613, '2025-01-08 01:00:00.000', 'pending', 704203), (6613, '2025-01-08 01:00:00.000', 'pending', 704191), (6613, '2025-01-08 01:00:00.000', 'pending', 704200), (6613, '2025-01-08 01:00:00.000', 'pending', 704196), (6613, '2025-01-08 01:00:00.000', 'pending', 704214), (6613, '2025-01-08 01:00:00.000', 'pending', 704197), (6613, '2025-01-08 01:00:00.000', 'pending', 704199), (6613, '2025-01-08 01:00:00.000', 'pending', 704162), (6613, '2025-01-08 01:00:00.000', 'pending', 704189), (6613, '2025-01-08 01:00:00.000', 'pending', 704192), (6613, '2025-01-08 01:00:00.000', 'pending', 704201), (6613, '2025-01-08 01:00:00.000', 'pending', 704204), (6613, '2025-01-08 01:00:00.000', 'pending', 704205), (6613, '2025-01-08 01:00:00.000', 'pending', 704202), (6613, '2025-01-08 01:00:00.000', 'pending', 704
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864510 lock_mode X
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
RECORD LOCKS space id 49 page no 193338 n bits 88 index PRIMARY of table `parcelvoy`.`campaign_sends` trx id 2344864510 lock_mode X insert intention waiting
Record lock, heap no 1 PHYSICAL RECORD: n_fields 1; compact format; info bits 0
0: len 8; hex 73757072656d756d; asc supremum;;
----------------------- END OF LOG ----------------------

leobarcellos avatar Jan 07 '25 16:01 leobarcellos

I just reduced the chunk size from 100 to 25 on CampaignService:generateSendList, and also on CampaignEnqueueSendsJobs:handler.

I've also added a pool config on database: pool: { min: 2, max: 25 } -- since default is max:10.

Gonna continue watching deadlocks.

leobarcellos avatar Jan 07 '25 21:01 leobarcellos