Page MenuHomePhabricator

Investigate mariadb 10.6 performance regression during spikes/high load
Closed, ResolvedPublic

Description

We've noticed that during high loads scenarios (ie: cache busting attacks) the 10.6 hosts are the ones that suffer the most and the symptoms were always the same: high number of connections running and lag. Part of the investigation was done at T308380: 2022-05-14 Databases but let's use this task to coordinate and simulate scenarios.

After all the 10.6 testing and tweaking the configuration difference was:

41 config differences
Variable                  db1118                    db1132
========================= ========================= =========================
basedir                   /opt/wmf-mariadb104       /opt/wmf-mariadb106
binlog_format             STATEMENT                 ROW
character_set_system      utf8                      utf8mb3
character_sets_dir        /opt/wmf-mariadb104/sh... /opt/wmf-mariadb106/sh...
expire_logs_days          30                        30.000000
general_log_file          db1118.log                db1132.log
gtid_binlog_pos           171970572-171970572-26... 171970572-171970572-26...
gtid_binlog_state         171970572-171970572-26... 171970572-171970572-26...
gtid_current_pos          0-171970637-5484646134... 0-171970637-5484646134...
gtid_domain_id            171970572                 171970595
gtid_slave_pos            0-171970637-5484646134... 0-171970637-5484646134...
hostname                  db1118                    db1132
innodb_buffer_pool_size   405874409472              404800667648
innodb_lru_scan_depth     1024                      1536
innodb_max_dirty_pages... 75.000000                 90.000000
innodb_stats_transient... 16                        8
innodb_version            10.4.22                   10.6.8
log_bin_basename          /srv/sqldata/db1118-bin   /srv/sqldata/db1132-bin
log_bin_index             /srv/sqldata/db1118-bi... /srv/sqldata/db1132-bi...
max_recursive_iterations  4294967295                1000
old_mode                                            UTF8_IS_UTF8MB3
optimizer_switch          index_merge=on,index_m... index_merge=on,index_m...
performance_schema_max... 50                        80
performance_schema_max... 3077                      -1
performance_schema_max... 200                       210
performance_schema_max... 40                        50
performance_schema_max... 202                       222
performance_schema_max... 4000                      -1
performance_schema_set... 100                       -1
performance_schema_set... 100                       -1
performance_schema_use... 100                       -1
pid_file                  /srv/sqldata/db1118.pid   /srv/sqldata/db1132.pid
plugin_dir                /opt/wmf-mariadb104/li... /opt/wmf-mariadb106/li...
report_host               db1118.eqiad.wmnet        db1132.eqiad.wmnet
server_id                 171970572                 171970595
slave_parallel_mode       conservative              optimistic
slow_query_log_file       db1118-slow.log           db1132-slow.log
version                   10.4.22-MariaDB-log       10.6.8-MariaDB-log
version_source_revision   a19ab67318760f8f155ef7... b2187662bcba12b66667bc...
version_ssl_library       OpenSSL 1.1.1n  15 Mar... OpenSSL 1.1.1k  25 Mar...
wsrep_node_name           db1118                    db1132

Most of the configuration differences didn't seem relevant to cause this sort of behaviour.
However, they were changed to 100% mimic what we currently have on 10.4 with the following changes:

#  for i in db1111 db1132 db1127 db1137 db1143; do echo $i; db-mysql $i -e "set global innodb_stats_transient_sample_pages = 16" ; done
db1111
db1132
db1127
db1137
db1143


#  for i in db1111 db1132 db1127 db1137 db1143; do echo $i; db-mysql $i -e "set global innodb_lru_scan_depth = 1024" ; done
db1111
db1132
db1127
db1137
db1143

The optimizer switch differences:
10.6:

optimizer_switch	index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,index_merge_sort_intersection=off,engine_condition_pushdown=off,index_condition_pushdown=on,derived_merge=on,derived_with_keys=on,firstmatch=on,loosescan=on,materialization=on,in_to_exists=on,semijoin=on,partial_match_rowid_merge=on,partial_match_table_scan=on,subquery_cache=on,mrr=on,mrr_cost_based=on,mrr_sort_keys=on,outer_join_with_cache=on,semijoin_with_cache=on,join_cache_incremental=on,join_cache_hashed=on,join_cache_bka=on,optimize_join_buffer_size=on,table_elimination=on,extended_keys=on,exists_to_in=on,orderby_uses_equalities=on,condition_pushdown_for_derived=on,split_materialized=on,condition_pushdown_for_subquery=on,rowid_filter=off,condition_pushdown_from_having=on,not_null_range_scan=off

The main difference is 10.6 having not_null_range_scan=off
10.4

optimizer_switch	index_merge=on,index_merge_union=on,index_merge_sort_union=on,index_merge_intersection=on,index_merge_sort_intersection=off,engine_condition_pushdown=off,index_condition_pushdown=on,derived_merge=on,derived_with_keys=on,firstmatch=on,loosescan=on,materialization=on,in_to_exists=on,semijoin=on,partial_match_rowid_merge=on,partial_match_table_scan=on,subquery_cache=on,mrr=on,mrr_cost_based=on,mrr_sort_keys=on,outer_join_with_cache=on,semijoin_with_cache=on,join_cache_incremental=on,join_cache_hashed=on,join_cache_bka=on,optimize_join_buffer_size=on,table_elimination=on,extended_keys=on,exists_to_in=on,orderby_uses_equalities=on,condition_pushdown_for_derived=on,split_materialized=on,condition_pushdown_for_subquery=on,rowid_filter=off,condition_pushdown_from_having=on
That option, as can be seen, is disabled by default anyways (https://mariadb.com/kb/en/not_null_range_scan-optimization/) and it is new on 10.5 (and higher) so it should be noop in this case.

10.6 full my.cnf: https://phabricator.wikimedia.org/P31391

The other changes were made on puppet already.
The hist of hosts we have serving in sX sections are:

s1: db1132
s4: db1143
s7: db1127
s8: db1111

We have others on esX, x1 and pc1 but those are not expected to have issues for now, as the load there is a lot smaller.

I would like to request @jcrespo and @Ladsgroup to help with this stress testing to be able to simulate load and especially mediawiki load to try to catch what the issue could be.

Update - September 2022:
Most likely caused by:

The fix: https://github.com/MariaDB/server/commit/92032499874259bae7455130958ea7f38c4d53a3

Related Objects

Event Timeline

There are a very large number of changes, so older changes are hidden. Show Older Changes

Mentioned in SAL (#wikimedia-operations) [2022-07-06T07:55:55Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'db1132 (re)pooling @ 25%: Test done (T311106)', diff saved to https://phabricator.wikimedia.org/P30888 and previous config saved to /var/cache/conftool/dbconfig/20220706-075555-ladsgroup.json

Mentioned in SAL (#wikimedia-operations) [2022-07-06T08:10:36Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'db1135 (re)pooling @ 75%: Test done (T311106)', diff saved to https://phabricator.wikimedia.org/P30892 and previous config saved to /var/cache/conftool/dbconfig/20220706-081036-ladsgroup.json

Mentioned in SAL (#wikimedia-operations) [2022-07-06T08:10:59Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'db1132 (re)pooling @ 75%: Test done (T311106)', diff saved to https://phabricator.wikimedia.org/P30893 and previous config saved to /var/cache/conftool/dbconfig/20220706-081059-ladsgroup.json

Mentioned in SAL (#wikimedia-operations) [2022-07-06T08:25:40Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'db1135 (re)pooling @ 100%: Test done (T311106)', diff saved to https://phabricator.wikimedia.org/P30897 and previous config saved to /var/cache/conftool/dbconfig/20220706-082540-ladsgroup.json

Mentioned in SAL (#wikimedia-operations) [2022-07-06T08:26:03Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'db1132 (re)pooling @ 100%: Test done (T311106)', diff saved to https://phabricator.wikimedia.org/P30898 and previous config saved to /var/cache/conftool/dbconfig/20220706-082603-ladsgroup.json

Disable P_S on all the sX hosts that run 10.6

Note disabling P_S on production hosts will break the query killer.

Disable P_S on all the sX hosts that run 10.6

Note disabling P_S on production hosts will break the query killer.

Yep, I am aware. I am trying to see if we can get some sample data during the incidents where we've seen the hosts suffer the most.

After having a chat with Jaime:

  • db1132 got P_S enabled but with performance-schema-instrument='memory/%=OFF'

Mentioned in SAL (#wikimedia-operations) [2022-07-06T13:17:15Z] <ladsgroup@cumin1001> dbctl commit (dc=all): 'Depool db1132 (T311106)', diff saved to https://phabricator.wikimedia.org/P30930 and previous config saved to /var/cache/conftool/dbconfig/20220706-131715-ladsgroup.json

Entirely disabling performance_schema on 10.6 got 10.6 and 10.4 (with P_S ON) to die at the same time (more or less) around 700 connections.

More tests were done with performance schema enabled on 10.6 but some instrumentation disabled:

  • db1132 got P_S enabled but with performance-schema-instrument='memory/%=OFF'

This produced: https://people.wikimedia.org/~ladsgroup/mariadb_flamegraphs/superbusy-with-p_s.mem.106.svg
Connections reached 600 or so before dying

Second test was disabling thread_instrumentation:

root@db1132.eqiad.wmnet[(none)]> UPDATE performance_schema.setup_consumers
    -> SET ENABLED = 'NO' WHERE NAME LIKE 'thread_instrumentation';
Query OK, 1 row affected (0.000 sec)
Rows matched: 1  Changed: 1  Warnings: 0

That got the server to die as well after 600 connections, so looks like there was not much difference between disabling memory instrumentation and thread_pool instrumentation.

@Ladsgroup can you hit db1132 again?

root@db1132.eqiad.wmnet[(none)]> UPDATE performance_schema.setup_consumers SET ENABLED = 'NO' WHERE NAME LIKE 'statements_digest';
Query OK, 1 row affected (0.001 sec)
Rows matched: 1  Changed: 1  Warnings: 0

Died after 50 batches (around 300K queries, 30k connections)

Still in 600 concurrent connections (not 700)

db1132 is not getting replication. Is that intentional?

No, that's probably from the overload a few days ago that made it stall (all the queries are there hanging). Just fixed it. I have started it with P_S disabled this time.

So a few days ago db1132 died during one of the incidents. It had PS enabled and:

performance-schema-instrument='memory/%=OFF'
UPDATE performance_schema.setup_consumers
    -> SET ENABLED = 'NO' WHERE NAME LIKE 'thread_instrumentation';

So both memory and instrumentation disabled, yet, we saw the same behaviour as usual, it was the only host suffering that much.
For now I have disabled PS and will leave the host depooled until next Monday,

db1111 had issues a few hours ago and it had performance schema disabled:

mysql:root@localhost [(none)]> show global variables like 'performance_schema';
+--------------------+-------+
| Variable_name      | Value |
+--------------------+-------+
| performance_schema | OFF   |
+--------------------+-------+
1 row in set (0.001 sec)

That also means that query killer wasn't able to help killing all the queries during the overload.

Mentioned in SAL (#wikimedia-operations) [2022-07-18T09:19:57Z] <marostegui@cumin1001> dbctl commit (dc=all): 'Depool db1111 T311106', diff saved to https://phabricator.wikimedia.org/P31295 and previous config saved to /var/cache/conftool/dbconfig/20220718-091957-root.json

Change 815218 had a related patch set uploaded (by Marostegui; author: Marostegui):

[operations/software@master] control-mariadb-10.6-bullseye: Drop libaio1

https://gerrit.wikimedia.org/r/815218

Change 815218 merged by jenkins-bot:

[operations/software@master] control-mariadb-10.6-bullseye: Drop libaio1

https://gerrit.wikimedia.org/r/815218

Report on the latest news.
We have engaged in very useful conversations with MariaDB Foundation (thanks!) and they're trying to help getting this issue narrowed.
For now the path of action:

  • As we speak we are compiling our 10.6.8 packages with uring support and dropped libaio for now. Hopefully to be finished today.
  • Once that is done we'll install them on the sX hosts running 10.6 and re-run the load scripts. Leave the host running for a few days with just normal replication to make sure they are stable.
  • If the above goes well, we'll repool db1132 (s1) and db1111 (s8) with normal LB weight and with slow query log enabled (to capture queries slower than 30 seconds).
  • If we run into live issues again, we can see if 10.6 hosts behave better than before and also explore what was captured on the slow query log during the incident. There are some concerns about maybe the optimizer behaving unexpectedly after getting some wrong stats/data during the load spikes.

db1132 got the new 10.6.8 package with liburing:

root@db1132:/opt/wmf-mariadb106/bin# ldd /opt/wmf-mariadb106/bin/mysqld | grep uring
	liburing.so.1 => /lib/x86_64-linux-gnu/liburing.so.1 (0x00007fa587b91000)

This is the old package still on db1111:

root@db1111:~# ldd /opt/wmf-mariadb106/bin/mysqld | grep uring
root@db1111:~#

I tried flamegraph on the host again today.

With 500* concurrent threads where it basically never stops accepting connections, we have this: https://people.wikimedia.org/~ladsgroup/mariadb_flamegraphs/alittlebusy-july-20.106.svg

With 600* concurrent threads and while it was partially responding and partially refusing connections, we have this: https://people.wikimedia.org/~ladsgroup/mariadb_flamegraphs/superbusy-july-20.106.svg

If you've still got the perf base of the flamegraph, is a possible to get

perf report --no-children --stdio -i input.pef

Sorry it took me a bit to get it done:

I was checking if you could produce a svg flamegraph from perf report, I couldn't find anything but this is already human-friendly.

I have installed the new package also on db1111 (s8) and db1127 (s7), currently depooled. If all goes fine, I will pool them back on Tuesday along with db1132 (s1)

Looking into how it might be possible to grab stack traces for the next stall if it occurs.

sudo -u mysql gcore $(pidof mariadbd)

As a gdb wrapper it saves it as core.$pid regardless of the sysctl kernel.core_pattern

This should at least separate the capture and the analysis of:

gdb --batch --eval-command="thread apply all bt  -frame-arguments all full" /usr/sbin/mariadbd core* > mariadb_full_bt_all_threads.txt

@Ladsgroup thanks for the perf recordings. I don't know of a good interactive measure. I'm sorry to say I couldn't see anything particularly insightful on them.

https://github.com/Netflix/flamescope is about the only interactive measure, but there's a small assumption that it covers a periods you want to focus narrowly on. (even 1 HZ sampling seems a little to much to maintain on your thread count).

I haven't though of any other good recordings Maybe with a backtrace offering some insight a`bpftrace` program focusing on a specific area might be possible to construct.

I have enabled slow query log to get queries slower than 30 seconds on db1132 (s1) and db1111 (s8) and I am going to repool them now with full weight.

We just had another issue and db1132 (10.6) was the only one affected again. I will scan thru slow queries tomorrow EU morning and see what we got.

Are you sure db1111 wasn't affected? While it didn't loose grafana plots there are some correlations (and some anti-correlations) in the observed behaviours.

I looked at the db1132 and db1111 grafana for the incident.

Correlations between the previous db1132 incident and db1111 this time.

  • A drop in queries/questions per second. Followed by
  • an immediate drop in new connections (dip less obvious on log scale, but fairly significant)
  • an immediate drop the the hander stats (the averaging makes it appear gradual, but if you take away the averaging it is sudden)
  • connection error, delayed aborted clients on previous db1132 incident, but db1111 almost immediately had the killed connections (perf schema kill active?)
  • the queries/questions per second almost recovered
  • then it stopped, depooled or otherwise?

What is different:

  • db1111 had drop of 10 minutes on the Write Query Stats being mostly 0
  • db1111 had its handler statistic recover
  • innodb flushing cycle if different on all 3, and none had active innodb flushing during the period.
  • prev db1132 had a drop in thread connected/processlist, this event db1111 and db1132 increased (despite kills/aborts happening)
  • db1111 appeared to have a normal 1-6 queries in the status of 'sending data', while previously db1132 was at 0. current db1132 incident wasn't measured.

I see at the time of the previous db1132 incident db1111 was depooled.

So my working assumption is that given the proximity of these two events on different servers maybe a replication event triggered this, and possible in conjunction with and an active reading load.

So what would be useful is:

  • process list about the time db1132 started to kill off events
  • show engine innodb status, to see if there's some pool based locks resulting in dropping of throughput.
  • gdb backtrace

db1111 wasn't affected by this issue. It was only affecting s1 (english wikipedia) and db1111 lives in s8 (wikidata). We depooled it just in case, to make sure we had a quiet night.
db1132 replication wasn't stopped at all, but the server was left as it was now, and it shows full stall even now that is depooled. Depooling it fixed the issue and the server is at this current state of its connections pool:

1Id User Host db Command Time State Info Progress
23 event_scheduler localhost NULL Daemon 748440 Waiting for next activation NULL 0.000
37 system user NULL Slave_IO 748440 Waiting for master to send event NULL 0.000
48 system user enwiki Slave_SQL 32076 Update INSERT /* MediaWiki\\User\\UserOptionsManager::saveOptionsInternal */ IGNORE INTO `user_properties` (up_user,up_property,up_value) VALUES (44262714,'growthexperiments-homepage-se-ores-topic-filters','[\\"biography\\",\\"women\\",\\"business-and-economics\\",\\"education\\",\\"food-and-drink\\",\\"history\\",\\"military-and-warfare\\",\\"philosophy-and-religion\\",\\"politics-and-government\\",\\"society\\",\\"transportation\\",\\"biology\\",\\"chemistry\\",\\"computers-and-internet\\",\\"earth-and-environment\\",\\"engineering\\",\\"general-science\\",\\"mathematics\\",\\"medicine-and-health\\",\\"physics\\",\\"technology\\"]') 0.000
5119629918 wikiuser202206 10.64.32.54:33680 enwiki Killed 32098 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles' 0.000
6119629920 wikiuser202206 10.64.48.205:34822 enwiki Killed 32098 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles' 0.000
7119630577 wikiuser202206 10.64.48.223:44614 enwiki Killed 32097 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles' 0.000
8119651554 wikiuser202206 10.64.48.210:48894 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ipigott' 0.000
9119651582 wikiuser202206 10.64.0.11:52860 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GuccizBud' 0.000
10119651824 wikiuser202206 10.64.16.151:50358 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot' 0.000
11119651840 wikiuser202206 10.64.32.45:57832 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JustinBoy203' 0.000
12119651846 wikiuser202206 10.64.48.226:33358 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Atchom' 0.000
13119651865 wikiuser202206 10.64.16.160:58066 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl' 0.000
14119651867 wikiuser202206 10.64.0.155:35240 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Smasongarrison' 0.000
15119651744 wikiuser202206 10.64.48.213:58620 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'DannyS712' 0.000
16119651906 wikiuser202206 10.64.32.40:44650 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'AKA Casey Rollins' 0.000
17119651944 wikiuser202206 10.64.48.206:53428 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bloodyboppa' 0.000
18119651979 wikiuser202206 10.64.0.59:51292 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Kailash29792' 0.000
19119651980 wikiuser202206 10.64.48.199:48466 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 94871 0.000
20119652006 wikiuser202206 10.64.48.207:40492 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4521552 0.000
21119652012 wikiuser202206 10.64.48.196:56412 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Pieces4lifewater' 0.000
22119652013 wikiuser202206 10.64.32.127:39268 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = '142rrdhthms' 0.000
23119652020 wikiuser202206 10.64.0.193:39602 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot' 0.000
24119652031 wikiuser202206 10.64.32.126:35994 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BigLordFlash' 0.000
25119652033 wikiuser202206 10.64.48.213:58884 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III' 0.000
26119652036 wikiuser202206 10.64.16.151:50550 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ffffrr' 0.000
27119652053 wikiuser202206 10.64.0.195:38412 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16367662 0.000
28119652060 wikiuser202206 10.64.0.59:51364 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 12491934 0.000
29119652071 wikiuser202206 10.64.32.34:60436 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Doniago' 0.000
30119652075 wikiuser202206 10.64.48.225:46732 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cyberbot I' 0.000
31119652061 wikiuser202206 10.64.32.127:39294 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2359310 0.000
32119651934 wikiuser202206 10.64.48.222:34428 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sanmeet K Sethi' 0.000
33119652080 wikiuser202206 10.64.0.160:49882 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'G0mx' 0.000
34119652092 wikiuser202206 10.64.16.216:35226 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1672698 0.000
35119652095 wikiuser202206 10.64.48.202:42828 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Vicky1830' 0.000
36119652111 wikiuser202206 10.64.0.61:33012 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'AwardShowFan123' 0.000
37119652127 wikiuser202206 10.64.48.200:56426 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 36901765 0.000
38119652133 wikiuser202206 10.64.48.194:52058 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Trappist the monk' 0.000
39119652135 wikiuser202206 10.64.16.154:60462 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sattar Mamadov' 0.000
40119652137 wikiuser202206 10.64.48.196:56530 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ResolutionsPerMinute' 0.000
41119652143 wikiuser202206 10.64.0.11:53406 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Monkbot' 0.000
42119652146 wikiuser202206 10.64.16.167:33074 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Qwerfjkl (bot)' 0.000
43119652150 wikiuser202206 10.64.0.94:51738 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Knock97' 0.000
44119652167 wikiuser202206 10.64.16.154:60548 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'THOMASG 7623' 0.000
45119652098 wikiuser202206 10.64.0.60:45886 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sqldf03' 0.000
46119652070 wikiuser202206 10.64.16.41:58450 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SUBHAJIT SANYAL(DEEP)' 0.000
47119652110 wikiuser202206 10.64.16.211:52408 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Tayyab69' 0.000
48119652102 wikiuser202206 10.64.0.195:38474 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13467261 0.000
49119652178 wikiuser202206 10.64.32.52:37990 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)' 0.000
50119652180 wikiuser202206 10.64.48.203:57322 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 41007477 0.000
51119652201 wikiuser202206 10.64.48.193:37114 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao' 0.000
52119652250 wikiuser202206 10.64.32.132:59144 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13467261 0.000
53119652164 wikiuser202206 10.64.0.69:55302 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Valehiro' 0.000
54119652231 wikiuser202206 10.64.32.46:60268 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Lagelander' 0.000
55119652121 wikiuser202206 10.64.32.52:37816 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Norafares' 0.000
56119652125 wikiuser202206 10.64.48.202:42936 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655 0.000
57119652144 wikiuser202206 10.64.32.49:39866 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl' 0.000
58119652255 wikiuser202206 10.64.32.125:37890 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'محمد سلامات الدمنهوري' 0.000
59119652244 wikiuser202206 10.64.16.166:46748 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40811901 0.000
60119652181 wikiuser202206 10.64.0.9:39830 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Facts707' 0.000
61119652300 wikiuser202206 10.64.32.130:41398 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Deidonata' 0.000
62119652325 wikiuser202206 10.64.48.211:37410 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Hiddenstranger' 0.000
63119652365 wikiuser202206 10.64.32.127:39492 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4182662 0.000
64119652314 wikiuser202206 10.64.32.47:60232 enwiki Killed 32076 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40689307 0.000
65119652284 wikiuser202206 10.64.32.124:40584 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Immanuelle' 0.000
66119652378 wikiuser202206 10.64.32.54:56112 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::initFromQueryResult */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Fembelle' 0.000
67119652382 wikiuser202206 10.64.48.215:53192 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Glorious Engine' 0.000
68119652423 wikiuser202206 10.64.48.213:59176 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dale Arnett' 0.000
69119652469 wikiuser202206 10.64.48.194:52400 enwiki Killed 32076 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl' 0.000
70119652474 wikiuser202206 10.64.16.213:53550 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dsp13' 0.000
71119652522 wikiuser202206 10.64.16.161:54550 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 38913931 0.000
72119652372 wikiuser202206 10.64.32.121:48888 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BD2412' 0.000
73119652521 wikiuser202206 10.64.32.40:45110 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4758577 0.000
74119652541 wikiuser202206 10.64.48.214:57188 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot' 0.000
75119652625 wikiuser202206 10.64.32.66:37558 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Joannagorzedowska' 0.000
76119652630 wikiuser202206 10.64.32.49:40314 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2243886 0.000
77119652575 wikiuser202206 10.64.16.161:54736 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 27446209 0.000
78119652525 wikiuser202206 10.64.32.59:41904 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WE7274' 0.000
79119652576 wikiuser202206 10.64.0.11:53854 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1189543 0.000
80119652653 wikiuser202206 10.64.32.130:41800 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Alansohn' 0.000
81119652682 wikiuser202206 10.64.32.57:54596 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Simandabe' 0.000
82119652718 wikiuser202206 10.64.48.210:49692 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43217253 0.000
83119652591 wikiuser202206 10.64.48.209:56332 enwiki Query 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 44130269 0.000
84119652661 wikiuser202206 10.64.16.196:57630 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WE7274' 0.000
85119652629 wikiuser202206 10.64.32.126:36698 enwiki Query 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1005449 0.000
86119652687 wikiuser202206 10.64.32.34:32808 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Loafiewa' 0.000
87119652747 wikiuser202206 10.64.48.217:53586 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cyberbot II' 0.000
88119652746 wikiuser202206 10.64.0.60:46480 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bawanio' 0.000
89119652721 wikiuser202206 10.64.48.207:41168 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Volcanoguy' 0.000
90119652734 wikiuser202206 10.64.0.59:51892 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bermicourt' 0.000
91119652899 wikiuser202206 10.64.32.35:49716 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot' 0.000
92119652813 wikiuser202206 10.64.32.42:46410 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 577139 0.000
93119652763 wikiuser202206 10.64.0.94:52360 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao' 0.000
94119652773 wikiuser202206 10.64.16.194:37452 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Walrus Ji' 0.000
95119652790 wikiuser202206 10.64.32.66:37758 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'OGBC1992' 0.000
96119652915 wikiuser202206 10.64.0.60:46656 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'EEJB' 0.000
97119652877 wikiuser202206 10.64.32.126:36926 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 596947 0.000
98119653008 wikiuser202206 10.64.32.48:52566 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dinnerbrone' 0.000
99119652879 wikiuser202206 10.64.0.158:45968 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655 0.000
100119652893 wikiuser202206 10.64.48.193:37636 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'We moved to 8.12' 0.000
101119652971 wikiuser202206 10.64.48.192:51074 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'CodeTalker' 0.000
102119652977 wikiuser202206 10.64.32.44:52538 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Rusted AutoParts' 0.000
103119653031 wikiuser202206 10.64.0.92:59184 enwiki Killed 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Jochem van Hees' 0.000
104119653043 wikiuser202206 10.64.0.160:50780 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430 0.000
105119653049 wikiuser202206 10.64.48.215:53648 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430 0.000
106119653079 wikiuser202206 10.64.32.121:49556 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'John of Reading' 0.000
107119652950 wikiuser202206 10.64.48.197:35732 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III' 0.000
108119653039 wikiuser202206 10.64.32.48:52592 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Johnpacklambert' 0.000
109119653046 wikiuser202206 10.64.48.194:53028 enwiki Query 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 49214 0.000
110119652998 wikiuser202206 10.64.16.198:42900 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'THOMASG 7623' 0.000
111119653123 wikiuser202206 10.64.0.94:52884 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot' 0.000
112119653099 wikiuser202206 10.64.48.86:50346 enwiki Query 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43087271 0.000
113119653108 wikiuser202206 10.64.48.226:34338 enwiki Query 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao' 0.000
114119653130 wikiuser202206 10.64.32.34:33384 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40333523 0.000
115119653137 wikiuser202206 10.64.32.42:46684 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430 0.000
116119653154 wikiuser202206 10.64.32.54:58156 enwiki Query 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42487127 0.000
117119653196 wikiuser202206 10.64.32.34:33452 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Mdnavman' 0.000
118119653188 wikiuser202206 10.64.32.42:46734 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 7891 0.000
119119653250 wikiuser202206 10.64.32.125:39426 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 41449807 0.000
120119653251 wikiuser202206 10.64.32.124:41742 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'EvergreenFir' 0.000
121119653272 wikiuser202206 10.64.0.158:47106 enwiki Killed 32075 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655 0.000
122119653303 wikiuser202206 10.64.48.191:45244 enwiki Killed 32075 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot' 0.000
123119653252 wikiuser202206 10.64.16.215:36640 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430 0.000
124119653283 wikiuser202206 10.64.48.200:58984 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43041325 0.000
125119653376 wikiuser202206 10.64.48.193:38188 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Thegeordieman' 0.000
126119653431 wikiuser202206 10.64.32.126:37524 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592 0.000
127119653370 wikiuser202206 10.64.32.66:38386 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Nat965' 0.000
128119653513 wikiuser202206 10.64.48.192:51648 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WikiCleanerBot' 0.000
129119653537 wikiuser202206 10.64.16.215:36884 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592 0.000
130119653540 wikiuser202206 10.64.48.212:55620 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13825260 0.000
131119653403 wikiuser202206 10.64.48.207:41890 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16868519 0.000
132119653414 wikiuser202206 10.64.16.154:34528 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 27077959 0.000
133119653542 wikiuser202206 10.64.48.198:56768 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43846438 0.000
134119653482 wikiuser202206 10.64.0.160:51156 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 6514756 0.000
135119653555 wikiuser202206 10.64.48.80:42350 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Surijeal' 0.000
136119653538 wikiuser202206 10.64.0.60:47170 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 9612106 0.000
137119653624 wikiuser202206 10.64.48.202:45828 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42623903 0.000
138119653559 wikiuser202206 10.64.32.33:34950 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 23637506 0.000
139119653632 wikiuser202206 10.64.48.215:54336 enwiki Killed 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Nightscream' 0.000
140119653633 wikiuser202206 10.64.0.91:59438 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'HazemGM' 0.000
141119653595 wikiuser202206 10.64.32.34:33920 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592 0.000
142119653601 wikiuser202206 10.64.16.168:50042 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 625916 0.000
143119653603 wikiuser202206 10.64.48.209:57274 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Fadesga' 0.000
144119653684 wikiuser202206 10.64.48.211:38846 enwiki Query 32037 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Richard Keatinge' 0.000
145119653823 wikiuser202206 10.64.0.189:47322 enwiki Query 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 35915815 0.000
146119653905 wikiuser202206 10.64.32.40:46174 enwiki Killed 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot' 0.000
147119653911 wikiuser202206 10.64.16.215:37240 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'PrimeBOT' 0.000
148119653932 wikiuser202206 10.64.16.191:39546 enwiki Query 32074 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ClueBot III' 0.000
149119653940 wikiuser202206 10.64.48.214:58486 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 44201641 0.000
150119653949 wikiuser202206 10.64.48.206:55210 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Scorpions13256' 0.000
151119654027 wikiuser202206 10.64.0.91:60090 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'RedBull1984' 0.000
152119654013 wikiuser202206 10.64.0.91:60068 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dewritech' 0.000
153119654088 wikiuser202206 10.64.16.196:33854 enwiki Killed 32074 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 32500805 0.000
154119654104 wikiuser202206 10.64.0.196:51550 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 37213598 0.000
155119654044 wikiuser202206 10.64.48.192:52234 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Mitch Ames' 0.000
156119654103 wikiuser202206 10.64.32.119:57580 enwiki Killed 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Rlink2' 0.000
157119654091 wikiuser202206 10.64.32.119:57564 enwiki Query 31997 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Interstatefive' 0.000
158119654126 wikiuser202206 10.64.0.174:46452 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 37437675 0.000
159119654250 wikiuser202206 10.64.16.160:60372 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Douglas W. Jones' 0.000
160119654261 wikiuser202206 10.64.0.11:55614 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cinderella157' 0.000
161119654204 wikiuser202206 10.64.32.45:60224 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ThadeusOfNazereth' 0.000
162119654339 wikiuser202206 10.64.16.193:54872 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2308770 0.000
163119654358 wikiuser202206 10.64.32.52:43850 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 39138005 0.000
164119654393 wikiuser202206 10.64.32.34:34740 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III' 0.000
165119654510 wikiuser202206 10.64.0.94:54572 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cewbot' 0.000
166119654456 wikiuser202206 10.64.32.49:42292 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 32252448 0.000
167119654524 wikiuser202206 10.64.32.57:59372 enwiki Query 32062 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 38213338 0.000
168119654564 wikiuser202206 10.64.48.193:39672 enwiki Query 32073 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 12338485 0.000
169119654728 wikiuser202206 10.64.16.153:57984 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Philip Cross' 0.000
170119654738 wikiuser202206 10.64.48.196:58758 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1456683 0.000
171119654736 wikiuser202206 10.64.0.9:42494 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Hippo43' 0.000
172119654764 wikiuser202206 10.64.16.167:35686 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 24879752 0.000
173119654862 wikiuser202206 10.64.0.63:41832 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WEEROR' 0.000
174119654840 wikiuser202206 10.64.0.63:41814 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13791663 0.000
175119654007 wikiuser202206 10.64.16.197:50558 enwiki Query 31855 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43301340 0.000
176119654930 wikiuser202206 10.64.0.196:53908 enwiki Query 32073 Statistics SELECT /* GenderCache::doQuery-ApiQueryUsers::execute */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'MalnadachBot' 0.000
177119654898 wikiuser202206 10.64.32.40:47244 enwiki Query 31873 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ibuku' 0.000
178119655034 wikiuser202206 10.64.32.53:49570 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 39035984 0.000
179119655073 wikiuser202206 10.64.48.214:59564 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = '4ever881' 0.000
180119655109 wikiuser202206 10.64.48.212:57310 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ShortDescBot' 0.000
181119655123 wikiuser202206 10.64.16.155:40522 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao' 0.000
182119655132 wikiuser202206 10.64.0.195:41320 enwiki Killed 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Average Portuguese Joe' 0.000
183119655144 wikiuser202206 10.64.32.121:51758 enwiki Killed 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Zodiac009' 0.000
184119655041 wikiuser202206 10.64.32.34:35410 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901 0.000
185119655161 wikiuser202206 10.64.32.113:33624 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BD2412' 0.000
186119655246 wikiuser202206 10.64.48.210:52022 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Robby.is.on' 0.000
187119655248 wikiuser202206 10.64.16.162:37630 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901 0.000
188119655365 wikiuser202206 10.64.0.63:42226 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WikiCleanerBot' 0.000
189119655368 wikiuser202206 10.64.48.206:56600 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bearcat' 0.000
190119655464 wikiuser202206 10.64.48.217:60150 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 15347459 0.000
191119655433 wikiuser202206 10.64.16.167:36266 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 35098811 0.000
192119655474 wikiuser202206 10.64.16.215:38982 enwiki Query 32072 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Orenburg1' 0.000
193119655557 wikiuser202206 10.64.48.80:44130 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Explicit' 0.000
194119655588 wikiuser202206 10.64.48.81:43132 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'The Gnome' 0.000
195119655625 wikiuser202206 10.64.0.194:51848 enwiki Query 32072 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901 0.000
196119655961 wikiuser202206 10.64.32.42:48748 enwiki Query 32071 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 414691 0.000
197119655960 wikiuser202206 10.64.32.34:36130 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Darwin Naz' 0.000
198119653895 wikiuser202206 10.64.16.199:34952 enwiki Killed 31922 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 70274 0.000
199119654336 wikiuser202206 10.64.32.52:43800 enwiki Killed 31979 Statistics SELECT /* GenderCache::doQuery-ApiQueryUsers::execute */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Neutrality' 0.000
200119654580 wikiuser202206 10.64.48.219:37436 enwiki Query 31854 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 11082226 0.000
201119656270 wikiuser202206 10.64.16.214:54722 enwiki Query 32067 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 302229 0.000
202119656242 wikiuser202206 10.64.0.195:42242 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SimLibrarian' 0.000
203119656443 wikiuser202206 10.64.48.211:41420 enwiki Query 32071 Statistics SELECT /* GenderCache::doQuery-MediaWiki\\Minerva\\Skins\\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot' 0.000
204119654818 wikiuser202206 10.64.48.219:37934 enwiki Query 31965 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)' 0.000
205119656680 wikiuser202206 10.64.0.70:45126 enwiki Query 31920 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42940581 0.000
206119655651 wikiuser202206 10.64.48.86:55762 enwiki Query 31972 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)' 0.000
207119656170 wikiuser202206 10.64.16.195:36258 enwiki Query 31973 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)' 0.000
208119655362 wikiuser202206 10.64.48.222:41454 enwiki Query 31879 Statistics SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'DeltaQuadBot' 0.000
209119656599 wikiuser202206 10.64.48.205:59528 enwiki Query 31850 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43631428 0.000
210119656102 wikiuser202206 10.64.16.211:32936 enwiki Query 31950 Sending data SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name IN ('Zl2tpd','75.112.22.74','Michiganwolverinette','WikiUser4020','83.114.220.23','Matthew.Lee4','Ajayvembu','2600:8800:2C16:3600:252E:6F5D:13A0:2B6','4lyferr','Thankgoditssammy','Speedrhysr3','TheEditor7499','Lady Lotus','WeLoveScience','Lewolka','Pleroma','Standing Alone','Opostylov','MrMaster17','Blue Moses','93.211.220.172','ClinicaYSalud','Theothman7','Ryan990110','Palm 2022') 0.000
211119664403 orchestrator 208.80.155.103:51046 NULL Sleep 4 NULL 0.000
212119664040 wikiuser202206 10.64.32.127:32984 enwiki Query 31912 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2359310 0.000
213119664042 wikiuser202206 10.64.48.207:35814 enwiki Query 31867 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4521552 0.000
214119664052 wikiuser202206 10.64.0.195:56644 enwiki Query 31853 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16367662 0.000
215119664049 wikiuser202206 10.64.16.216:56486 enwiki Query 31838 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1672698 0.000
216119665704 wikiuser202206 10.64.32.34:50190 enwiki Query 31882 Statistics SELECT /* MediaWiki\\User\\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40333523 0.000
217119670974 orchestrator 208.80.155.103:53302 NULL Sleep 4 NULL 0.000
218119689275 orchestrator 208.80.155.103:58600 NULL Sleep 4 NULL 0.000
219119724829 root 10.64.32.25:37268 NULL Query 0 starting show full processlist 0.000

The kills there are probably the result of our query killer trying to kill as queries as much as possible but in the end getting stalled to. But the other running queries will never ever finish. We've seen this before.
For context, we have the following query killers enabled:

1root@db1132.eqiad.wmnet[ops]> show events;
2+-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+---------+------------+----------------------+----------------------+--------------------+
3| Db | Name | Definer | Time zone | Type | Execute at | Interval value | Interval field | Starts | Ends | Status | Originator | character_set_client | collation_connection | Database Collation |
4+-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+---------+------------+----------------------+----------------------+--------------------+
5| ops | wmf_slave_overload | root@localhost | SYSTEM | RECURRING | NULL | 10 | SECOND | 2022-06-16 00:00:01 | NULL | ENABLED | 171970595 | utf8mb3 | utf8mb3_general_ci | binary |
6| ops | wmf_slave_purge | root@localhost | SYSTEM | RECURRING | NULL | 15 | MINUTE | 2022-06-16 00:00:00 | NULL | ENABLED | 171970595 | utf8mb3 | utf8mb3_general_ci | binary |
7| ops | wmf_slave_wikiuser_sleep | root@localhost | SYSTEM | RECURRING | NULL | 30 | SECOND | 2022-06-16 00:00:05 | NULL | ENABLED | 171970595 | utf8mb3 | utf8mb3_general_ci | binary |
8| ops | wmf_slave_wikiuser_slow | root@localhost | SYSTEM | RECURRING | NULL | 30 | SECOND | 2022-06-16 00:00:03 | NULL | ENABLED | 171970595 | utf8mb3 | utf8mb3_general_ci | binary |
9+-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+---------+------------+----------------------+----------------------+--------------------+
104 rows in set (0.002 sec)
11
12
13
14root@db1132.eqiad.wmnet[ops]> show create event wmf_slave_overload\G
15*************************** 1. row ***************************
16 Event: wmf_slave_overload
17 sql_mode: IGNORE_BAD_TABLE_OPTIONS
18 time_zone: SYSTEM
19 Create Event: CREATE DEFINER=`root`@`localhost` EVENT `wmf_slave_overload` ON SCHEDULE EVERY 10 SECOND STARTS '2022-06-16 00:00:01' ON COMPLETION NOT PRESERVE ENABLE DO begin
20
21 declare sid int;
22 declare all_done int default 0;
23 declare thread_id bigint default null;
24 declare thread_query varchar(100);
25 declare active_count bigint default null;
26 declare top_connections bigint default null;
27
28 declare active_queries cursor for
29 SELECT ps.PROCESSLIST_ID, substring(ps.PROCESSLIST_INFO,1,100)
30 FROM performance_schema.threads ps
31 WHERE ps.processlist_user = 'wikiuser202206'
32 AND ps.type='FOREGROUND'
33 AND ps.processlist_time between 10 and 1000000
34 ORDER BY ps.processlist_time DESC
35 LIMIT 1000;
36
37 declare continue handler for not found set all_done = 1;
38
39 if (get_lock('wmf_slave_overload', 1) = 0) then
40 signal sqlstate value '45000' set message_text = 'get_lock';
41 end if;
42
43 set sid := @@server_id;
44 set @@session.sql_log_bin := 0;
45
46 set active_count := (
47 SELECT count(*) FROM performance_schema.threads
48 );
49 set top_connections := @@GLOBAL.max_connections;
50
51
52
53
54 if (active_count is not null and active_count > (top_connections/10)) then
55
56 set all_done = 0;
57 open active_queries;
58
59 repeat fetch active_queries into thread_id, thread_query;
60
61 if (thread_id is not null) then
62
63 kill thread_id;
64
65 insert into event_log values (sid, now(), 'wmf_slave_overload',
66 concat('kill ',thread_id,'; ',LEFT(thread_query, 997))
67 );
68
69 end if;
70
71 until all_done
72 end repeat;
73
74 close active_queries;
75
76 end if;
77
78
79 select 1 from (select 1) as t;
80
81 do release_lock('wmf_slave_overload');
82
83 end
84character_set_client: utf8mb3
85collation_connection: utf8mb3_general_ci
86 Database Collation: binary
871 row in set (0.001 sec)
88
89
90
91root@db1132.eqiad.wmnet[ops]> show create event wmf_slave_purge\G
92*************************** 1. row ***************************
93 Event: wmf_slave_purge
94 sql_mode: IGNORE_BAD_TABLE_OPTIONS
95 time_zone: SYSTEM
96 Create Event: CREATE DEFINER=`root`@`localhost` EVENT `wmf_slave_purge` ON SCHEDULE EVERY 15 MINUTE STARTS '2022-06-16 00:00:00' ON COMPLETION NOT PRESERVE ENABLE DO begin
97
98 declare sid int;
99
100 set sid := @@server_id;
101 set @@session.sql_log_bin := 0;
102
103 delete from event_log where stamp < now() - interval 1 day and server_id = sid;
104
105 end
106character_set_client: utf8mb3
107collation_connection: utf8mb3_general_ci
108 Database Collation: binary
1091 row in set (0.001 sec)
110
111
112
113root@db1132.eqiad.wmnet[ops]> show create event wmf_slave_wikiuser_sleep\G
114*************************** 1. row ***************************
115 Event: wmf_slave_wikiuser_sleep
116 sql_mode: IGNORE_BAD_TABLE_OPTIONS
117 time_zone: SYSTEM
118 Create Event: CREATE DEFINER=`root`@`localhost` EVENT `wmf_slave_wikiuser_sleep` ON SCHEDULE EVERY 30 SECOND STARTS '2022-06-16 00:00:05' ON COMPLETION NOT PRESERVE ENABLE DO begin
119
120 declare sid int;
121 declare all_done int default 0;
122 declare thread_id bigint default null;
123
124 declare threads_sleeping cursor for
125 SELECT ps.PROCESSLIST_ID
126 FROM performance_schema.threads ps
127 WHERE ps.processlist_user = 'wikiuser202206'
128 AND ps.type='FOREGROUND'
129 AND ps.PROCESSLIST_COMMAND = 'Sleep'
130 AND ps.processlist_time between 60 and 1000000
131 ORDER BY ps.processlist_time DESC;
132
133 declare continue handler for not found set all_done = 1;
134
135 set sid := @@server_id;
136 set @@session.sql_log_bin := 0;
137
138 if (get_lock('wmf_slave_wikiuser_sleep', 1) = 0) then
139 signal sqlstate value '45000' set message_text = 'get_lock';
140 end if;
141
142 set all_done = 0;
143 open threads_sleeping;
144
145 repeat fetch threads_sleeping into thread_id;
146
147 if (thread_id is not null) then
148
149 kill thread_id;
150
151 insert into event_log values (sid, now(), 'wmf_slave_wikiuser_sleep',
152 concat('kill ',thread_id)
153 );
154
155 end if;
156
157 until all_done
158 end repeat;
159
160 close threads_sleeping;
161
162
163 select 1 from (select 1) as t;
164
165 do release_lock('wmf_slave_wikiuser_sleep');
166
167end
168character_set_client: utf8mb3
169collation_connection: utf8mb3_general_ci
170 Database Collation: binary
171
172
173root@db1132.eqiad.wmnet[ops]> show create event wmf_slave_wikiuser_slow\G
174*************************** 1. row ***************************
175 Event: wmf_slave_wikiuser_slow
176 sql_mode: IGNORE_BAD_TABLE_OPTIONS
177 time_zone: SYSTEM
178 Create Event: CREATE DEFINER=`root`@`localhost` EVENT `wmf_slave_wikiuser_slow` ON SCHEDULE EVERY 30 SECOND STARTS '2022-06-16 00:00:03' ON COMPLETION NOT PRESERVE ENABLE DO begin
179
180 declare sid int;
181 declare all_done int default 0;
182 declare thread_id bigint default null;
183 declare thread_query varchar(100);
184
185 declare slow_queries cursor for
186 SELECT ps.PROCESSLIST_ID, substring(ps.PROCESSLIST_INFO,1,100)
187 FROM performance_schema.threads ps
188 WHERE ps.processlist_user = 'wikiuser202206'
189 AND ps.type='FOREGROUND'
190 AND ps.PROCESSLIST_COMMAND <> 'Sleep'
191 AND ps.processlist_time between 60 and 1000000
192 AND lower(ps.PROCESSLIST_INFO) like '%select%'
193 ORDER BY ps.processlist_time DESC;
194
195 declare continue handler for not found set all_done = 1;
196
197 set sid := @@server_id;
198 set @@session.sql_log_bin := 0;
199
200 if (get_lock('wmf_slave_wikiuser_slow', 1) = 0) then
201 signal sqlstate value '45000' set message_text = 'get_lock';
202 end if;
203
204 set all_done = 0;
205 open slow_queries;
206
207 repeat fetch slow_queries into thread_id, thread_query;
208
209 if (thread_id is not null) then
210
211 kill thread_id;
212
213 insert into event_log values (sid, now(), 'wmf_slave_wikiuser_slow (>60)',
214 concat('kill ',thread_id, '; ',LEFT(thread_query, 997))
215 );
216
217 end if;
218
219 until all_done
220 end repeat;
221
222 close slow_queries;
223
224
225 select 1 from (select 1) as t;
226
227 do release_lock('wmf_slave_wikiuser_slow');
228
229end
230character_set_client: utf8mb3
231collation_connection: utf8mb3_general_ci
232 Database Collation: binary
2331 row in set (0.001 sec)

root@cumin1001:~# db-mysql db1132 -e "show slave status\G" | grep Seconds
         Seconds_Behind_Master: 31934
root@cumin1001:~# db-mysql db1132 -e "show slave status\G" | grep Seconds
         Seconds_Behind_Master: 31942

It will never recover unless we kill mariadb and then start it again. It is fully stalled.

It looks like whatever it causes this, leaves the process totally hung.
This is the show engine innodb status\G of the current status:

1*************************** 1. row ***************************
2 Type: InnoDB
3 Name:
4Status:
5=====================================
62022-07-28 05:31:17 0x7f4c1e3ae700 INNODB MONITOR OUTPUT
7=====================================
8Per second averages calculated from the last 50 seconds
9-----------------
10BACKGROUND THREAD
11-----------------
12srv_master_thread loops: 0 srv_active, 0 srv_shutdown, 748173 srv_idle
13srv_master_thread log flush and writes: 748031
14----------
15SEMAPHORES
16----------
17------------
18TRANSACTIONS
19------------
20Trx id counter 70972173790
21Purge done for trx's n:o < 70971921493 undo n:o < 0 state: running
22History list length 126430
23LIST OF TRANSACTIONS FOR EACH SESSION:
24---TRANSACTION (0x7fac80c52680), not started
250 lock struct(s), heap size 1128, 0 row lock(s)
26---TRANSACTION (0x7fac80d55980), ACTIVE 31820 sec estimating records in index range
27mysql tables in use 1, locked 0
280 lock struct(s), heap size 1128, 0 row lock(s)
29MariaDB thread id 119664049, OS thread handle 139964915345152, query id 1630043707 10.64.16.216 wikiuser202206 Statistics
30SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1672698
31Trx read view will not see trx with id >= 70971935913, sees < 70971934950
32---TRANSACTION (0x7fac80c5f780), ACTIVE 31832 sec estimating records in index range
33mysql tables in use 1, locked 0
340 lock struct(s), heap size 1128, 0 row lock(s)
35MariaDB thread id 119664052, OS thread handle 139965878892288, query id 1630040050 10.64.0.195 wikiuser202206 Statistics
36SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16367662
37Trx read view will not see trx with id >= 70971935913, sees < 70971934950
38---TRANSACTION (0x7fac80b50980), ACTIVE 31843 sec estimating records in index range
39mysql tables in use 1, locked 0
400 lock struct(s), heap size 1128, 0 row lock(s)
41MariaDB thread id 119664042, OS thread handle 139965882783488, query id 1630035831 10.64.48.207 wikiuser202206 Statistics
42SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4521552
43Trx read view will not see trx with id >= 70971935907, sees < 70971934950
44---TRANSACTION (0x7fac80a43180), ACTIVE 31853 sec estimating records in index range
45mysql tables in use 1, locked 0
460 lock struct(s), heap size 1128, 0 row lock(s)
47MariaDB thread id 119665704, OS thread handle 139965876434688, query id 1630032273 10.64.32.34 wikiuser202206 Statistics
48SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40333523
49Trx read view will not see trx with id >= 70971935683, sees < 70971934950
50---TRANSACTION (0x7fac80aa0980), not started
510 lock struct(s), heap size 1128, 0 row lock(s)
52---TRANSACTION (0x7fac80b29680), ACTIVE 31879 sec estimating records in index range
53mysql tables in use 1, locked 0
540 lock struct(s), heap size 1128, 0 row lock(s)
55MariaDB thread id 119664040, OS thread handle 139965876639488, query id 1630025485 10.64.32.127 wikiuser202206 Statistics
56SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2359310
57Trx read view will not see trx with id >= 70971935459, sees < 70971934950
58---TRANSACTION (0x7f4a3bd64740), ACTIVE 31933 sec starting index read
59mysql tables in use 2, locked 0
600 lock struct(s), heap size 1128, 0 row lock(s)
61MariaDB thread id 119656102, OS thread handle 139968406013696, query id 1630015795 10.64.16.211 wikiuser202206 Sending data
62SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name IN ('Zl2tpd','75.112.22.74','Michiganwolverinette','WikiUser4020','83.114.220.23','Matthew.Lee4','Ajayvembu','2600:8800:2C16:3600:252E:6F5D:13A0:2B6','4lyferr','Thankgoditssammy','Speedrhysr3','TheEditor7499','Lady Lotus','WeLoveScience','Lewolka','Pleroma','Standing Alone','Opostylov','MrMaster17','Blue Moses','93.211.220.172','ClinicaYSalud','Theothman7','Ryan990110','Palm 2022')
63Trx read view will not see trx with id >= 70971935229, sees < 70971934950
64---TRANSACTION (0x7f4a3bcf6740), ACTIVE 31935 sec starting index read
65mysql tables in use 2, locked 0
660 lock struct(s), heap size 1128, 0 row lock(s)
67MariaDB thread id 119655362, OS thread handle 139964918621952, query id 1630032976 10.64.48.222 wikiuser202206 Statistics
68SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'DeltaQuadBot'
69Trx read view will not see trx with id >= 70971935007, sees < 70971934950
70---TRANSACTION (0x7f4a3baf1740), ACTIVE 31945 sec estimating records in index range
71mysql tables in use 1, locked 0
720 lock struct(s), heap size 1128, 0 row lock(s)
73MariaDB thread id 119656599, OS thread handle 139964909815552, query id 1630040596 10.64.48.205 wikiuser202206 Statistics
74SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43631428
75Trx read view will not see trx with id >= 70971935007, sees < 70971934950
76---TRANSACTION (0x7f49587c3940), ACTIVE 31947 sec starting index read
77mysql tables in use 2, locked 0
780 lock struct(s), heap size 1128, 0 row lock(s)
79MariaDB thread id 119654818, OS thread handle 139964914730752, query id 1630011198 10.64.48.219 wikiuser202206 Statistics
80SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)'
81Trx read view will not see trx with id >= 70971935007, sees < 70971934950
82---TRANSACTION (0x7f4958733e40), ACTIVE 31950 sec estimating records in index range
83mysql tables in use 1, locked 0
840 lock struct(s), heap size 1128, 0 row lock(s)
85MariaDB thread id 119653895, OS thread handle 139964921489152, query id 1630023055 10.64.16.199 wikiuser202206 Statistics
86SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 70274
87Trx read view will not see trx with id >= 70971935007, sees < 70971934950
88---TRANSACTION (0x7fac809e0180), ACTIVE 31951 sec starting index read
89mysql tables in use 2, locked 0
900 lock struct(s), heap size 1128, 0 row lock(s)
91MariaDB thread id 119655651, OS thread handle 139968376739584, query id 1630009304 10.64.48.86 wikiuser202206 Statistics
92SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)'
93Trx read view will not see trx with id >= 70971935007, sees < 70971934950
94---TRANSACTION (0x7f495868b740), ACTIVE 31952 sec starting index read
95mysql tables in use 2, locked 0
960 lock struct(s), heap size 1128, 0 row lock(s)
97MariaDB thread id 119656170, OS thread handle 139964914116352, query id 1630008935 10.64.16.195 wikiuser202206 Statistics
98SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)'
99Trx read view will not see trx with id >= 70971935007, sees < 70971934950
100---TRANSACTION (0x7f49584f5240), ACTIVE 31960 sec starting index read
101mysql tables in use 2, locked 0
1020 lock struct(s), heap size 1128, 0 row lock(s)
103MariaDB thread id 119654336, OS thread handle 139964912068352, query id 1630007283 10.64.32.52 wikiuser202206 Statistics
104SELECT /* GenderCache::doQuery-ApiQueryUsers::execute */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Neutrality'
105Trx read view will not see trx with id >= 70971935005, sees < 70971934950
106---TRANSACTION (0x7f49584f4740), not started
1070 lock struct(s), heap size 1128, 0 row lock(s)
108---TRANSACTION (0x7fac80b72480), ACTIVE 31963 sec estimating records in index range
109mysql tables in use 1, locked 0
1100 lock struct(s), heap size 1128, 0 row lock(s)
111MariaDB thread id 119654580, OS thread handle 139964869494528, query id 1630039793 10.64.48.219 wikiuser202206 Statistics
112SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 11082226
113Trx read view will not see trx with id >= 70971935001, sees < 70971934950
114---TRANSACTION (0x7fac80d43b80), ACTIVE 31969 sec estimating records in index range
115mysql tables in use 1, locked 0
1160 lock struct(s), heap size 1128, 0 row lock(s)
117MariaDB thread id 119654007, OS thread handle 139964913092352, query id 1630039409 10.64.16.197 wikiuser202206 Statistics
118SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43301340
119Trx read view will not see trx with id >= 70971934951, sees < 70971934950
120---TRANSACTION (0x7fac80a92d80), ACTIVE 31972 sec estimating records in index range
121mysql tables in use 1, locked 0
1220 lock struct(s), heap size 1128, 0 row lock(s)
123MariaDB thread id 119656680, OS thread handle 139964871952128, query id 1630023553 10.64.0.70 wikiuser202206 Statistics
124SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42940581
125Trx read view will not see trx with id >= 70971934951, sees < 70971934950
126---TRANSACTION (0x7fac80aea280), ACTIVE 32019 sec starting index read
127mysql tables in use 2, locked 0
1280 lock struct(s), heap size 1128, 0 row lock(s)
129MariaDB thread id 119656443, OS thread handle 139968402327296, query id 1629986442 10.64.48.211 wikiuser202206 Statistics
130SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot'
131Trx read view will not see trx with id >= 70971934951, sees < 70971934950
132---TRANSACTION (0x7fac80af9480), ACTIVE 32019 sec starting index read
133mysql tables in use 2, locked 0
1340 lock struct(s), heap size 1128, 0 row lock(s)
135MariaDB thread id 119656242, OS thread handle 139968356677376, query id 1629986663 10.64.0.195 wikiuser202206 Statistics
136SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SimLibrarian'
137Trx read view will not see trx with id >= 70971934951, sees < 70971934950
138---TRANSACTION (0x7fac80af5d80), ACTIVE 32019 sec estimating records in index range
139mysql tables in use 1, locked 0
1400 lock struct(s), heap size 1128, 0 row lock(s)
141MariaDB thread id 119656270, OS thread handle 139964907767552, query id 1629987171 10.64.16.214 wikiuser202206 Statistics
142SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 302229
143Trx read view will not see trx with id >= 70971934951, sees < 70971934950
144---TRANSACTION (0x7fac80ac5b80), ACTIVE 32019 sec starting index read
145mysql tables in use 2, locked 0
1460 lock struct(s), heap size 1128, 0 row lock(s)
147MariaDB thread id 119655960, OS thread handle 139964911044352, query id 1629986648 10.64.32.34 wikiuser202206 Statistics
148SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Darwin Naz'
149Trx read view will not see trx with id >= 70971934951, sees < 70971934950
150---TRANSACTION (0x7fac80ad8f80), ACTIVE 32019 sec estimating records in index range
151mysql tables in use 1, locked 0
1520 lock struct(s), heap size 1128, 0 row lock(s)
153MariaDB thread id 119655961, OS thread handle 139968398231296, query id 1629985589 10.64.32.42 wikiuser202206 Statistics
154SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 414691
155Trx read view will not see trx with id >= 70971934951, sees < 70971934950
156---TRANSACTION (0x7fac80ae9780), ACTIVE 32019 sec estimating records in index range
157mysql tables in use 1, locked 0
1580 lock struct(s), heap size 1128, 0 row lock(s)
159MariaDB thread id 119655433, OS thread handle 140377587537664, query id 1629985043 10.64.16.167 wikiuser202206 Statistics
160SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 35098811
161Trx read view will not see trx with id >= 70971934951, sees < 70971934950
162---TRANSACTION (0x7fac80ae8c80), ACTIVE 32019 sec estimating records in index range
163mysql tables in use 1, locked 0
1640 lock struct(s), heap size 1128, 0 row lock(s)
165MariaDB thread id 119655625, OS thread handle 139968395568896, query id 1629985293 10.64.0.194 wikiuser202206 Statistics
166SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901
167Trx read view will not see trx with id >= 70971934951, sees < 70971934950
168---TRANSACTION (0x7fac80ae3480), ACTIVE 32019 sec starting index read
169mysql tables in use 2, locked 0
1700 lock struct(s), heap size 1128, 0 row lock(s)
171MariaDB thread id 119655557, OS thread handle 140378867152640, query id 1629986076 10.64.48.80 wikiuser202206 Statistics
172SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Explicit'
173Trx read view will not see trx with id >= 70971934951, sees < 70971934950
174---TRANSACTION (0x7fac80adc680), ACTIVE 32019 sec starting index read
175mysql tables in use 2, locked 0
1760 lock struct(s), heap size 1128, 0 row lock(s)
177MariaDB thread id 119655588, OS thread handle 139964918007552, query id 1629986081 10.64.48.81 wikiuser202206 Statistics
178SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'The Gnome'
179Trx read view will not see trx with id >= 70971934951, sees < 70971934950
180---TRANSACTION (0x7fac80a1be80), ACTIVE 32019 sec starting index read
181mysql tables in use 2, locked 0
1820 lock struct(s), heap size 1128, 0 row lock(s)
183MariaDB thread id 119655474, OS thread handle 139964908177152, query id 1629985487 10.64.16.215 wikiuser202206 Statistics
184SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Orenburg1'
185Trx read view will not see trx with id >= 70971934951, sees < 70971934950
186---TRANSACTION (0x7fac80aafb80), ACTIVE 32019 sec estimating records in index range
187mysql tables in use 1, locked 0
1880 lock struct(s), heap size 1128, 0 row lock(s)
189MariaDB thread id 119655464, OS thread handle 139968374486784, query id 1629984757 10.64.48.217 wikiuser202206 Statistics
190SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 15347459
191Trx read view will not see trx with id >= 70971934951, sees < 70971934950
192---TRANSACTION (0x7fac80ad6380), ACTIVE 32019 sec starting index read
193mysql tables in use 2, locked 0
1940 lock struct(s), heap size 1128, 0 row lock(s)
195MariaDB thread id 119655246, OS thread handle 139968379606784, query id 1629986087 10.64.48.210 wikiuser202206 Statistics
196SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Robby.is.on'
197Trx read view will not see trx with id >= 70971934951, sees < 70971934950
198---TRANSACTION (0x7fac80adfd80), ACTIVE 32020 sec estimating records in index range
199mysql tables in use 1, locked 0
2000 lock struct(s), heap size 1128, 0 row lock(s)
201MariaDB thread id 119655248, OS thread handle 139964906743552, query id 1629984816 10.64.16.162 wikiuser202206 Statistics
202SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901
203Trx read view will not see trx with id >= 70971934951, sees < 70971934950
204---TRANSACTION (0x7fac80ad9a80), ACTIVE 32020 sec starting index read
205mysql tables in use 2, locked 0
2060 lock struct(s), heap size 1128, 0 row lock(s)
207MariaDB thread id 119655368, OS thread handle 139964909405952, query id 1629985791 10.64.48.206 wikiuser202206 Statistics
208SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bearcat'
209Trx read view will not see trx with id >= 70971934951, sees < 70971934950
210---TRANSACTION (0x7fac80abab80), ACTIVE 32020 sec starting index read
211mysql tables in use 2, locked 0
2120 lock struct(s), heap size 1128, 0 row lock(s)
213MariaDB thread id 119655365, OS thread handle 139968380835584, query id 1629985787 10.64.0.63 wikiuser202206 Statistics
214SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WikiCleanerBot'
215Trx read view will not see trx with id >= 70971934951, sees < 70971934950
216---TRANSACTION (0x7fac80ad5880), ACTIVE 32020 sec starting index read
217mysql tables in use 2, locked 0
2180 lock struct(s), heap size 1128, 0 row lock(s)
219MariaDB thread id 119655161, OS thread handle 140377585284864, query id 1629984970 10.64.32.113 wikiuser202206 Statistics
220SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BD2412'
221Trx read view will not see trx with id >= 70971934951, sees < 70971934950
222---TRANSACTION (0x7fac80ac0e80), ACTIVE 32020 sec estimating records in index range
223mysql tables in use 1, locked 0
2240 lock struct(s), heap size 1128, 0 row lock(s)
225MariaDB thread id 119655041, OS thread handle 139964912682752, query id 1629984368 10.64.32.34 wikiuser202206 Statistics
226SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13889901
227Trx read view will not see trx with id >= 70971934951, sees < 70971934950
228---TRANSACTION (0x7fac80a07480), ACTIVE 32020 sec starting index read
229mysql tables in use 2, locked 0
2300 lock struct(s), heap size 1128, 0 row lock(s)
231MariaDB thread id 119655144, OS thread handle 139968392087296, query id 1629985203 10.64.32.121 wikiuser202206 Statistics
232SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Zodiac009'
233Trx read view will not see trx with id >= 70971934951, sees < 70971934950
234---TRANSACTION (0x7fac80a2dc80), ACTIVE 32020 sec starting index read
235mysql tables in use 2, locked 0
2360 lock struct(s), heap size 1128, 0 row lock(s)
237MariaDB thread id 119655132, OS thread handle 139964913501952, query id 1629984644 10.64.0.195 wikiuser202206 Statistics
238SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Average Portuguese Joe'
239Trx read view will not see trx with id >= 70971934951, sees < 70971934950
240---TRANSACTION (0x7fac80a0d780), ACTIVE 32020 sec starting index read
241mysql tables in use 2, locked 0
2420 lock struct(s), heap size 1128, 0 row lock(s)
243MariaDB thread id 119655123, OS thread handle 140377584875264, query id 1629985854 10.64.16.155 wikiuser202206 Statistics
244SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao'
245Trx read view will not see trx with id >= 70971934951, sees < 70971934950
246---TRANSACTION (0x7fac80acd480), ACTIVE 32020 sec starting index read
247mysql tables in use 2, locked 0
2480 lock struct(s), heap size 1128, 0 row lock(s)
249MariaDB thread id 119655109, OS thread handle 140377587128064, query id 1629984146 10.64.48.212 wikiuser202206 Statistics
250SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ShortDescBot'
251Trx read view will not see trx with id >= 70971934951, sees < 70971934950
252---TRANSACTION (0x7fac80ac2f80), ACTIVE 32020 sec starting index read
253mysql tables in use 2, locked 0
2540 lock struct(s), heap size 1128, 0 row lock(s)
255MariaDB thread id 119655073, OS thread handle 139964910634752, query id 1629985191 10.64.48.214 wikiuser202206 Statistics
256SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = '4ever881'
257Trx read view will not see trx with id >= 70971934951, sees < 70971934950
258---TRANSACTION (0x7fac80abb680), ACTIVE 32020 sec starting index read
259mysql tables in use 2, locked 0
2600 lock struct(s), heap size 1128, 0 row lock(s)
261MariaDB thread id 119654898, OS thread handle 139964870518528, query id 1630034349 10.64.32.40 wikiuser202206 Statistics
262SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ibuku'
263Trx read view will not see trx with id >= 70971934951, sees < 70971934950
264---TRANSACTION (0x7fac80a64180), ACTIVE 32020 sec estimating records in index range
265mysql tables in use 1, locked 0
2660 lock struct(s), heap size 1128, 0 row lock(s)
267MariaDB thread id 119655034, OS thread handle 139968372438784, query id 1629983525 10.64.32.53 wikiuser202206 Statistics
268SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 39035984
269Trx read view will not see trx with id >= 70971934951, sees < 70971934950
270---TRANSACTION (0x7fac80ac9d80), ACTIVE 32020 sec starting index read
271mysql tables in use 2, locked 0
2720 lock struct(s), heap size 1128, 0 row lock(s)
273MariaDB thread id 119654930, OS thread handle 139968368752384, query id 1629983174 10.64.0.196 wikiuser202206 Statistics
274SELECT /* GenderCache::doQuery-ApiQueryUsers::execute */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'MalnadachBot'
275Trx read view will not see trx with id >= 70971934951, sees < 70971934950
276---TRANSACTION (0x7fac80ad2c80), ACTIVE 32020 sec estimating records in index range
277mysql tables in use 1, locked 0
2780 lock struct(s), heap size 1128, 0 row lock(s)
279MariaDB thread id 119654840, OS thread handle 139968375715584, query id 1629983376 10.64.0.63 wikiuser202206 Statistics
280SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13791663
281Trx read view will not see trx with id >= 70971934951, sees < 70971934950
282---TRANSACTION (0x7fac80acdf80), ACTIVE 32020 sec estimating records in index range
283mysql tables in use 1, locked 0
2840 lock struct(s), heap size 1128, 0 row lock(s)
285MariaDB thread id 119654764, OS thread handle 139968403965696, query id 1629983497 10.64.16.167 wikiuser202206 Statistics
286SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 24879752
287Trx read view will not see trx with id >= 70971934951, sees < 70971934950
288---TRANSACTION (0x7fac80aa8280), ACTIVE 32020 sec starting index read
289mysql tables in use 2, locked 0
2900 lock struct(s), heap size 1128, 0 row lock(s)
291MariaDB thread id 119654736, OS thread handle 139968396592896, query id 1629984098 10.64.0.9 wikiuser202206 Statistics
292SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Hippo43'
293Trx read view will not see trx with id >= 70971934951, sees < 70971934950
294---TRANSACTION (0x7fac80a6f180), ACTIVE 32020 sec starting index read
295mysql tables in use 2, locked 0
2960 lock struct(s), heap size 1128, 0 row lock(s)
297MariaDB thread id 119654862, OS thread handle 139968406832896, query id 1629983214 10.64.0.63 wikiuser202206 Statistics
298SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WEEROR'
299Trx read view will not see trx with id >= 70971934951, sees < 70971934950
300---TRANSACTION (0x7fac80acb380), ACTIVE 32020 sec estimating records in index range
301mysql tables in use 1, locked 0
3020 lock struct(s), heap size 1128, 0 row lock(s)
303MariaDB thread id 119654738, OS thread handle 139964907562752, query id 1629984183 10.64.48.196 wikiuser202206 Statistics
304SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1456683
305Trx read view will not see trx with id >= 70971934951, sees < 70971934950
306---TRANSACTION (0x7fac80a89380), ACTIVE 32020 sec starting index read
307mysql tables in use 2, locked 0
3080 lock struct(s), heap size 1128, 0 row lock(s)
309MariaDB thread id 119654728, OS thread handle 139968403351296, query id 1629983186 10.64.16.153 wikiuser202206 Statistics
310SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Philip Cross'
311Trx read view will not see trx with id >= 70971934951, sees < 70971934950
312---TRANSACTION (0x7fac80ac4580), ACTIVE 32020 sec estimating records in index range
313mysql tables in use 1, locked 0
3140 lock struct(s), heap size 1128, 0 row lock(s)
315MariaDB thread id 119654564, OS thread handle 139968402122496, query id 1629982529 10.64.48.193 wikiuser202206 Statistics
316SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 12338485
317Trx read view will not see trx with id >= 70971934951, sees < 70971934950
318---TRANSACTION (0x7fac80a41080), ACTIVE 32020 sec estimating records in index range
319mysql tables in use 1, locked 0
3200 lock struct(s), heap size 1128, 0 row lock(s)
321MariaDB thread id 119654524, OS thread handle 139964908381952, query id 1629987907 10.64.32.57 wikiuser202206 Statistics
322SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 38213338
323Trx read view will not see trx with id >= 70971934951, sees < 70971934950
324---TRANSACTION (0x7fac80abcc80), ACTIVE 32021 sec estimating records in index range
325mysql tables in use 1, locked 0
3260 lock struct(s), heap size 1128, 0 row lock(s)
327MariaDB thread id 119654456, OS thread handle 139968399869696, query id 1629981920 10.64.32.49 wikiuser202206 Statistics
328SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 32252448
329Trx read view will not see trx with id >= 70971934951, sees < 70971934950
330---TRANSACTION (0x7fac80a88880), ACTIVE 32021 sec starting index read
331mysql tables in use 2, locked 0
3320 lock struct(s), heap size 1128, 0 row lock(s)
333MariaDB thread id 119654510, OS thread handle 139965871728384, query id 1629982577 10.64.0.94 wikiuser202206 Statistics
334SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cewbot'
335Trx read view will not see trx with id >= 70971934951, sees < 70971934950
336---TRANSACTION (0x7fac80ac8780), ACTIVE 32021 sec estimating records in index range
337mysql tables in use 1, locked 0
3380 lock struct(s), heap size 1128, 0 row lock(s)
339MariaDB thread id 119654339, OS thread handle 140378859095808, query id 1629981462 10.64.16.193 wikiuser202206 Statistics
340SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2308770
341Trx read view will not see trx with id >= 70971934951, sees < 70971934950
342---TRANSACTION (0x7fac80ac7c80), ACTIVE 32021 sec starting index read
343mysql tables in use 2, locked 0
3440 lock struct(s), heap size 1128, 0 row lock(s)
345MariaDB thread id 119654393, OS thread handle 139968381040384, query id 1629982699 10.64.32.34 wikiuser202206 Statistics
346SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III'
347Trx read view will not see trx with id >= 70971934951, sees < 70971934950
348---TRANSACTION (0x7fac80a97a80), ACTIVE 32021 sec estimating records in index range
349mysql tables in use 1, locked 0
3500 lock struct(s), heap size 1128, 0 row lock(s)
351MariaDB thread id 119654358, OS thread handle 139968366298880, query id 1629982116 10.64.32.52 wikiuser202206 Statistics
352SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 39138005
353Trx read view will not see trx with id >= 70971934951, sees < 70971934950
354---TRANSACTION (0x7fac80aac480), ACTIVE 32021 sec starting index read
355mysql tables in use 2, locked 0
3560 lock struct(s), heap size 1128, 0 row lock(s)
357MariaDB thread id 119654204, OS thread handle 139968371824384, query id 1629982155 10.64.32.45 wikiuser202206 Statistics
358SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ThadeusOfNazereth'
359Trx read view will not see trx with id >= 70971934951, sees < 70971934950
360---TRANSACTION (0x7fac80a94380), ACTIVE 32021 sec starting index read
361mysql tables in use 2, locked 0
3620 lock struct(s), heap size 1128, 0 row lock(s)
363MariaDB thread id 119654261, OS thread handle 139968373462784, query id 1629982294 10.64.0.11 wikiuser202206 Statistics
364SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cinderella157'
365Trx read view will not see trx with id >= 70971934951, sees < 70971934950
366---TRANSACTION (0x7fac80a6db80), ACTIVE 32021 sec starting index read
367mysql tables in use 2, locked 0
3680 lock struct(s), heap size 1128, 0 row lock(s)
369MariaDB thread id 119654250, OS thread handle 139968365684480, query id 1629981334 10.64.16.160 wikiuser202206 Statistics
370SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Douglas W. Jones'
371Trx read view will not see trx with id >= 70971934951, sees < 70971934950
372---TRANSACTION (0x7fac80a4cb80), ACTIVE 32021 sec estimating records in index range
373mysql tables in use 1, locked 0
3740 lock struct(s), heap size 1128, 0 row lock(s)
375MariaDB thread id 119654126, OS thread handle 139968393111296, query id 1629980952 10.64.0.174 wikiuser202206 Statistics
376SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 37437675
377Trx read view will not see trx with id >= 70971934951, sees < 70971934950
378---TRANSACTION (0x7fac80a24d80), ACTIVE 32021 sec starting index read
379mysql tables in use 2, locked 0
3800 lock struct(s), heap size 1128, 0 row lock(s)
381MariaDB thread id 119654091, OS thread handle 139964915140352, query id 1630002471 10.64.32.119 wikiuser202206 Statistics
382SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Interstatefive'
383Trx read view will not see trx with id >= 70971934951, sees < 70971934950
384---TRANSACTION (0x7fac80aa1f80), ACTIVE 32021 sec starting index read
385mysql tables in use 2, locked 0
3860 lock struct(s), heap size 1128, 0 row lock(s)
387MariaDB thread id 119654103, OS thread handle 139968377149184, query id 1629981533 10.64.32.119 wikiuser202206 Statistics
388SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Rlink2'
389Trx read view will not see trx with id >= 70971934951, sees < 70971934950
390---TRANSACTION (0x7fac80ab8a80), ACTIVE 32021 sec starting index read
391mysql tables in use 2, locked 0
3920 lock struct(s), heap size 1128, 0 row lock(s)
393MariaDB thread id 119654044, OS thread handle 140378859710208, query id 1629981506 10.64.48.192 wikiuser202206 Statistics
394SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Mitch Ames'
395Trx read view will not see trx with id >= 70971934951, sees < 70971934950
396---TRANSACTION (0x7fac80a71d80), ACTIVE 32021 sec estimating records in index range
397mysql tables in use 1, locked 0
3980 lock struct(s), heap size 1128, 0 row lock(s)
399MariaDB thread id 119654104, OS thread handle 139968379197184, query id 1629979779 10.64.0.196 wikiuser202206 Statistics
400SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 37213598
401Trx read view will not see trx with id >= 70971934951, sees < 70971934950
402---TRANSACTION (0x7fac80a59180), ACTIVE 32021 sec estimating records in index range
403mysql tables in use 1, locked 0
4040 lock struct(s), heap size 1128, 0 row lock(s)
405MariaDB thread id 119654088, OS thread handle 139968379811584, query id 1629979493 10.64.16.196 wikiuser202206 Statistics
406SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 32500805
407Trx read view will not see trx with id >= 70971934951, sees < 70971934950
408---TRANSACTION (0x7fac80aa6c80), ACTIVE 32021 sec starting index read
409mysql tables in use 2, locked 0
4100 lock struct(s), heap size 1128, 0 row lock(s)
411MariaDB thread id 119653932, OS thread handle 139968390858496, query id 1629979403 10.64.16.191 wikiuser202206 Statistics
412SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ClueBot III'
413Trx read view will not see trx with id >= 70971934951, sees < 70971934950
414---TRANSACTION (0x7fac80a8d580), ACTIVE 32021 sec starting index read
415mysql tables in use 2, locked 0
4160 lock struct(s), heap size 1128, 0 row lock(s)
417MariaDB thread id 119654013, OS thread handle 139968399255296, query id 1629980407 10.64.0.91 wikiuser202206 Statistics
418SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dewritech'
419Trx read view will not see trx with id >= 70971934951, sees < 70971934950
420---TRANSACTION (0x7fac80a74980), ACTIVE 32021 sec estimating records in index range
421mysql tables in use 1, locked 0
4220 lock struct(s), heap size 1128, 0 row lock(s)
423MariaDB thread id 119653940, OS thread handle 139968395773696, query id 1629979983 10.64.48.214 wikiuser202206 Statistics
424SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 44201641
425Trx read view will not see trx with id >= 70971934951, sees < 70971934950
426---TRANSACTION (0x7fac80a6c580), ACTIVE 32021 sec starting index read
427mysql tables in use 2, locked 0
4280 lock struct(s), heap size 1128, 0 row lock(s)
429MariaDB thread id 119653949, OS thread handle 139968354014976, query id 1629980961 10.64.48.206 wikiuser202206 Statistics
430SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Scorpions13256'
431Trx read view will not see trx with id >= 70971934951, sees < 70971934950
432---TRANSACTION (0x7fac809e6480), ACTIVE 32021 sec starting index read
433mysql tables in use 2, locked 0
4340 lock struct(s), heap size 1128, 0 row lock(s)
435MariaDB thread id 119654027, OS thread handle 139964921898752, query id 1629981802 10.64.0.91 wikiuser202206 Statistics
436SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'RedBull1984'
437Trx read view will not see trx with id >= 70971934951, sees < 70971934950
438---TRANSACTION (0x7fac80ab0680), ACTIVE 32021 sec starting index read
439mysql tables in use 2, locked 0
4400 lock struct(s), heap size 1128, 0 row lock(s)
441MariaDB thread id 119653911, OS thread handle 140377590814464, query id 1629979845 10.64.16.215 wikiuser202206 Statistics
442SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'PrimeBOT'
443Trx read view will not see trx with id >= 70971934951, sees < 70971934950
444---TRANSACTION (0x7fac80a6d080), ACTIVE 32021 sec starting index read
445mysql tables in use 2, locked 0
4460 lock struct(s), heap size 1128, 0 row lock(s)
447MariaDB thread id 119653905, OS thread handle 139968382064384, query id 1629979946 10.64.32.40 wikiuser202206 Statistics
448SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot'
449Trx read view will not see trx with id >= 70971934951, sees < 70971934950
450---TRANSACTION (0x7fac80a62080), ACTIVE 32021 sec estimating records in index range
451mysql tables in use 1, locked 0
4520 lock struct(s), heap size 1128, 0 row lock(s)
453MariaDB thread id 119653823, OS thread handle 140377589585664, query id 1629978687 10.64.0.189 wikiuser202206 Statistics
454SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 35915815
455Trx read view will not see trx with id >= 70971934951, sees < 70971934950
456---TRANSACTION (0x7fac80aa4b80), ACTIVE 32022 sec starting index read
457mysql tables in use 2, locked 0
4580 lock struct(s), heap size 1128, 0 row lock(s)
459MariaDB thread id 119653684, OS thread handle 139964911249152, query id 1629992399 10.64.48.211 wikiuser202206 Statistics
460SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Richard Keatinge'
461Trx read view will not see trx with id >= 70971934951, sees < 70971934950
462---TRANSACTION (0x7fac80a4aa80), ACTIVE 32022 sec estimating records in index range
463mysql tables in use 1, locked 0
4640 lock struct(s), heap size 1128, 0 row lock(s)
465MariaDB thread id 119653601, OS thread handle 139968367318784, query id 1629977996 10.64.16.168 wikiuser202206 Statistics
466SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 625916
467Trx read view will not see trx with id >= 70971934951, sees < 70971934950
468---TRANSACTION (0x7fac80a47e80), ACTIVE 32022 sec estimating records in index range
469mysql tables in use 1, locked 0
4700 lock struct(s), heap size 1128, 0 row lock(s)
471MariaDB thread id 119653595, OS thread handle 139968373257984, query id 1629979501 10.64.32.34 wikiuser202206 Statistics
472SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592
473Trx read view will not see trx with id >= 70971934951, sees < 70971934950
474---TRANSACTION (0x7fac809e4380), ACTIVE 32022 sec starting index read
475mysql tables in use 2, locked 0
4760 lock struct(s), heap size 1128, 0 row lock(s)
477MariaDB thread id 119653603, OS thread handle 139964917393152, query id 1629979157 10.64.48.209 wikiuser202206 Statistics
478SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Fadesga'
479Trx read view will not see trx with id >= 70971934951, sees < 70971934950
480---TRANSACTION (0x7fac80a1ea80), ACTIVE 32022 sec estimating records in index range
481mysql tables in use 1, locked 0
4820 lock struct(s), heap size 1128, 0 row lock(s)
483MariaDB thread id 119653403, OS thread handle 139968377558784, query id 1629977994 10.64.48.207 wikiuser202206 Statistics
484SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16868519
485Trx read view will not see trx with id >= 70971934951, sees < 70971934950
486---TRANSACTION (0x7fac80ab7480), ACTIVE 32022 sec starting index read
487mysql tables in use 2, locked 0
4880 lock struct(s), heap size 1128, 0 row lock(s)
489MariaDB thread id 119653633, OS thread handle 139968368547584, query id 1629977878 10.64.0.91 wikiuser202206 Statistics
490SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'HazemGM'
491Trx read view will not see trx with id >= 70971934951, sees < 70971934950
492---TRANSACTION (0x7fac80ab6980), ACTIVE 32022 sec starting index read
493mysql tables in use 2, locked 0
4940 lock struct(s), heap size 1128, 0 row lock(s)
495MariaDB thread id 119653632, OS thread handle 139968400279296, query id 1629977837 10.64.48.215 wikiuser202206 Statistics
496SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Nightscream'
497Trx read view will not see trx with id >= 70971934951, sees < 70971934950
498---TRANSACTION (0x7fac80ab2780), ACTIVE 32022 sec estimating records in index range
499mysql tables in use 1, locked 0
5000 lock struct(s), heap size 1128, 0 row lock(s)
501MariaDB thread id 119653559, OS thread handle 139968375920384, query id 1629977869 10.64.32.33 wikiuser202206 Statistics
502SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 23637506
503Trx read view will not see trx with id >= 70971934951, sees < 70971934950
504---TRANSACTION (0x7fac80a3c380), ACTIVE 32022 sec estimating records in index range
505mysql tables in use 1, locked 0
5060 lock struct(s), heap size 1128, 0 row lock(s)
507MariaDB thread id 119653624, OS thread handle 139965872752384, query id 1629976990 10.64.48.202 wikiuser202206 Statistics
508SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42623903
509Trx read view will not see trx with id >= 70971934951, sees < 70971934950
510---TRANSACTION (0x7fac80aada80), ACTIVE 32022 sec estimating records in index range
511mysql tables in use 1, locked 0
5120 lock struct(s), heap size 1128, 0 row lock(s)
513MariaDB thread id 119653538, OS thread handle 139968401303296, query id 1629976618 10.64.0.60 wikiuser202206 Statistics
514SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 9612106
515Trx read view will not see trx with id >= 70971934951, sees < 70971934950
516---TRANSACTION (0x7fac80a9fe80), ACTIVE 32022 sec starting index read
517mysql tables in use 2, locked 0
5180 lock struct(s), heap size 1128, 0 row lock(s)
519MariaDB thread id 119653555, OS thread handle 139964918826752, query id 1629977053 10.64.48.80 wikiuser202206 Statistics
520SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Surijeal'
521Trx read view will not see trx with id >= 70971934951, sees < 70971934950
522---TRANSACTION (0x7fac80a83b80), ACTIVE 32022 sec estimating records in index range
523mysql tables in use 1, locked 0
5240 lock struct(s), heap size 1128, 0 row lock(s)
525MariaDB thread id 119653482, OS thread handle 139964919236352, query id 1629976532 10.64.0.160 wikiuser202206 Statistics
526SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 6514756
527Trx read view will not see trx with id >= 70971934951, sees < 70971934950
528---TRANSACTION (0x7fac809ef380), ACTIVE 32022 sec estimating records in index range
529mysql tables in use 1, locked 0
5300 lock struct(s), heap size 1128, 0 row lock(s)
531MariaDB thread id 119653542, OS thread handle 139968369776384, query id 1629976605 10.64.48.198 wikiuser202206 Statistics
532SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43846438
533Trx read view will not see trx with id >= 70971934951, sees < 70971934950
534---TRANSACTION (0x7fac80a42680), ACTIVE 32022 sec estimating records in index range
535mysql tables in use 1, locked 0
5360 lock struct(s), heap size 1128, 0 row lock(s)
537MariaDB thread id 119653414, OS thread handle 139965873366784, query id 1629979214 10.64.16.154 wikiuser202206 Statistics
538SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 27077959
539Trx read view will not see trx with id >= 70971934951, sees < 70971934950
540---TRANSACTION (0x7fac80a29a80), ACTIVE 32022 sec estimating records in index range
541mysql tables in use 1, locked 0
5420 lock struct(s), heap size 1128, 0 row lock(s)
543MariaDB thread id 119653540, OS thread handle 139968392292096, query id 1629976542 10.64.48.212 wikiuser202206 Statistics
544SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13825260
545Trx read view will not see trx with id >= 70971934951, sees < 70971934950
546---TRANSACTION (0x7fac809e8580), ACTIVE 32022 sec estimating records in index range
547mysql tables in use 1, locked 0
5480 lock struct(s), heap size 1128, 0 row lock(s)
549MariaDB thread id 119653537, OS thread handle 139968397002496, query id 1629976222 10.64.16.215 wikiuser202206 Statistics
550SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592
551Trx read view will not see trx with id >= 70971934951, sees < 70971934950
552---TRANSACTION (0x7fac80a4f780), ACTIVE 32022 sec starting index read
553mysql tables in use 2, locked 0
5540 lock struct(s), heap size 1128, 0 row lock(s)
555MariaDB thread id 119653513, OS thread handle 140377587332864, query id 1629976669 10.64.48.192 wikiuser202206 Statistics
556SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WikiCleanerBot'
557Trx read view will not see trx with id >= 70971934951, sees < 70971934950
558---TRANSACTION (0x7fac80a6e680), ACTIVE 32022 sec starting index read
559mysql tables in use 2, locked 0
5600 lock struct(s), heap size 1128, 0 row lock(s)
561MariaDB thread id 119653370, OS thread handle 139968376944384, query id 1629978577 10.64.32.66 wikiuser202206 Statistics
562SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Nat965'
563Trx read view will not see trx with id >= 70971934951, sees < 70971934950
564---TRANSACTION (0x7fac80a1f580), ACTIVE 32022 sec estimating records in index range
565mysql tables in use 1, locked 0
5660 lock struct(s), heap size 1128, 0 row lock(s)
567MariaDB thread id 119653431, OS thread handle 140377590200064, query id 1629976996 10.64.32.126 wikiuser202206 Statistics
568SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 19295592
569Trx read view will not see trx with id >= 70971934951, sees < 70971934950
570---TRANSACTION (0x7fac80a2b080), ACTIVE 32022 sec starting index read
571mysql tables in use 2, locked 0
5720 lock struct(s), heap size 1128, 0 row lock(s)
573MariaDB thread id 119653376, OS thread handle 140377585899264, query id 1629978586 10.64.48.193 wikiuser202206 Statistics
574SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Thegeordieman'
575Trx read view will not see trx with id >= 70971934951, sees < 70971934950
576---TRANSACTION (0x7fac809e5980), ACTIVE 32022 sec estimating records in index range
577mysql tables in use 1, locked 0
5780 lock struct(s), heap size 1128, 0 row lock(s)
579MariaDB thread id 119653283, OS thread handle 139968381859584, query id 1629975515 10.64.48.200 wikiuser202206 Statistics
580SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43041325
581Trx read view will not see trx with id >= 70971934951, sees < 70971934950
582---TRANSACTION (0x7fac80a96f80), ACTIVE 32022 sec estimating records in index range
583mysql tables in use 1, locked 0
5840 lock struct(s), heap size 1128, 0 row lock(s)
585MariaDB thread id 119653252, OS thread handle 139968356062976, query id 1629975443 10.64.16.215 wikiuser202206 Statistics
586SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430
587Trx read view will not see trx with id >= 70971934951, sees < 70971934950
588---TRANSACTION (0x7fac809f7780), ACTIVE 32022 sec estimating records in index range
589mysql tables in use 1, locked 0
5900 lock struct(s), heap size 1128, 0 row lock(s)
591MariaDB thread id 119653188, OS thread handle 139964916778752, query id 1629978436 10.64.32.42 wikiuser202206 Statistics
592SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 7891
593Trx read view will not see trx with id >= 70971934951, sees < 70971934950
594---TRANSACTION (0x7fac80a2d180), ACTIVE 32022 sec starting index read
595mysql tables in use 2, locked 0
5960 lock struct(s), heap size 1128, 0 row lock(s)
597MariaDB thread id 119653251, OS thread handle 139968398845696, query id 1629977590 10.64.32.124 wikiuser202206 Statistics
598SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'EvergreenFir'
599Trx read view will not see trx with id >= 70971934951, sees < 70971934950
600---TRANSACTION (0x7fac80a3fa80), ACTIVE 32022 sec starting index read
601mysql tables in use 2, locked 0
6020 lock struct(s), heap size 1128, 0 row lock(s)
603MariaDB thread id 119653303, OS thread handle 139968365274880, query id 1629974909 10.64.48.191 wikiuser202206 Statistics
604SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot'
605Trx read view will not see trx with id >= 70971934951, sees < 70971934950
606---TRANSACTION (0x7fac80a39780), ACTIVE 32022 sec estimating records in index range
607mysql tables in use 1, locked 0
6080 lock struct(s), heap size 1128, 0 row lock(s)
609MariaDB thread id 119653272, OS thread handle 139968398026496, query id 1629974214 10.64.0.158 wikiuser202206 Statistics
610SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655
611Trx read view will not see trx with id >= 70971934951, sees < 70971934950
612---TRANSACTION (0x7fac80a9dd80), ACTIVE 32022 sec estimating records in index range
613mysql tables in use 1, locked 0
6140 lock struct(s), heap size 1128, 0 row lock(s)
615MariaDB thread id 119653137, OS thread handle 139968369161984, query id 1629976231 10.64.32.42 wikiuser202206 Statistics
616SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430
617Trx read view will not see trx with id >= 70971934951, sees < 70971934950
618---TRANSACTION (0x7fac80a8e080), ACTIVE 32022 sec estimating records in index range
619mysql tables in use 1, locked 0
6200 lock struct(s), heap size 1128, 0 row lock(s)
621MariaDB thread id 119653154, OS thread handle 140377586104064, query id 1629975010 10.64.32.54 wikiuser202206 Statistics
622SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 42487127
623Trx read view will not see trx with id >= 70971934951, sees < 70971934950
624---TRANSACTION (0x7fac80a8bf80), ACTIVE 32022 sec estimating records in index range
625mysql tables in use 1, locked 0
6260 lock struct(s), heap size 1128, 0 row lock(s)
627MariaDB thread id 119653250, OS thread handle 139968378173184, query id 1629974075 10.64.32.125 wikiuser202206 Statistics
628SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 41449807
629Trx read view will not see trx with id >= 70971934951, sees < 70971934950
630---TRANSACTION (0x7fac809e9b80), ACTIVE 32022 sec starting index read
631mysql tables in use 2, locked 0
6320 lock struct(s), heap size 1128, 0 row lock(s)
633MariaDB thread id 119653196, OS thread handle 139964919850752, query id 1629976228 10.64.32.34 wikiuser202206 Statistics
634SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Mdnavman'
635Trx read view will not see trx with id >= 70971934951, sees < 70971934950
636---TRANSACTION (0x7fac80a85c80), ACTIVE 32022 sec estimating records in index range
637mysql tables in use 1, locked 0
6380 lock struct(s), heap size 1128, 0 row lock(s)
639MariaDB thread id 119653130, OS thread handle 139968371414784, query id 1629974174 10.64.32.34 wikiuser202206 Statistics
640SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40333523
641Trx read view will not see trx with id >= 70971934951, sees < 70971934950
642---TRANSACTION (0x7fac80a46880), ACTIVE 32022 sec starting index read
643mysql tables in use 2, locked 0
6440 lock struct(s), heap size 1128, 0 row lock(s)
645MariaDB thread id 119653108, OS thread handle 139968398640896, query id 1629974676 10.64.48.226 wikiuser202206 Statistics
646SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao'
647Trx read view will not see trx with id >= 70971934951, sees < 70971934950
648---TRANSACTION (0x7fac80a3b880), ACTIVE 32022 sec estimating records in index range
649mysql tables in use 1, locked 0
6500 lock struct(s), heap size 1128, 0 row lock(s)
651MariaDB thread id 119653099, OS thread handle 139968403760896, query id 1629974743 10.64.48.86 wikiuser202206 Statistics
652SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43087271
653Trx read view will not see trx with id >= 70971934951, sees < 70971934950
654---TRANSACTION (0x7fac80a3ce80), ACTIVE 32022 sec starting index read
655mysql tables in use 2, locked 0
6560 lock struct(s), heap size 1128, 0 row lock(s)
657MariaDB thread id 119653123, OS thread handle 139968372643584, query id 1629973808 10.64.0.94 wikiuser202206 Statistics
658SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot'
659Trx read view will not see trx with id >= 70971934951, sees < 70971934950
660---TRANSACTION (0x7fac80a9f380), ACTIVE 32022 sec estimating records in index range
661mysql tables in use 1, locked 0
6620 lock struct(s), heap size 1128, 0 row lock(s)
663MariaDB thread id 119653046, OS thread handle 139964922103552, query id 1629973926 10.64.48.194 wikiuser202206 Statistics
664SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 49214
665Trx read view will not see trx with id >= 70971934951, sees < 70971934950
666---TRANSACTION (0x7fac80a82580), ACTIVE 32022 sec starting index read
667mysql tables in use 2, locked 0
6680 lock struct(s), heap size 1128, 0 row lock(s)
669MariaDB thread id 119652998, OS thread handle 139968394749696, query id 1629972555 10.64.16.198 wikiuser202206 Statistics
670SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'THOMASG 7623'
671Trx read view will not see trx with id >= 70971934951, sees < 70971934950
672---TRANSACTION (0x7fac80a95980), ACTIVE 32022 sec starting index read
673mysql tables in use 2, locked 0
6740 lock struct(s), heap size 1128, 0 row lock(s)
675MariaDB thread id 119653039, OS thread handle 139964920669952, query id 1629976407 10.64.32.48 wikiuser202206 Statistics
676SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Johnpacklambert'
677Trx read view will not see trx with id >= 70971934951, sees < 70971934950
678---TRANSACTION (0x7fac80a90180), ACTIVE 32022 sec starting index read
679mysql tables in use 2, locked 0
6800 lock struct(s), heap size 1128, 0 row lock(s)
681MariaDB thread id 119652950, OS thread handle 139968391882496, query id 1629975506 10.64.48.197 wikiuser202206 Statistics
682SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III'
683Trx read view will not see trx with id >= 70971934951, sees < 70971934950
684---TRANSACTION (0x7fac80a15080), ACTIVE 32022 sec starting index read
685mysql tables in use 2, locked 0
6860 lock struct(s), heap size 1128, 0 row lock(s)
687MariaDB thread id 119653079, OS thread handle 139968370185984, query id 1629972967 10.64.32.121 wikiuser202206 Statistics
688SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'John of Reading'
689Trx read view will not see trx with id >= 70971934951, sees < 70971934950
690---TRANSACTION (0x7fac80a06980), ACTIVE 32022 sec estimating records in index range
691mysql tables in use 1, locked 0
6920 lock struct(s), heap size 1128, 0 row lock(s)
693MariaDB thread id 119653049, OS thread handle 139968367933184, query id 1629972125 10.64.48.215 wikiuser202206 Statistics
694SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430
695Trx read view will not see trx with id >= 70971934951, sees < 70971934950
696---TRANSACTION (0x7fac80a49480), ACTIVE 32022 sec estimating records in index range
697mysql tables in use 1, locked 0
6980 lock struct(s), heap size 1128, 0 row lock(s)
699MariaDB thread id 119653043, OS thread handle 139965871113984, query id 1629972985 10.64.0.160 wikiuser202206 Statistics
700SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1461430
701Trx read view will not see trx with id >= 70971934951, sees < 70971934950
702---TRANSACTION (0x7fac80a55a80), ACTIVE 32023 sec starting index read
703mysql tables in use 2, locked 0
7040 lock struct(s), heap size 1128, 0 row lock(s)
705MariaDB thread id 119652971, OS thread handle 139968391063296, query id 1629973219 10.64.48.192 wikiuser202206 Statistics
706SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'CodeTalker'
707Trx read view will not see trx with id >= 70971934951, sees < 70971934950
708---TRANSACTION (0x7fac80a08a80), ACTIVE 32023 sec starting index read
709mysql tables in use 2, locked 0
7100 lock struct(s), heap size 1128, 0 row lock(s)
711MariaDB thread id 119653031, OS thread handle 139965872342784, query id 1629982140 10.64.0.92 wikiuser202206 Statistics
712SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Jochem van Hees'
713Trx read view will not see trx with id >= 70971934951, sees < 70971934950
714---TRANSACTION (0x7fac80a91780), ACTIVE 32023 sec starting index read
715mysql tables in use 2, locked 0
7160 lock struct(s), heap size 1128, 0 row lock(s)
717MariaDB thread id 119652977, OS thread handle 139968372233984, query id 1629975934 10.64.32.44 wikiuser202206 Statistics
718SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Rusted AutoParts'
719Trx read view will not see trx with id >= 70971934951, sees < 70971934950
720---TRANSACTION (0x7fac80a8b480), ACTIVE 32023 sec starting index read
721mysql tables in use 2, locked 0
7220 lock struct(s), heap size 1128, 0 row lock(s)
723MariaDB thread id 119652893, OS thread handle 139968368137984, query id 1629976083 10.64.48.193 wikiuser202206 Statistics
724SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'We moved to 8.12'
725Trx read view will not see trx with id >= 70971934951, sees < 70971934950
726---TRANSACTION (0x7fac80a40580), ACTIVE 32023 sec estimating records in index range
727mysql tables in use 1, locked 0
7280 lock struct(s), heap size 1128, 0 row lock(s)
729MariaDB thread id 119652879, OS thread handle 139968405194496, query id 1629971970 10.64.0.158 wikiuser202206 Statistics
730SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655
731Trx read view will not see trx with id >= 70971934951, sees < 70971934950
732---TRANSACTION (0x7fac80a50d80), ACTIVE 32023 sec starting index read
733mysql tables in use 2, locked 0
7340 lock struct(s), heap size 1128, 0 row lock(s)
735MariaDB thread id 119653008, OS thread handle 139968395159296, query id 1629972800 10.64.32.48 wikiuser202206 Statistics
736SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dinnerbrone'
737Trx read view will not see trx with id >= 70971934951, sees < 70971934950
738---TRANSACTION (0x7fac80a17180), ACTIVE 32023 sec starting index read
739mysql tables in use 2, locked 0
7400 lock struct(s), heap size 1128, 0 row lock(s)
741MariaDB thread id 119652763, OS thread handle 139964919441152, query id 1629976259 10.64.0.94 wikiuser202206 Statistics
742SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao'
743Trx read view will not see trx with id >= 70971934951, sees < 70971934950
744---TRANSACTION (0x7fac80a67880), ACTIVE 32023 sec estimating records in index range
745mysql tables in use 1, locked 0
7460 lock struct(s), heap size 1128, 0 row lock(s)
747MariaDB thread id 119652877, OS thread handle 139964917802752, query id 1629976308 10.64.32.126 wikiuser202206 Statistics
748SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 596947
749Trx read view will not see trx with id >= 70971934951, sees < 70971934950
750---TRANSACTION (0x7fac80a75480), ACTIVE 32023 sec starting index read
751mysql tables in use 2, locked 0
7520 lock struct(s), heap size 1128, 0 row lock(s)
753MariaDB thread id 119652773, OS thread handle 139968406218496, query id 1629970881 10.64.16.194 wikiuser202206 Statistics
754SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Walrus Ji'
755Trx read view will not see trx with id >= 70971934951, sees < 70971934950
756---TRANSACTION (0x7fac80a5ff80), ACTIVE 32023 sec estimating records in index range
757mysql tables in use 1, locked 0
7580 lock struct(s), heap size 1128, 0 row lock(s)
759MariaDB thread id 119652629, OS thread handle 139968391677696, query id 1629972217 10.64.32.126 wikiuser202206 Statistics
760SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1005449
761Trx read view will not see trx with id >= 70971934951, sees < 70971934950
762---TRANSACTION (0x7fac80a4c080), ACTIVE 32023 sec estimating records in index range
763mysql tables in use 1, locked 0
7640 lock struct(s), heap size 1128, 0 row lock(s)
765MariaDB thread id 119652813, OS thread handle 140377583851264, query id 1629973651 10.64.32.42 wikiuser202206 Statistics
766SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 577139
767Trx read view will not see trx with id >= 70971934951, sees < 70971934950
768---TRANSACTION (0x7fac80a2c680), ACTIVE 32023 sec starting index read
769mysql tables in use 2, locked 0
7700 lock struct(s), heap size 1128, 0 row lock(s)
771MariaDB thread id 119652790, OS thread handle 139968406423296, query id 1629975254 10.64.32.66 wikiuser202206 Statistics
772SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'OGBC1992'
773Trx read view will not see trx with id >= 70971934951, sees < 70971934950
774---TRANSACTION (0x7fac80a05380), ACTIVE 32023 sec starting index read
775mysql tables in use 2, locked 0
7760 lock struct(s), heap size 1128, 0 row lock(s)
777MariaDB thread id 119652915, OS thread handle 139968400893696, query id 1629972035 10.64.0.60 wikiuser202206 Statistics
778SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'EEJB'
779Trx read view will not see trx with id >= 70971934951, sees < 70971934950
780---TRANSACTION (0x7fac80a14580), ACTIVE 32023 sec starting index read
781mysql tables in use 2, locked 0
7820 lock struct(s), heap size 1128, 0 row lock(s)
783MariaDB thread id 119652899, OS thread handle 139968355038976, query id 1629971435 10.64.32.35 wikiuser202206 Statistics
784SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot'
785Trx read view will not see trx with id >= 70971934951, sees < 70971934950
786---TRANSACTION (0x7fac80a86780), ACTIVE 32023 sec starting index read
787mysql tables in use 2, locked 0
7880 lock struct(s), heap size 1128, 0 row lock(s)
789MariaDB thread id 119652721, OS thread handle 139968377968384, query id 1629973524 10.64.48.207 wikiuser202206 Statistics
790SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Volcanoguy'
791Trx read view will not see trx with id >= 70971934951, sees < 70971934950
792---TRANSACTION (0x7fac809f8d80), ACTIVE 32023 sec starting index read
793mysql tables in use 2, locked 0
7940 lock struct(s), heap size 1128, 0 row lock(s)
795MariaDB thread id 119652734, OS thread handle 139968405808896, query id 1629974521 10.64.0.59 wikiuser202206 Statistics
796SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bermicourt'
797Trx read view will not see trx with id >= 70971934951, sees < 70971934950
798---TRANSACTION (0x7fac80a4d680), ACTIVE 32023 sec starting index read
799mysql tables in use 2, locked 0
8000 lock struct(s), heap size 1128, 0 row lock(s)
801MariaDB thread id 119652746, OS thread handle 139968370595584, query id 1629972763 10.64.0.60 wikiuser202206 Statistics
802SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bawanio'
803Trx read view will not see trx with id >= 70971934951, sees < 70971934950
804---TRANSACTION (0x7fac809fa380), ACTIVE 32023 sec starting index read
805mysql tables in use 2, locked 0
8060 lock struct(s), heap size 1128, 0 row lock(s)
807MariaDB thread id 119652747, OS thread handle 139968399050496, query id 1629969614 10.64.48.217 wikiuser202206 Statistics
808SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cyberbot II'
809Trx read view will not see trx with id >= 70971934951, sees < 70971934950
810---TRANSACTION (0x7fac80a7ac80), ACTIVE 32023 sec starting index read
811mysql tables in use 2, locked 0
8120 lock struct(s), heap size 1128, 0 row lock(s)
813MariaDB thread id 119652687, OS thread handle 140377588971264, query id 1629970427 10.64.32.34 wikiuser202206 Statistics
814SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Loafiewa'
815Trx read view will not see trx with id >= 70971934951, sees < 70971934950
816---TRANSACTION (0x7fac80a64c80), ACTIVE 32023 sec estimating records in index range
817mysql tables in use 1, locked 0
8180 lock struct(s), heap size 1128, 0 row lock(s)
819MariaDB thread id 119652591, OS thread handle 139968396183296, query id 1629969576 10.64.48.209 wikiuser202206 Statistics
820SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 44130269
821Trx read view will not see trx with id >= 70971934951, sees < 70971934950
822---TRANSACTION (0x7fac80a50280), ACTIVE 32023 sec starting index read
823mysql tables in use 2, locked 0
8240 lock struct(s), heap size 1128, 0 row lock(s)
825MariaDB thread id 119652661, OS thread handle 139968404989696, query id 1629969088 10.64.16.196 wikiuser202206 Statistics
826SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WE7274'
827Trx read view will not see trx with id >= 70971934951, sees < 70971934950
828---TRANSACTION (0x7fac80a11980), ACTIVE 32023 sec estimating records in index range
829mysql tables in use 1, locked 0
8300 lock struct(s), heap size 1128, 0 row lock(s)
831MariaDB thread id 119652718, OS thread handle 139968405604096, query id 1629968891 10.64.48.210 wikiuser202206 Statistics
832SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 43217253
833Trx read view will not see trx with id >= 70971934951, sees < 70971934950
834---TRANSACTION (0x7fac80a03d80), ACTIVE 32023 sec starting index read
835mysql tables in use 2, locked 0
8360 lock struct(s), heap size 1128, 0 row lock(s)
837MariaDB thread id 119652682, OS thread handle 140377591224064, query id 1629968604 10.64.32.57 wikiuser202206 Statistics
838SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Simandabe'
839Trx read view will not see trx with id >= 70971934951, sees < 70971934950
840---TRANSACTION (0x7fac80a10e80), ACTIVE 32023 sec estimating records in index range
841mysql tables in use 1, locked 0
8420 lock struct(s), heap size 1128, 0 row lock(s)
843MariaDB thread id 119652576, OS thread handle 139968367113984, query id 1629968701 10.64.0.11 wikiuser202206 Statistics
844SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1189543
845Trx read view will not see trx with id >= 70971934951, sees < 70971934950
846---TRANSACTION (0x7fac80a7e380), ACTIVE 32023 sec starting index read
847mysql tables in use 2, locked 0
8480 lock struct(s), heap size 1128, 0 row lock(s)
849MariaDB thread id 119652525, OS thread handle 140377591019264, query id 1629968439 10.64.32.59 wikiuser202206 Statistics
850SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'WE7274'
851Trx read view will not see trx with id >= 70971934951, sees < 70971934950
852---TRANSACTION (0x7fac80a7c280), ACTIVE 32023 sec starting index read
853mysql tables in use 2, locked 0
8540 lock struct(s), heap size 1128, 0 row lock(s)
855MariaDB thread id 119652653, OS thread handle 139968399460096, query id 1629972135 10.64.32.130 wikiuser202206 Statistics
856SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Alansohn'
857Trx read view will not see trx with id >= 70971934951, sees < 70971934950
858---TRANSACTION (0x7fac80a13a80), ACTIVE 32023 sec estimating records in index range
859mysql tables in use 1, locked 0
8600 lock struct(s), heap size 1128, 0 row lock(s)
861MariaDB thread id 119652575, OS thread handle 139968367523584, query id 1629968668 10.64.16.161 wikiuser202206 Statistics
862SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 27446209
863Trx read view will not see trx with id >= 70971934951, sees < 70971934950
864---TRANSACTION (0x7fac809ed280), ACTIVE 32023 sec estimating records in index range
865mysql tables in use 1, locked 0
8660 lock struct(s), heap size 1128, 0 row lock(s)
867MariaDB thread id 119652630, OS thread handle 139968374281984, query id 1629968417 10.64.32.49 wikiuser202206 Statistics
868SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2243886
869Trx read view will not see trx with id >= 70971934951, sees < 70971934950
870---TRANSACTION (0x7fac80a5a780), ACTIVE 32023 sec starting index read
871mysql tables in use 2, locked 0
8720 lock struct(s), heap size 1128, 0 row lock(s)
873MariaDB thread id 119652625, OS thread handle 139968393520896, query id 1629969385 10.64.32.66 wikiuser202206 Statistics
874SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Joannagorzedowska'
875Trx read view will not see trx with id >= 70971934951, sees < 70971934950
876---TRANSACTION (0x7fac80a65780), ACTIVE 32023 sec starting index read
877mysql tables in use 2, locked 0
8780 lock struct(s), heap size 1128, 0 row lock(s)
879MariaDB thread id 119652541, OS thread handle 139968381654784, query id 1629968477 10.64.48.214 wikiuser202206 Statistics
880SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot'
881Trx read view will not see trx with id >= 70971934951, sees < 70971934950
882---TRANSACTION (0x7fac80a5d380), ACTIVE 32023 sec starting index read
883mysql tables in use 2, locked 0
8840 lock struct(s), heap size 1128, 0 row lock(s)
885MariaDB thread id 119652372, OS thread handle 139968370390784, query id 1629969322 10.64.32.121 wikiuser202206 Statistics
886SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BD2412'
887Trx read view will not see trx with id >= 70971934951, sees < 70971934950
888---TRANSACTION (0x7fac80a58680), ACTIVE 32023 sec estimating records in index range
889mysql tables in use 1, locked 0
8900 lock struct(s), heap size 1128, 0 row lock(s)
891MariaDB thread id 119652521, OS thread handle 140377586513664, query id 1629969365 10.64.32.40 wikiuser202206 Statistics
892SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4758577
893Trx read view will not see trx with id >= 70971934951, sees < 70971934950
894---TRANSACTION (0x7fac80a52e80), ACTIVE 32023 sec starting index read
895mysql tables in use 2, locked 0
8960 lock struct(s), heap size 1128, 0 row lock(s)
897MariaDB thread id 119652181, OS thread handle 139968394544896, query id 1629975324 10.64.0.9 wikiuser202206 Statistics
898SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Facts707'
899Trx read view will not see trx with id >= 70971934951, sees < 70971934950
900---TRANSACTION (0x7fac809e4e80), ACTIVE 32023 sec estimating records in index range
901mysql tables in use 1, locked 0
9020 lock struct(s), heap size 1128, 0 row lock(s)
903MariaDB thread id 119652522, OS thread handle 139968378992384, query id 1629967917 10.64.16.161 wikiuser202206 Statistics
904SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 38913931
905Trx read view will not see trx with id >= 70971934951, sees < 70971934950
906---TRANSACTION (0x7fac80a36080), ACTIVE 32023 sec starting index read
907mysql tables in use 2, locked 0
9080 lock struct(s), heap size 1128, 0 row lock(s)
909MariaDB thread id 119652474, OS thread handle 139968369571584, query id 1629968705 10.64.16.213 wikiuser202206 Statistics
910SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dsp13'
911Trx read view will not see trx with id >= 70971934951, sees < 70971934950
912---TRANSACTION (0x7fac80a30880), ACTIVE 32023 sec starting index read
913mysql tables in use 2, locked 0
9140 lock struct(s), heap size 1128, 0 row lock(s)
915MariaDB thread id 119652469, OS thread handle 139968372029184, query id 1629967509 10.64.48.194 wikiuser202206 Statistics
916SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl'
917Trx read view will not see trx with id >= 70971934951, sees < 70971934950
918---TRANSACTION (0x7fac80a0cc80), ACTIVE 32023 sec starting index read
919mysql tables in use 2, locked 0
9200 lock struct(s), heap size 1128, 0 row lock(s)
921MariaDB thread id 119652382, OS thread handle 139968374896384, query id 1629968274 10.64.48.215 wikiuser202206 Statistics
922SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Glorious Engine'
923Trx read view will not see trx with id >= 70971934951, sees < 70971934950
924---TRANSACTION (0x7fac80a57b80), ACTIVE 32023 sec starting index read
925mysql tables in use 2, locked 0
9260 lock struct(s), heap size 1128, 0 row lock(s)
927MariaDB thread id 119652423, OS thread handle 139968395364096, query id 1629970388 10.64.48.213 wikiuser202206 Statistics
928SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Dale Arnett'
929Trx read view will not see trx with id >= 70971934951, sees < 70971934950
930---TRANSACTION (0x7fac80a31e80), ACTIVE 32023 sec estimating records in index range
931mysql tables in use 1, locked 0
9320 lock struct(s), heap size 1128, 0 row lock(s)
933MariaDB thread id 119652314, OS thread handle 140377589995264, query id 1629966707 10.64.32.47 wikiuser202206 Statistics
934SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40689307
935Trx read view will not see trx with id >= 70971934951, sees < 70971934950
936---TRANSACTION (0x7fac80a3ad80), ACTIVE 32023 sec starting index read
937mysql tables in use 2, locked 0
9380 lock struct(s), heap size 1128, 0 row lock(s)
939MariaDB thread id 119652378, OS thread handle 139968368342784, query id 1629968059 10.64.32.54 wikiuser202206 Statistics
940SELECT /* GenderCache::doQuery-ApiPageSet::initFromQueryResult */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Fembelle'
941Trx read view will not see trx with id >= 70971934951, sees < 70971934950
942---TRANSACTION (0x7fac80a38c80), ACTIVE 32023 sec starting index read
943mysql tables in use 2, locked 0
9440 lock struct(s), heap size 1128, 0 row lock(s)
945MariaDB thread id 119652284, OS thread handle 139968381245184, query id 1629971207 10.64.32.124 wikiuser202206 Statistics
946SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Immanuelle'
947Trx read view will not see trx with id >= 70971934951, sees < 70971934950
948---TRANSACTION (0x7fac80a26e80), ACTIVE 32023 sec estimating records in index range
949mysql tables in use 1, locked 0
9500 lock struct(s), heap size 1128, 0 row lock(s)
951MariaDB thread id 119652365, OS thread handle 139968372848384, query id 1629966008 10.64.32.127 wikiuser202206 Statistics
952SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4182662
953Trx read view will not see trx with id >= 70971934951, sees < 70971934950
954---TRANSACTION (0x7fac80a44780), ACTIVE 32023 sec starting index read
955mysql tables in use 2, locked 0
9560 lock struct(s), heap size 1128, 0 row lock(s)
957MariaDB thread id 119652300, OS thread handle 139968400688896, query id 1629972559 10.64.32.130 wikiuser202206 Statistics
958SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Deidonata'
959Trx read view will not see trx with id >= 70971934951, sees < 70971934950
960---TRANSACTION (0x7fac80a43c80), ACTIVE 32023 sec starting index read
961mysql tables in use 2, locked 0
9620 lock struct(s), heap size 1128, 0 row lock(s)
963MariaDB thread id 119652325, OS thread handle 139968365889280, query id 1629969384 10.64.48.211 wikiuser202206 Statistics
964SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Hiddenstranger'
965Trx read view will not see trx with id >= 70971934951, sees < 70971934950
966---TRANSACTION (0x7fac80a2f280), ACTIVE 32023 sec estimating records in index range
967mysql tables in use 1, locked 0
9680 lock struct(s), heap size 1128, 0 row lock(s)
969MariaDB thread id 119652244, OS thread handle 139968377763584, query id 1629965749 10.64.16.166 wikiuser202206 Statistics
970SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 40811901
971Trx read view will not see trx with id >= 70971934951, sees < 70971934950
972---TRANSACTION (0x7fac80a3ef80), ACTIVE 32023 sec estimating records in index range
973mysql tables in use 1, locked 0
9740 lock struct(s), heap size 1128, 0 row lock(s)
975MariaDB thread id 119652125, OS thread handle 140377585694464, query id 1629966249 10.64.48.202 wikiuser202206 Statistics
976SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16266655
977Trx read view will not see trx with id >= 70971934951, sees < 70971934950
978---TRANSACTION (0x7fac80a3e480), ACTIVE 32023 sec starting index read
979mysql tables in use 2, locked 0
9800 lock struct(s), heap size 1128, 0 row lock(s)
981MariaDB thread id 119652255, OS thread handle 139968404170496, query id 1629966339 10.64.32.125 wikiuser202206 Statistics
982SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'محمد سلامات الدمنهوري'
983Trx read view will not see trx with id >= 70971934951, sees < 70971934950
984---TRANSACTION (0x7fac80a37680), ACTIVE 32023 sec starting index read
985mysql tables in use 2, locked 0
9860 lock struct(s), heap size 1128, 0 row lock(s)
987MariaDB thread id 119652121, OS thread handle 139968393725696, query id 1629965002 10.64.32.52 wikiuser202206 Statistics
988SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Norafares'
989Trx read view will not see trx with id >= 70971934951, sees < 70971934950
990---TRANSACTION (0x7fac80a35580), ACTIVE 32023 sec starting index read
991mysql tables in use 2, locked 0
9920 lock struct(s), heap size 1128, 0 row lock(s)
993MariaDB thread id 119652164, OS thread handle 140377589176064, query id 1629965008 10.64.0.69 wikiuser202206 Statistics
994SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Valehiro'
995Trx read view will not see trx with id >= 70971934951, sees < 70971934950
996---TRANSACTION (0x7fac80a23780), ACTIVE 32023 sec starting index read
997mysql tables in use 2, locked 0
9980 lock struct(s), heap size 1128, 0 row lock(s)
999MariaDB thread id 119652144, OS thread handle 139968356472576, query id 1629969885 10.64.32.49 wikiuser202206 Statistics
1000SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl'
1001Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1002---TRANSACTION (0x7fac809fb980), ACTIVE 32023 sec starting index read
1003mysql tables in use 2, locked 0
10040 lock struct(s), heap size 1128, 0 row lock(s)
1005MariaDB thread id 119652231, OS thread handle 140378859300608, query id 1629971453 10.64.32.46 wikiuser202206 Statistics
1006SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Lagelander'
1007Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1008---TRANSACTION (0x7fac80a0ab80), ACTIVE 32023 sec estimating records in index range
1009mysql tables in use 1, locked 0
10100 lock struct(s), heap size 1128, 0 row lock(s)
1011MariaDB thread id 119652250, OS thread handle 139968397821696, query id 1629965118 10.64.32.132 wikiuser202206 Statistics
1012SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13467261
1013Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1014---TRANSACTION (0x7fac809e2280), ACTIVE 32023 sec starting index read
1015mysql tables in use 2, locked 0
10160 lock struct(s), heap size 1128, 0 row lock(s)
1017MariaDB thread id 119652201, OS thread handle 139968402941696, query id 1629967384 10.64.48.193 wikiuser202206 Statistics
1018SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ser Amantio di Nicolao'
1019Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1020---TRANSACTION (0x7fac80a34a80), ACTIVE 32023 sec estimating records in index range
1021mysql tables in use 1, locked 0
10220 lock struct(s), heap size 1128, 0 row lock(s)
1023MariaDB thread id 119652180, OS thread handle 139968374077184, query id 1629964451 10.64.48.203 wikiuser202206 Statistics
1024SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 41007477
1025Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1026---TRANSACTION (0x7fac80a33f80), ACTIVE 32023 sec starting index read
1027mysql tables in use 2, locked 0
10280 lock struct(s), heap size 1128, 0 row lock(s)
1029MariaDB thread id 119652178, OS thread handle 139968356267776, query id 1629964314 10.64.32.52 wikiuser202206 Statistics
1030SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BSitzmann (WMF)'
1031Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1032---TRANSACTION (0x7fac80a2fd80), ACTIVE 32023 sec estimating records in index range
1033mysql tables in use 1, locked 0
10340 lock struct(s), heap size 1128, 0 row lock(s)
1035MariaDB thread id 119652102, OS thread handle 139968378377984, query id 1629964457 10.64.0.195 wikiuser202206 Statistics
1036SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 13467261
1037Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1038---TRANSACTION (0x7fac80a2bb80), ACTIVE 32023 sec starting index read
1039mysql tables in use 2, locked 0
10400 lock struct(s), heap size 1128, 0 row lock(s)
1041MariaDB thread id 119652110, OS thread handle 139965874390784, query id 1629964258 10.64.16.211 wikiuser202206 Statistics
1042SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Tayyab69'
1043Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1044---TRANSACTION (0x7fac80a1b380), ACTIVE 32023 sec starting index read
1045mysql tables in use 2, locked 0
10460 lock struct(s), heap size 1128, 0 row lock(s)
1047MariaDB thread id 119652070, OS thread handle 140377586308864, query id 1629964250 10.64.16.41 wikiuser202206 Statistics
1048SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SUBHAJIT SANYAL(DEEP)'
1049Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1050---TRANSACTION (0x7fac80a0e280), ACTIVE 32023 sec starting index read
1051mysql tables in use 2, locked 0
10520 lock struct(s), heap size 1128, 0 row lock(s)
1053MariaDB thread id 119652098, OS thread handle 140377584465664, query id 1629969409 10.64.0.60 wikiuser202206 Statistics
1054SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sqldf03'
1055Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1056---TRANSACTION (0x7fac809fc480), ACTIVE 32023 sec starting index read
1057mysql tables in use 2, locked 0
10580 lock struct(s), heap size 1128, 0 row lock(s)
1059MariaDB thread id 119652167, OS thread handle 139968394135296, query id 1629964129 10.64.16.154 wikiuser202206 Statistics
1060SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'THOMASG 7623'
1061Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1062---TRANSACTION (0x7fac80a26380), ACTIVE 32023 sec starting index read
1063mysql tables in use 2, locked 0
10640 lock struct(s), heap size 1128, 0 row lock(s)
1065MariaDB thread id 119652150, OS thread handle 140377588766464, query id 1629964730 10.64.0.94 wikiuser202206 Statistics
1066SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Knock97'
1067Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1068---TRANSACTION (0x7fac80a0ed80), ACTIVE 32023 sec starting index read
1069mysql tables in use 2, locked 0
10700 lock struct(s), heap size 1128, 0 row lock(s)
1071MariaDB thread id 119652146, OS thread handle 140377584056064, query id 1629964755 10.64.16.167 wikiuser202206 Statistics
1072SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Qwerfjkl (bot)'
1073Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1074---TRANSACTION (0x7fac809fcf80), ACTIVE 32023 sec starting index read
1075mysql tables in use 2, locked 0
10760 lock struct(s), heap size 1128, 0 row lock(s)
1077MariaDB thread id 119652143, OS thread handle 139968365479680, query id 1629964748 10.64.0.11 wikiuser202206 Statistics
1078SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Monkbot'
1079Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1080---TRANSACTION (0x7fac809e2d80), ACTIVE 32023 sec starting index read
1081mysql tables in use 2, locked 0
10820 lock struct(s), heap size 1128, 0 row lock(s)
1083MariaDB thread id 119652137, OS thread handle 140377584670464, query id 1629964649 10.64.48.196 wikiuser202206 Statistics
1084SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'ResolutionsPerMinute'
1085Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1086---TRANSACTION (0x7fac809fe580), ACTIVE 32023 sec starting index read
1087mysql tables in use 2, locked 0
10880 lock struct(s), heap size 1128, 0 row lock(s)
1089MariaDB thread id 119652135, OS thread handle 140377587742464, query id 1629963853 10.64.16.154 wikiuser202206 Statistics
1090SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sattar Mamadov'
1091Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1092---TRANSACTION (0x7fac80a25880), ACTIVE 32023 sec starting index read
1093mysql tables in use 2, locked 0
10940 lock struct(s), heap size 1128, 0 row lock(s)
1095MariaDB thread id 119652133, OS thread handle 139968397616896, query id 1629964746 10.64.48.194 wikiuser202206 Statistics
1096SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Trappist the monk'
1097Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1098---TRANSACTION (0x7fac809f6180), ACTIVE 32023 sec estimating records in index range
1099mysql tables in use 1, locked 0
11000 lock struct(s), heap size 1128, 0 row lock(s)
1101MariaDB thread id 119652127, OS thread handle 139968377353984, query id 1629963915 10.64.48.200 wikiuser202206 Statistics
1102SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 36901765
1103Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1104---TRANSACTION (0x7fac80a09580), ACTIVE 32024 sec starting index read
1105mysql tables in use 2, locked 0
11060 lock struct(s), heap size 1128, 0 row lock(s)
1107MariaDB thread id 119652111, OS thread handle 139968407242496, query id 1629964588 10.64.0.61 wikiuser202206 Statistics
1108SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'AwardShowFan123'
1109Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1110---TRANSACTION (0x7fac80a01180), ACTIVE 32024 sec starting index read
1111mysql tables in use 2, locked 0
11120 lock struct(s), heap size 1128, 0 row lock(s)
1113MariaDB thread id 119652095, OS thread handle 139968407037696, query id 1629963488 10.64.48.202 wikiuser202206 Statistics
1114SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Vicky1830'
1115Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1116---TRANSACTION (0x7fac809ebc80), ACTIVE 32024 sec estimating records in index range
1117mysql tables in use 1, locked 0
11180 lock struct(s), heap size 1128, 0 row lock(s)
1119MariaDB thread id 119652092, OS thread handle 139968397207296, query id 1629963697 10.64.16.216 wikiuser202206 Statistics
1120SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 1672698
1121Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1122---TRANSACTION (0x7fac80a28f80), ACTIVE 32024 sec starting index read
1123mysql tables in use 2, locked 0
11240 lock struct(s), heap size 1128, 0 row lock(s)
1125MariaDB thread id 119651934, OS thread handle 139968399664896, query id 1629963411 10.64.48.222 wikiuser202206 Statistics
1126SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Sanmeet K Sethi'
1127Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1128---TRANSACTION (0x7fac80a2a580), ACTIVE 32024 sec starting index read
1129mysql tables in use 2, locked 0
11300 lock struct(s), heap size 1128, 0 row lock(s)
1131MariaDB thread id 119652080, OS thread handle 140377588561664, query id 1629965415 10.64.0.160 wikiuser202206 Statistics
1132SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'G0mx'
1133Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1134---TRANSACTION (0x7fac80a20b80), ACTIVE 32024 sec starting index read
1135mysql tables in use 2, locked 0
11360 lock struct(s), heap size 1128, 0 row lock(s)
1137MariaDB thread id 119652075, OS thread handle 139968392906496, query id 1629963592 10.64.48.225 wikiuser202206 Statistics
1138SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Cyberbot I'
1139Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1140---TRANSACTION (0x7fac80a02780), ACTIVE 32024 sec estimating records in index range
1141mysql tables in use 1, locked 0
11420 lock struct(s), heap size 1128, 0 row lock(s)
1143MariaDB thread id 119652061, OS thread handle 140378867562240, query id 1629963503 10.64.32.127 wikiuser202206 Statistics
1144SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 2359310
1145Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1146---TRANSACTION (0x7fac80a0b680), ACTIVE 32024 sec starting index read
1147mysql tables in use 2, locked 0
11480 lock struct(s), heap size 1128, 0 row lock(s)
1149MariaDB thread id 119652071, OS thread handle 139968396388096, query id 1629966540 10.64.32.34 wikiuser202206 Statistics
1150SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Doniago'
1151Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1152---TRANSACTION (0x7fac80a1d480), ACTIVE 32024 sec estimating records in index range
1153mysql tables in use 1, locked 0
11540 lock struct(s), heap size 1128, 0 row lock(s)
1155MariaDB thread id 119652060, OS thread handle 139968401098496, query id 1629963241 10.64.0.59 wikiuser202206 Statistics
1156SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 12491934
1157Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1158---TRANSACTION (0x7fac809e3880), ACTIVE 32024 sec estimating records in index range
1159mysql tables in use 1, locked 0
11600 lock struct(s), heap size 1128, 0 row lock(s)
1161MariaDB thread id 119652053, OS thread handle 140377584260864, query id 1629963215 10.64.0.195 wikiuser202206 Statistics
1162SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 16367662
1163Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1164---TRANSACTION (0x7fac809f3580), ACTIVE 32024 sec starting index read
1165mysql tables in use 2, locked 0
11660 lock struct(s), heap size 1128, 0 row lock(s)
1167MariaDB thread id 119652036, OS thread handle 139968381449984, query id 1629963949 10.64.16.151 wikiuser202206 Statistics
1168SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ffffrr'
1169Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1170---TRANSACTION (0x7fac809f5680), ACTIVE 32024 sec starting index read
1171mysql tables in use 2, locked 0
11720 lock struct(s), heap size 1128, 0 row lock(s)
1173MariaDB thread id 119652033, OS thread handle 139968400484096, query id 1629963940 10.64.48.213 wikiuser202206 Statistics
1174SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JJMC89 bot III'
1175Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1176---TRANSACTION (0x7fac809f1f80), ACTIVE 32024 sec starting index read
1177mysql tables in use 2, locked 0
11780 lock struct(s), heap size 1128, 0 row lock(s)
1179MariaDB thread id 119652031, OS thread handle 139968354629376, query id 1629966541 10.64.32.126 wikiuser202206 Statistics
1180SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BigLordFlash'
1181Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1182---TRANSACTION (0x7fac80a00680), ACTIVE 32024 sec starting index read
1183mysql tables in use 2, locked 0
11840 lock struct(s), heap size 1128, 0 row lock(s)
1185MariaDB thread id 119652020, OS thread handle 140377586718464, query id 1629964131 10.64.0.193 wikiuser202206 Statistics
1186SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GreenC bot'
1187Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1188---TRANSACTION (0x7fac80a0a080), ACTIVE 32024 sec starting index read
1189mysql tables in use 2, locked 0
11900 lock struct(s), heap size 1128, 0 row lock(s)
1191MariaDB thread id 119652013, OS thread handle 139968380425984, query id 1629963685 10.64.32.127 wikiuser202206 Statistics
1192SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = '142rrdhthms'
1193Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1194---TRANSACTION (0x7fac80a1c980), ACTIVE 32024 sec starting index read
1195mysql tables in use 2, locked 0
11960 lock struct(s), heap size 1128, 0 row lock(s)
1197MariaDB thread id 119652012, OS thread handle 139965874595584, query id 1629963875 10.64.48.196 wikiuser202206 Statistics
1198SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Pieces4lifewater'
1199Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1200---TRANSACTION (0x7fac80a17c80), ACTIVE 32024 sec estimating records in index range
1201mysql tables in use 1, locked 0
12020 lock struct(s), heap size 1128, 0 row lock(s)
1203MariaDB thread id 119652006, OS thread handle 139968402532096, query id 1629962812 10.64.48.207 wikiuser202206 Statistics
1204SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 4521552
1205Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1206---TRANSACTION (0x7fac809f4b80), ACTIVE 32024 sec estimating records in index range
1207mysql tables in use 1, locked 0
12080 lock struct(s), heap size 1128, 0 row lock(s)
1209MariaDB thread id 119651980, OS thread handle 139968375510784, query id 1629962595 10.64.48.199 wikiuser202206 Statistics
1210SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb */ up_property,up_value FROM `user_properties` WHERE up_user = 94871
1211Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1212---TRANSACTION (0x7fac80a12f80), ACTIVE 32024 sec starting index read
1213mysql tables in use 2, locked 0
12140 lock struct(s), heap size 1128, 0 row lock(s)
1215MariaDB thread id 119651979, OS thread handle 139968374691584, query id 1629963175 10.64.0.59 wikiuser202206 Statistics
1216SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Kailash29792'
1217Trx read view will not see trx with id >= 70971934951, sees < 70971934950
1218---TRANSACTION (0x7fac809edd80), ACTIVE 32024 sec starting index read
1219mysql tables in use 2, locked 0
12200 lock struct(s), heap size 1128, 0 row lock(s)
1221MariaDB thread id 119651944, OS thread handle 139968371619584, query id 1629963320 10.64.48.206 wikiuser202206 Statistics
1222SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Bloodyboppa'
1223Trx read view will not see trx with id >= 70971934948, sees < 70971934948
1224---TRANSACTION (0x7fac80a20080), ACTIVE 32024 sec starting index read
1225mysql tables in use 2, locked 0
12260 lock struct(s), heap size 1128, 0 row lock(s)
1227MariaDB thread id 119651906, OS thread handle 139968369981184, query id 1629962987 10.64.32.40 wikiuser202206 Statistics
1228SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'AKA Casey Rollins'
1229Trx read view will not see trx with id >= 70971934942, sees < 70971934942
1230---TRANSACTION (0x7fac809f2a80), ACTIVE 32024 sec starting index read
1231mysql tables in use 2, locked 0
12320 lock struct(s), heap size 1128, 0 row lock(s)
1233MariaDB thread id 119651744, OS thread handle 139968366503680, query id 1629966845 10.64.48.213 wikiuser202206 Statistics
1234SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'DannyS712'
1235Trx read view will not see trx with id >= 70971934938, sees < 70971934938
1236---TRANSACTION (0x7fac809fae80), ACTIVE 32024 sec starting index read
1237mysql tables in use 2, locked 0
12380 lock struct(s), heap size 1128, 0 row lock(s)
1239MariaDB thread id 119651867, OS thread handle 139968400074496, query id 1629962963 10.64.0.155 wikiuser202206 Statistics
1240SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Smasongarrison'
1241Trx read view will not see trx with id >= 70971934934, sees < 70971934934
1242---TRANSACTION (0x7fac809eb180), ACTIVE 32024 sec starting index read
1243mysql tables in use 2, locked 0
12440 lock struct(s), heap size 1128, 0 row lock(s)
1245MariaDB thread id 119651865, OS thread handle 139968404375296, query id 1629962202 10.64.16.160 wikiuser202206 Statistics
1246SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'BrownHairedGirl'
1247Trx read view will not see trx with id >= 70971934934, sees < 70971934934
1248---TRANSACTION (0x7fac80a0c180), ACTIVE 32024 sec starting index read
1249mysql tables in use 2, locked 0
12500 lock struct(s), heap size 1128, 0 row lock(s)
1251MariaDB thread id 119651846, OS thread handle 140377590404864, query id 1629962574 10.64.48.226 wikiuser202206 Statistics
1252SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Atchom'
1253Trx read view will not see trx with id >= 70971934934, sees < 70971934934
1254---TRANSACTION (0x7fac80a04880), ACTIVE 32024 sec starting index read
1255mysql tables in use 2, locked 0
12560 lock struct(s), heap size 1128, 0 row lock(s)
1257MariaDB thread id 119651840, OS thread handle 139968376125184, query id 1629962289 10.64.32.45 wikiuser202206 Statistics
1258SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'JustinBoy203'
1259Trx read view will not see trx with id >= 70971934934, sees < 70971934934
1260---TRANSACTION (0x7fac809e7a80), ACTIVE 32024 sec starting index read
1261mysql tables in use 2, locked 0
12620 lock struct(s), heap size 1128, 0 row lock(s)
1263MariaDB thread id 119651824, OS thread handle 139968393316096, query id 1629962328 10.64.16.151 wikiuser202206 Statistics
1264SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Citation bot'
1265Trx read view will not see trx with id >= 70971934930, sees < 70971934930
1266---TRANSACTION (0x7fac809f0980), ACTIVE 32024 sec starting index read
1267mysql tables in use 2, locked 0
12680 lock struct(s), heap size 1128, 0 row lock(s)
1269MariaDB thread id 119651582, OS thread handle 139965872957184, query id 1629963781 10.64.0.11 wikiuser202206 Statistics
1270SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'GuccizBud'
1271Trx read view will not see trx with id >= 70971934858, sees < 70971934858
1272---TRANSACTION (0x7fac80a05e80), ACTIVE 32024 sec starting index read
1273mysql tables in use 2, locked 0
12740 lock struct(s), heap size 1128, 0 row lock(s)
1275MariaDB thread id 119651554, OS thread handle 139968366094080, query id 1629964325 10.64.48.210 wikiuser202206 Statistics
1276SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'Ipigott'
1277Trx read view will not see trx with id >= 70971934846, sees < 70971934846
1278---TRANSACTION (0x7fac80a19d80), ACTIVE 32045 sec starting index read
1279mysql tables in use 2, locked 0
12800 lock struct(s), heap size 1128, 0 row lock(s)
1281MariaDB thread id 119630577, OS thread handle 139968380221184, query id 1629708679 10.64.48.223 wikiuser202206 Statistics
1282SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles'
1283Trx read view will not see trx with id >= 70971928592, sees < 70971928592
1284---TRANSACTION (0x7fac80a19280), ACTIVE 32045 sec starting index read
1285mysql tables in use 2, locked 0
12860 lock struct(s), heap size 1128, 0 row lock(s)
1287MariaDB thread id 119629920, OS thread handle 139968392496896, query id 1629701368 10.64.48.205 wikiuser202206 Statistics
1288SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles'
1289Trx read view will not see trx with id >= 70971928428, sees < 70971928428
1290---TRANSACTION (0x7fac80a18780), ACTIVE 32045 sec starting index read
1291mysql tables in use 2, locked 0
12920 lock struct(s), heap size 1128, 0 row lock(s)
1293MariaDB thread id 119629918, OS thread handle 139968373053184, query id 1629701346 10.64.32.54 wikiuser202206 Statistics
1294SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray */ user_name,up_value FROM `user` LEFT JOIN `user_properties` ON ((user_id = up_user) AND up_property = 'gender') WHERE user_name = 'SamArticles'
1295Trx read view will not see trx with id >= 70971928428, sees < 70971928428
1296---TRANSACTION 70971934950, ACTIVE 32024 sec inserting
1297mysql tables in use 1, locked 1
12988 lock struct(s), heap size 1128, 5 row lock(s), undo log entries 2
1299MariaDB thread id 8, OS thread handle 140378867906304, query id 1629962197 Update
1300INSERT /* MediaWiki\User\UserOptionsManager::saveOptionsInternal */ IGNORE INTO `user_properties` (up_user,up_property,up_value) VALUES (44262714,'growthexperiments-homepage-se-ores-topic-filters','[\"biography\",\"women\",\"business-and-economics\",\"education\",\"food-and-drink\",\"history\",\"military-and-warfare\",\"philosophy-and-religion\",\"politics-and-government\",\"society\",\"transportation\",\"biology\",\"chemistry\",\"computers-and-internet\",\"earth-and-environment\",\"engineering\",\"general-science\",\"mathematics\",\"medicine-and-health\",\"physics\",\"technology\"]')
1301---TRANSACTION (0x7fac809deb80), not started
13020 lock struct(s), heap size 1128, 0 row lock(s)
1303--------
1304FILE I/O
1305--------
1306Pending flushes (fsync) log: 0; buffer pool: 0
130761457636 OS file reads, 245009371 OS file writes, 118118422 OS fsyncs
13080.00 reads/s, 0 avg bytes/read, 4.48 writes/s, 4.48 fsyncs/s
1309-------------------------------------
1310INSERT BUFFER AND ADAPTIVE HASH INDEX
1311-------------------------------------
1312Ibuf: size 1, free list len 185545, seg size 185547, 0 merges
1313merged operations:
1314 insert 0, delete mark 0, delete 0
1315discarded operations:
1316 insert 0, delete mark 0, delete 0
13170.00 hash searches/s, 0.00 non-hash searches/s
1318---
1319LOG
1320---
1321Log sequence number 101777076394813
1322Log flushed up to 101777076394813
1323Pages flushed up to 101776843528342
1324Last checkpoint at 101776843528342
13250 pending log flushes, 0 pending chkp writes
1326105568997 log i/o's done, 4.48 log i/o's/second
1327----------------------
1328BUFFER POOL AND MEMORY
1329----------------------
1330Total large memory allocated 404834222080
1331Dictionary memory allocated 2403586760
1332Buffer pool size 24465792
1333Free buffers 0
1334Database pages 40759347
1335Old database pages 15045910
1336Modified db pages 75662
1337Percent of dirty pages(LRU & free pages): 0.186
1338Max dirty pages percent: 75.000
1339Pending reads 0
1340Pending writes: LRU 0, flush list 0
1341Pages made young 50746304, not young 284505920
13420.00 youngs/s, 0.00 non-youngs/s
1343Pages read 61444226, created 6547976, written 138346328
13440.00 reads/s, 0.14 creates/s, 0.00 writes/s
1345Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000
1346Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s
1347LRU len: 40759347, unzip_LRU len: 4075934
1348I/O sum[0]:cur[0], unzip sum[0]:cur[0]
1349--------------
1350ROW OPERATIONS
1351--------------
1352211 read views open inside InnoDB
1353Process ID=0, Main thread ID=0, state: sleeping
1354Number of rows inserted 185576879, updated 147218285, deleted 159780966, read 11805816873
13554.48 inserts/s, 0.00 updates/s, 0.00 deletes/s, 0.16 reads/s
1356Number of system rows inserted 102553121, updated 0, deleted 102553142, read 102553209
13570.00 inserts/s, 0.00 updates/s, 0.00 deletes/s, 0.00 reads/s
1358----------------------------
1359END OF INNODB MONITOR OUTPUT
1360============================
1361

I need to do some critical maintenance in around 25 minutes, so I need to get ready. I will come back here a bit later once I have checked what we got from the slow query log.

So more info:
At the time of the event, nothing logged apart from:

Jul 27 20:38:32 db1132 mysqld[3344701]: 2022-07-27 20:38:32 119656656 [Note] InnoDB: Number of pools: 2
Jul 27 20:38:50 db1132 mysqld[3344701]: 2022-07-27 20:38:50 119657453 [Note] InnoDB: Number of pools: 3
Jul 27 20:39:13 db1132 mysqld[3344701]: 2022-07-27 20:39:13 119656450 [Note] InnoDB: Number of pools: 4

The slow query log shows nothing interesting during the event.
This is the query right before the event (almost 30 minutes before):

# Time: 220727 19:56:03
# User@Host: wikiuser202206[wikiuser202206] @  [10.64.48.86]
# Thread_id: 117174694  Schema: enwiki  QC_hit: No
# Query_time: 30.000361  Lock_time: 0.000275  Rows_sent: 0  Rows_examined: 4127217
# Rows_affected: 0  Bytes_sent: 1870
SET timestamp=1658951763;
SET /* ApiQueryRecentChanges::run  */ STATEMENT max_statement_time=30 FOR SELECT  /*! STRAIGHT_JOIN */ actor_name,actor_user,rc_actor,rc_id,rc_timestamp,rc_namespace,rc_title,rc_cur_id,rc_type,rc_deleted,rc_this_oldid,rc_last_oldid,rc_minor,rc_type,rc_bot,rc_logid,rc_log_
type,rc_log_action,rc_params,(SELECT  GROUP_CONCAT(ctd_name SEPARATOR ',')  FROM `change_tag` JOIN `change_tag_def` ON ((ct_tag_id=ctd_id))   WHERE ct_rc_id=rc_id  ) AS `ts_tags`,page_is_redirect,comment_rc_comment.comment_text AS `rc_comment_text`,comment_rc_comment.comm
ent_data AS `rc_comment_data`,comment_rc_comment.comment_id AS `rc_comment_cid`  FROM `recentchanges` JOIN `actor` ON ((actor_id=rc_actor)) LEFT JOIN `page` ON ((rc_namespace=page_namespace) AND (rc_title=page_title)) JOIN `comment` `comment_rc_comment` ON ((comment_rc_co
mment.comment_id = rc_comment_id)) JOIN `ores_classification` ON ((oresc_rev=rc_this_oldid) AND oresc_model = 59 AND oresc_class = 1)   WHERE rc_namespace IN (0,3)  AND rc_type IN (0,1)  AND (rc_bot = 0) AND (rc_this_oldid = page_latest) AND (oresc_probability > NULL)  ORDER BY rc_timestamp DESC,rc_id DESC LIMIT 51;

Which is a "normal" query.
Right during the event we just see MW replication checks arriving to db1132 that go on forever until the host gets removed from the LB. This is a normal MW that checks if the host is behind the master or not. We've seen these checks get stuck when a server stalls, so it is not a cause or anything. They simply get logged into the slow query log cause the server is stalled and they take forever to run, on a normal state they take just a few ms. Apart from that, there are no other slow queries being logged (reminder: only queries slower than 30 seconds get logged, I can decrease this to 15 if we think that can be useful for the next event):

# Time: 220727 20:38:33
# User@Host: wikiadmin[wikiadmin] @  [10.64.16.77]
# Thread_id: 117970196  Schema: enwiki  QC_hit: No
# Query_time: 60.000206  Lock_time: 0.000000  Rows_sent: 1  Rows_examined: 0
# Rows_affected: 0  Bytes_sent: 110
SET timestamp=1658954313;
SELECT /* Wikimedia\Rdbms\DatabaseMysqlBase::primaryPosWait  */ MASTER_GTID_WAIT('171970745-171970745-1586341416', 60);
# Time: 220727 20:41:30
# User@Host: wikiadmin[wikiadmin] @  [10.64.16.77]
# Thread_id: 117970196  Schema: enwiki  QC_hit: No
# Query_time: 60.000223  Lock_time: 0.000000  Rows_sent: 1  Rows_examined: 0
# Rows_affected: 0  Bytes_sent: 110
SET timestamp=1658954490;
SELECT /* Wikimedia\Rdbms\DatabaseMysqlBase::primaryPosWait  */ MASTER_GTID_WAIT('171970745-171970745-1586342286', 60);
# Time: 220727 20:44:19
# User@Host: wikiadmin[wikiadmin] @  [10.64.16.77]
# Thread_id: 117970196  Schema: enwiki  QC_hit: No
# Query_time: 60.000176  Lock_time: 0.000000  Rows_sent: 1  Rows_examined: 0
# Rows_affected: 0  Bytes_sent: 110
SET timestamp=1658954659;
SELECT /* Wikimedia\Rdbms\DatabaseMysqlBase::primaryPosWait  */ MASTER_GTID_WAIT('171970745-171970745-1586344615', 60);

Regarding the query killers, they did their job until it was too much.
They kicked in at 2022-07-27 20:38:33 which is roughly the start of the event:

| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119629918; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119629920; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119630577; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652075; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652061; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651840; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652006; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651846; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651934; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652013; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651944; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651865; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651867; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652092; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652095; SELECT /* GenderCache::doQuery-ApiPageSet::processTitlesArray  */  user_name,up_value  FROM `user` L |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119652053; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
| 171970595 | 2022-07-27 20:38:33 | wmf_slave_wikiuser_slow (>60) | kill 119651979; SELECT /* GenderCache::doQuery-MediaWiki\Minerva\Skins\SkinMinerva::getRevisionEditorData  */  user_ |

<snip>

They are actually still trying to kill the threads as they are still running from yesterday (as shown on the previous comment with the show processlist):

| 171970595 | 2022-07-28 07:52:03 | wmf_slave_wikiuser_slow (>60) | kill 119654336; SELECT /* GenderCache::doQuery-ApiQueryUsers::execute  */  user_name,up_value  FROM `user` LEFT JOIN |
| 171970595 | 2022-07-28 07:52:03 | wmf_slave_wikiuser_slow (>60) | kill 119653895; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
| 171970595 | 2022-07-28 07:52:03 | wmf_slave_wikiuser_slow (>60) | kill 119653895; SELECT /* MediaWiki\User\UserOptionsManager::loadOptionsFromDb  */  up_property,up_value  FROM `user |
+-----------+---------------------+-------------------------------+----------------------------------------------------------------------------------------------------------------------+

HW wise the server is pretty much doing nothing:

root@db1132:/srv/sqldata# iostat 1 10
Linux 5.10.0-15-amd64 (db1132) 	07/28/2022 	_x86_64_	(16 CPU)

avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           9.89    0.00    1.92    0.15    0.00   88.04

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0            836.61      1035.94     10118.36         0.00 3220454534 31455278447          0
sda             859.58      1037.61     10194.54         0.00 3225648547 31692099203          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.00    0.00    0.06    0.00    0.00   99.94

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              1.00         0.00         8.00         0.00          0          8          0
sda               2.00         0.00        12.00         0.00          0         12          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.06    0.00    0.00    0.00    0.00   99.94

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.00    0.00    0.13    0.00    0.00   99.87

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.06    0.00    0.00    0.00    0.00   99.94

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               8.00         0.00        32.00         0.00          0         32          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.44    0.00    0.88    0.00    0.00   98.68

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.06    0.00    0.00    0.00    0.00   99.94

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.00    0.00    0.19    0.00    0.00   99.81

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.06    0.00    0.06    0.00    0.00   99.87

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              4.00         0.00      1267.00         0.00          0       1267          0
sda               7.00         0.00      1267.00         0.00          0       1267          0


avg-cpu:  %user   %nice %system %iowait  %steal   %idle
           0.06    0.00    0.06    0.00    0.00   99.87

Device             tps    kB_read/s    kB_wrtn/s    kB_dscd/s    kB_read    kB_wrtn    kB_dscd
dm-0              0.00         0.00         0.00         0.00          0          0          0
sda               0.00         0.00         0.00         0.00          0          0          0

Some updates. Along with @Danielgblack @VicentiuCiorbaru (MariaDB Foundation) we have spent quite some fun time debugging the issue with the server still intact from yesterday's incident.
The host was fully stalled.

For now we have decided that:

  • We are going to revert to libaio for now (so the previous package). I have gone ahead and replaced db1132, db1111 and db1127 with the previous package. Once that is done, I will repool db1132 and db1111.
    • We'll repool those hosts back with slow query log enabled+libaio to see if we can capture something else if the server gets into the same state as this time.

This was noticed during the startup, so uring wasn't actually used:

 Jul 19 13:38:06 db1132 mysqld[3344701]: 2022-07-19 13:38:06 0 [Warning] mysqld: io_uring_queue_init() failed with ENOMEM: try larger memory locked limit, ulimit -l, or https://mariadb.com/kb/en/systemd/#configuring-limitmemlock under systemd
Jul 19 13:38:06 db1132 mysqld[3344701]: 2022-07-19 13:38:06 0 [Warning] InnoDB: liburing disabled: falling back to innodb_use_native_aio=OFF

We got stack traces via gcore and then via gdb. They are at:

root@db1132:/srv/tmp# ls -lh
total 19G
-rw-r--r-- 1 root root  19G Jul 28 08:16 core.3344701
-rw-r--r-- 1 root root 8.1M Jul 28 08:19 mariadb_full_bt_all_threads.txt

Generated via:

gcore 3344701
gdb --batch --eval-command="thread apply all bt  -frame-arguments all full" /opt/wmf-mariadb106/bin/mariadbd core* > mariadb_full_bt_all_threads.txt

Both files are also at cumin1001:/home/marostegui/T311106/db1132_uring_enabled#

More specific stacktraces are at https://phabricator.wikimedia.org/P32031 and the two below comments:

1root@db1132:/srv/tmp# gdb /opt/wmf-mariadb106/bin/mysqld core.3344701
2GNU gdb (Debian 10.1-1.7) 10.1.90.20210103-git
3Copyright (C) 2021 Free Software Foundation, Inc.
4License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
5This is free software: you are free to change and redistribute it.
6There is NO WARRANTY, to the extent permitted by law.
7Type "show copying" and "show warranty" for details.
8This GDB was configured as "x86_64-linux-gnu".
9Type "show configuration" for configuration details.
10For bug reporting instructions, please see:
11<https://www.gnu.org/software/gdb/bugs/>.
12Find the GDB manual and other documentation resources online at:
13 <http://www.gnu.org/software/gdb/documentation/>.
14
15For help, type "help".
16Type "apropos word" to search for commands related to "word"...
17Reading symbols from /opt/wmf-mariadb106/bin/mysqld...
18c[New LWP 3344701]
19[New LWP 3344702]
20[New LWP 3344703]
21[New LWP 3344704]
22[New LWP 3344707]
23[New LWP 3344708]
24[New LWP 3344709]
25[New LWP 3344710]
26[New LWP 3344711]
27[New LWP 3344712]
28[New LWP 3344713]
29[New LWP 1390476]
30[New LWP 1394265]
31[New LWP 1396255]
32[New LWP 1396643]
33[New LWP 1397334]
34[New LWP 1397339]
35[New LWP 1397368]
36[New LWP 1397405]
37[New LWP 1397494]
38[New LWP 1397698]
39[New LWP 1397721]
40[New LWP 1397753]
41[New LWP 1397815]
42[New LWP 1397919]
43[New LWP 1397927]
44[New LWP 1398086]
45[New LWP 1398119]
46[New LWP 1398179]
47[New LWP 1398180]
48[New LWP 1398239]
49[New LWP 1398242]
50[New LWP 1398278]
51[New LWP 1398528]
52[New LWP 1398717]
53[New LWP 1398775]
54[New LWP 1398821]
55[New LWP 1398855]
56[New LWP 1398860]
57[New LWP 1398892]
58[New LWP 1398913]
59[New LWP 1398935]
60[New LWP 1399058]
61[New LWP 1399138]
62[New LWP 1399140]
63[New LWP 1399146]
64[New LWP 1399179]
65[New LWP 1399181]
66[New LWP 1399226]
67[New LWP 1399339]
68[New LWP 1399480]
69[New LWP 1399491]
70[New LWP 1399517]
71[New LWP 1399586]
72[New LWP 1399629]
73[New LWP 1399639]
74[New LWP 1399770]
75[New LWP 1399867]
76[New LWP 1399877]
77[New LWP 1399878]
78[New LWP 1399960]
79[New LWP 1400005]
80[New LWP 1400015]
81[New LWP 1400037]
82[New LWP 1400043]
83[New LWP 1400080]
84[New LWP 1400081]
85[New LWP 1400082]
86[New LWP 1400084]
87[New LWP 1400086]
88[New LWP 1400196]
89[New LWP 1400212]
90[New LWP 1400266]
91[New LWP 1400267]
92[New LWP 1400288]
93[New LWP 1400292]
94[New LWP 1400358]
95[New LWP 1400364]
96[New LWP 1400393]
97[New LWP 1400394]
98[New LWP 1400396]
99[New LWP 1400402]
100[New LWP 1401080]
101[New LWP 1401164]
102[New LWP 1401169]
103[New LWP 1401173]
104[New LWP 1401181]
105[New LWP 1402234]
106[New LWP 1402235]
107[New LWP 1402370]
108[New LWP 1402379]
109[New LWP 1402403]
110[New LWP 1402405]
111[New LWP 1402407]
112[New LWP 1402419]
113[New LWP 1402437]
114[New LWP 1402458]
115[New LWP 1402477]
116[New LWP 1402493]
117[New LWP 1402514]
118[New LWP 1402521]
119[New LWP 1402522]
120[New LWP 1402536]
121[New LWP 1402537]
122[New LWP 1402539]
123[New LWP 1402591]
124[New LWP 1402606]
125[New LWP 1402661]
126[New LWP 1402721]
127[New LWP 1402737]
128[New LWP 1402748]
129[New LWP 1402776]
130[New LWP 1402777]
131[New LWP 1402778]
132[New LWP 1402780]
133[New LWP 1402781]
134[New LWP 1402783]
135[New LWP 1402784]
136[New LWP 1402792]
137[New LWP 1402793]
138[New LWP 1402797]
139[New LWP 1402807]
140[New LWP 1402830]
141[New LWP 1402832]
142[New LWP 1402902]
143[New LWP 1402903]
144[New LWP 1402917]
145[New LWP 1402935]
146[New LWP 1402949]
147[New LWP 1402953]
148[New LWP 1402954]
149[New LWP 1402963]
150[New LWP 1402965]
151[New LWP 1402982]
152[New LWP 1402983]
153[New LWP 1402985]
154[New LWP 1402994]
155[New LWP 1402998]
156[New LWP 1403004]
157[New LWP 1403018]
158[New LWP 1403019]
159[New LWP 1403035]
160[New LWP 1403036]
161[New LWP 1403037]
162[New LWP 1403057]
163[New LWP 1403071]
164[New LWP 1403072]
165[New LWP 1403073]
166[New LWP 1403074]
167[New LWP 1403078]
168[New LWP 1403097]
169[New LWP 1403098]
170[New LWP 1403099]
171[New LWP 1403118]
172[New LWP 1403119]
173[New LWP 1403123]
174[New LWP 1403124]
175[New LWP 1403125]
176[New LWP 1403167]
177[New LWP 1403168]
178[New LWP 1403169]
179[New LWP 1403170]
180[New LWP 1403171]
181[New LWP 1403172]
182[New LWP 1403182]
183[New LWP 1403183]
184[New LWP 1403185]
185[New LWP 1403241]
186[New LWP 1403242]
187[New LWP 1403243]
188[New LWP 1403245]
189[New LWP 1403247]
190[New LWP 1403248]
191[New LWP 1403249]
192[New LWP 1403258]
193[New LWP 1403259]
194[New LWP 1403260]
195[New LWP 1403261]
196[New LWP 1403266]
197[New LWP 1403267]
198[New LWP 1403268]
199[New LWP 1403269]
200[New LWP 1403270]
201[New LWP 1403271]
202[New LWP 1403272]
203[New LWP 1403273]
204[New LWP 1403274]
205[New LWP 1403275]
206[New LWP 1403277]
207[New LWP 1403279]
208[New LWP 1403280]
209[New LWP 1403282]
210[New LWP 1403283]
211[New LWP 1403284]
212[New LWP 1403285]
213[New LWP 1403288]
214[New LWP 1403290]
215[New LWP 1403291]
216[New LWP 1403297]
217[New LWP 1403298]
218[New LWP 1403299]
219[New LWP 1403301]
220[New LWP 1403303]
221[New LWP 1403304]
222[New LWP 1403305]
223[New LWP 1403307]
224[New LWP 1403311]
225[New LWP 1403313]
226[New LWP 1403314]
227[New LWP 1403316]
228[New LWP 1403318]
229[New LWP 1403320]
230[New LWP 1403324]
231[New LWP 1403325]
232[New LWP 1403326]
233[New LWP 1403327]
234[New LWP 1403328]
235[New LWP 1403329]
236[New LWP 1403330]
237[New LWP 1403333]
238[New LWP 1403334]
239[New LWP 1403336]
240[New LWP 1403339]
241[New LWP 1403341]
242[New LWP 1403345]
243[New LWP 1403346]
244[New LWP 1403347]
245[New LWP 1403349]
246[New LWP 1403350]
247[New LWP 1403352]
248[New LWP 1403355]
249[New LWP 1403356]
250[New LWP 1403357]
251[New LWP 1403359]
252[New LWP 1403362]
253[New LWP 1403363]
254[New LWP 1403365]
255[New LWP 1403366]
256[New LWP 1403367]
257[New LWP 1403368]
258[New LWP 1403369]
259[New LWP 1403373]
260[New LWP 1403375]
261[New LWP 1403380]
262[New LWP 1403381]
263[New LWP 1403383]
264[New LWP 1403384]
265[New LWP 1403385]
266[New LWP 1403387]
267[New LWP 1403388]
268[New LWP 1403389]
269[New LWP 1403398]
270[New LWP 1403400]
271[New LWP 1403422]
272[New LWP 1403435]
273[New LWP 1403515]
274[New LWP 1403554]
275[New LWP 1403592]
276[New LWP 1403721]
277[New LWP 1403730]
278[New LWP 1403750]
279[New LWP 1403785]
280[New LWP 1403840]
281[New LWP 1403843]
282[New LWP 1403869]
283[New LWP 1404226]
284[New LWP 1404615]
285[New LWP 1404754]
286[New LWP 1404763]
287[New LWP 1404819]
288[New LWP 1404821]
289[New LWP 1404829]
290[New LWP 1404852]
291[New LWP 1404913]
292[New LWP 1404918]
293[New LWP 1404921]
294[New LWP 1404946]
295[New LWP 1404963]
296[New LWP 1404965]
297[New LWP 1404966]
298[New LWP 1404976]
299[New LWP 1404984]
300[New LWP 1404985]
301[New LWP 1404987]
302[New LWP 1405028]
303[New LWP 1476733]
304[New LWP 1516656]
305[New LWP 1527625]
306[New LWP 1532592]
307[New LWP 1532599]
308[New LWP 1532680]
309[New LWP 1532682]
310[New LWP 1532683]
311[New LWP 1532684]
312[New LWP 1532685]
313[New LWP 1532686]
314[New LWP 1532687]
315[New LWP 1532692]
316[New LWP 1532736]
317[Thread debugging using libthread_db enabled]
318Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
319--Type <RET> for more, q to quit, c to continue without paging--c
320Core was generated by `/opt/wmf-mariadb106/bin/mysqld'.
321#0 0x00007fac896ec3ff in poll () from /lib/x86_64-linux-gnu/libc.so.6
322[Current thread is 1 (Thread 0x7fac893631c0 (LWP 3344701))]
323(gdb) thread 11
324[Switching to thread 11 (Thread 0x7fac808e3700 (LWP 3344713))]
325#0 0x00007fac896f19b9 in syscall () from /lib/x86_64-linux-gnu/libc.so.6
326(gdb) frame 6
327#6 btr_cur_search_to_nth_level_func (index=index@entry=0x7f4c5406d500, level=level@entry=0, tuple=tuple@entry=0x7f49a9189ab0, mode=mode@entry=PAGE_CUR_LE, latch_mode=<optimized out>, latch_mode@entry=33, cursor=cursor@entry=0x7fac808e05f0, ahi_latch=<optimized out>,
328 mtr=<optimized out>, autoinc=<optimized out>) at /root/mariadb-10.6.8/storage/innobase/btr/btr0cur.cc:2229
3292229 /root/mariadb-10.6.8/storage/innobase/btr/btr0cur.cc: No such file or directory.
330(gdb) p *index
331$1 = {static MAX_N_FIELDS = 1023, id = 6376, heap = 0x7f4c5405a008, name = {m_name = 0x7f4c5406d690 "PRIMARY"}, table = 0x7f4c54059c90, page = 3, merge_threshold = 50, type = 3, trx_id_offset = 0, n_user_defined_cols = 2, nulls_equal = 0, n_uniq = 2, n_def = 5,
332 n_fields = 5, n_nullable = 1, n_core_fields = 5, n_core_null_bytes = 1, static NO_CORE_NULL_BYTES = 255, static DICT_INDEXES_ID = 3, cached = 1, to_be_dropped = 0, online_status = 0, uncommitted = 0, fields = 0x7f4c5406d730, parser = 0x0, new_vcol_info = 0x0,
333 indexes = {prev = 0x0, next = 0x7f4c5406dcc0}, search_info = 0x7f4c5406d828, online_log = 0x0, stat_n_diff_key_vals = 0x7f4c5406d7f8, stat_n_sample_sizes = 0x7f4c5406d808, stat_n_non_null_key_vals = 0x7f4c5406d818, stat_index_size = 1320173,
334 stat_n_leaf_pages = 1151220, stats_error_printed = false, stat_defrag_modified_counter = 8582, stat_defrag_n_pages_freed = 0, stat_defrag_n_page_split = 8582, stat_defrag_data_size_sample = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, stat_defrag_sample_next_slot = 0, rtr_ssn = {
335 m = {<std::__atomic_base<unsigned int>> = {static _S_alignment = 4, _M_i = 0}, <No data fields>}}, rtr_track = 0x0, trx_id = 0, zip_pad = {mutex = {<std::__mutex_base> = {_M_mutex = {__data = {__lock = 0, __count = 0, __owner = 0, __nusers = 0, __kind = 0,
336 __spins = 0, __elision = 0, __list = {__prev = 0x0, __next = 0x0}}, __size = '\000' <repeats 39 times>, __align = 0}}, <No data fields>}, pad = {m = {<std::__atomic_base<unsigned long>> = {static _S_alignment = 8, _M_i = 1408}, <No data fields>}},
337 success = 125, failure = 0, n_rounds = 0}, lock = {lock = {pfs_psi = 0x7fac835f9b40, lock = {writer = {lock = {<std::__atomic_base<unsigned int>> = {static _S_alignment = 4, _M_i = 2147483649}, <No data fields>}, static HOLDER = 2147483648},
338 readers = {<std::__atomic_base<unsigned int>> = {static _S_alignment = 4, _M_i = 213}, <No data fields>}, static WRITER = 2147483648}}, recursive = 65536, writer = {<std::__atomic_base<unsigned long>> = {static _S_alignment = 8,
339 _M_i = 140378867906304}, <No data fields>}, static FOR_IO = <optimized out>, static RECURSIVE_X = 1, static RECURSIVE_U = 65536, static RECURSIVE_MAX = <optimized out>}}
340(gdb)

Output from ls -la /proc/$pid/fd

1total 0
2dr-x------ 2 mysql mysql 0 Jul 28 08:20 .
3dr-xr-xr-x 9 mysql mysql 0 Jul 24 05:07 ..
4lr-x------ 1 mysql mysql 64 Jul 28 08:50 0 -> /dev/null
5lrwx------ 1 mysql mysql 64 Jul 28 08:50 1 -> socket:[3853229155]
6lrwx------ 1 mysql mysql 64 Jul 28 08:50 10 -> /srv/sqldata/ib_logfile0
7lrwx------ 1 mysql mysql 64 Jul 28 08:50 100 -> /srv/sqldata/mysql/global_priv.MAI
8lrwx------ 1 mysql mysql 64 Jul 28 08:50 1003 -> socket:[654275394]
9lrwx------ 1 mysql mysql 64 Jul 28 08:50 101 -> /srv/sqldata/enwiki/templatelinks.ibd
10lrwx------ 1 mysql mysql 64 Jul 28 08:50 1012 -> socket:[654284109]
11lrwx------ 1 mysql mysql 64 Jul 28 08:50 1019 -> socket:[654270165]
12lrwx------ 1 mysql mysql 64 Jul 28 08:50 102 -> /srv/sqldata/mysql/tables_priv.MAD
13lrwx------ 1 mysql mysql 64 Jul 28 08:50 103 -> /srv/sqldata/mysql/tables_priv.MAI
14lrwx------ 1 mysql mysql 64 Jul 28 08:50 104 -> /srv/sqldata/mysql/columns_priv.MAD
15lrwx------ 1 mysql mysql 64 Jul 28 08:50 105 -> /srv/sqldata/mysql/columns_priv.MAI
16lrwx------ 1 mysql mysql 64 Jul 28 08:50 1057 -> socket:[654285337]
17lrwx------ 1 mysql mysql 64 Jul 28 08:50 106 -> /srv/sqldata/mysql/procs_priv.MAD
18lrwx------ 1 mysql mysql 64 Jul 28 08:50 1066 -> socket:[654285437]
19lrwx------ 1 mysql mysql 64 Jul 28 08:50 107 -> /srv/sqldata/mysql/procs_priv.MAI
20lrwx------ 1 mysql mysql 64 Jul 28 08:50 108 -> /srv/sqldata/mysql/event.MAD
21lrwx------ 1 mysql mysql 64 Jul 28 08:50 109 -> /srv/sqldata/mysql/event.MAI
22lrwx------ 1 mysql mysql 64 Jul 28 08:50 11 -> /srv/sqldata/ibdata1
23lrwx------ 1 mysql mysql 64 Jul 28 08:50 110 -> /srv/sqldata/multi-master.info
24lrwx------ 1 mysql mysql 64 Jul 28 08:50 111 -> /srv/sqldata/master.info
25lrwx------ 1 mysql mysql 64 Jul 28 08:50 1113 -> socket:[654288215]
26lrwx------ 1 mysql mysql 64 Jul 28 08:50 1118 -> socket:[654288025]
27lrwx------ 1 mysql mysql 64 Jul 28 08:50 112 -> /srv/sqldata/enwiki/bv2022_edits.ibd
28lrwx------ 1 mysql mysql 64 Jul 28 08:50 1121 -> socket:[654288045]
29lrwx------ 1 mysql mysql 64 Jul 28 08:50 113 -> /srv/sqldata/relay-log.info
30lrwx------ 1 mysql mysql 64 Jul 28 08:50 114 -> /srv/sqldata/heartbeat/heartbeat.ibd
31lrwx------ 1 mysql mysql 64 Jul 28 08:50 115 -> /srv/sqldata/enwiki/querycache_info.ibd
32lrwx------ 1 mysql mysql 64 Jul 28 08:50 116 -> /srv/sqldata/enwiki/pagetriage_page_tags.ibd
33lrwx------ 1 mysql mysql 64 Jul 28 08:50 117 -> /srv/sqldata/enwiki/pagetriage_page.ibd
34lrwx------ 1 mysql mysql 64 Jul 28 08:50 1170 -> socket:[654284339]
35lrwx------ 1 mysql mysql 64 Jul 28 08:50 1173 -> socket:[654278652]
36lrwx------ 1 mysql mysql 64 Jul 28 08:50 118 -> /srv/sqldata/enwiki/abuse_filter.ibd
37lrwx------ 1 mysql mysql 64 Jul 28 08:50 1187 -> socket:[654285772]
38lrwx------ 1 mysql mysql 64 Jul 28 08:50 119 -> /srv/sqldata/enwiki/cu_changes.ibd
39lrwx------ 1 mysql mysql 64 Jul 28 08:50 1196 -> socket:[654284499]
40lrwx------ 1 mysql mysql 64 Jul 28 08:50 1199 -> socket:[654289197]
41lrwx------ 1 mysql mysql 64 Jul 28 08:50 12 -> /srv/tmp/#2214574085 (deleted)
42lrwx------ 1 mysql mysql 64 Jul 28 08:50 120 -> /srv/sqldata/enwiki/change_tag.ibd
43lrwx------ 1 mysql mysql 64 Jul 28 08:50 121 -> /srv/sqldata/enwiki/change_tag_def.ibd
44lrwx------ 1 mysql mysql 64 Jul 28 08:50 122 -> /srv/sqldata/enwiki/watchlist.ibd
45lrwx------ 1 mysql mysql 64 Jul 28 08:50 123 -> /srv/sqldata/enwiki/site_stats.ibd
46lrwx------ 1 mysql mysql 64 Jul 28 08:50 1230 -> socket:[654290046]
47lrwx------ 1 mysql mysql 64 Jul 28 08:50 124 -> /srv/sqldata/enwiki/user.ibd
48lrwx------ 1 mysql mysql 64 Jul 28 08:50 125 -> /srv/sqldata/enwiki/page.ibd
49lrwx------ 1 mysql mysql 64 Jul 28 08:50 126 -> /srv/sqldata/enwiki/revision.ibd
50lrwx------ 1 mysql mysql 64 Jul 28 08:50 127 -> /srv/sqldata/enwiki/revision_comment_temp.ibd
51lrwx------ 1 mysql mysql 64 Jul 28 08:50 128 -> /srv/sqldata/enwiki/text.ibd
52lrwx------ 1 mysql mysql 64 Jul 28 08:50 129 -> /srv/sqldata/enwiki/content.ibd
53lrwx------ 1 mysql mysql 64 Jul 28 08:50 1291 -> socket:[654287544]
54lrwx------ 1 mysql mysql 64 Jul 28 08:50 13 -> /srv/sqldata/ibtmp1
55lrwx------ 1 mysql mysql 64 Jul 28 08:50 130 -> /srv/sqldata/enwiki/slots.ibd
56lrwx------ 1 mysql mysql 64 Jul 28 08:50 131 -> /srv/sqldata/enwiki/comment.ibd
57lrwx------ 1 mysql mysql 64 Jul 28 08:50 132 -> /srv/sqldata/enwiki/pagelinks.ibd
58lrwx------ 1 mysql mysql 64 Jul 28 08:50 133 -> /srv/sqldata/enwiki/user_properties.ibd
59lrwx------ 1 mysql mysql 64 Jul 28 08:50 134 -> socket:[3853231537]
60lrwx------ 1 mysql mysql 64 Jul 28 08:50 1342 -> socket:[654291986]
61lrwx------ 1 mysql mysql 64 Jul 28 08:50 135 -> /srv/sqldata/enwiki/querycachetwo.ibd
62lrwx------ 1 mysql mysql 64 Jul 28 08:50 1352 -> socket:[654292006]
63lrwx------ 1 mysql mysql 64 Jul 28 08:50 136 -> /srv/sqldata/enwiki/ores_classification.ibd
64lrwx------ 1 mysql mysql 64 Jul 28 08:50 137 -> /srv/sqldata/enwiki/categorylinks.ibd
65lrwx------ 1 mysql mysql 64 Jul 28 08:50 1377 -> socket:[654292236]
66lrwx------ 1 mysql mysql 64 Jul 28 08:50 138 -> /srv/sqldata/enwiki/category.ibd
67lrwx------ 1 mysql mysql 64 Jul 28 08:50 139 -> /srv/sqldata/enwiki/linktarget.ibd
68lrwx------ 1 mysql mysql 64 Jul 28 08:50 14 -> /srv/sqldata/ops/event_log.ibd
69lrwx------ 1 mysql mysql 64 Jul 28 08:50 140 -> /srv/sqldata/enwiki/imagelinks.ibd
70lrwx------ 1 mysql mysql 64 Jul 28 08:50 141 -> /srv/sqldata/enwiki/langlinks.ibd
71lrwx------ 1 mysql mysql 64 Jul 28 08:50 1419 -> socket:[654292696]
72lrwx------ 1 mysql mysql 64 Jul 28 08:50 142 -> /srv/sqldata/enwiki/externallinks.ibd
73lrwx------ 1 mysql mysql 64 Jul 28 08:50 143 -> /srv/sqldata/enwiki/actor.ibd
74lrwx------ 1 mysql mysql 64 Jul 28 08:50 144 -> /srv/sqldata/enwiki/spoofuser.ibd
75lrwx------ 1 mysql mysql 64 Jul 28 08:50 1440 -> socket:[654292896]
76lrwx------ 1 mysql mysql 64 Jul 28 08:50 145 -> /srv/sqldata/enwiki/logging.ibd
77lrwx------ 1 mysql mysql 64 Jul 28 08:50 146 -> /srv/sqldata/enwiki/linter.ibd
78lrwx------ 1 mysql mysql 64 Jul 28 08:50 1461 -> socket:[654293116]
79lrwx------ 1 mysql mysql 64 Jul 28 08:50 1466 -> socket:[654293626]
80lrwx------ 1 mysql mysql 64 Jul 28 08:50 147 -> /srv/sqldata/enwiki/log_search.ibd
81lrwx------ 1 mysql mysql 64 Jul 28 08:50 1478 -> socket:[654293306]
82lrwx------ 1 mysql mysql 64 Jul 28 08:50 148 -> /srv/sqldata/enwiki/user_newtalk.ibd
83lrwx------ 1 mysql mysql 64 Jul 28 08:50 149 -> /srv/sqldata/enwiki/iwlinks.ibd
84lrwx------ 1 mysql mysql 64 Jul 28 08:50 15 -> /srv/sqldata/ddl_recovery.log
85lrwx------ 1 mysql mysql 64 Jul 28 08:50 150 -> /srv/sqldata/enwiki/abuse_filter_action.ibd
86lrwx------ 1 mysql mysql 64 Jul 28 08:50 151 -> /srv/sqldata/enwiki/abuse_filter_history.ibd
87lrwx------ 1 mysql mysql 64 Jul 28 08:50 152 -> /srv/sqldata/enwiki/betafeatures_user_counts.ibd
88lrwx------ 1 mysql mysql 64 Jul 28 08:50 153 -> socket:[655741372]
89lrwx------ 1 mysql mysql 64 Jul 28 08:50 154 -> /srv/sqldata/db1132-relay-bin.000154
90lrwx------ 1 mysql mysql 64 Jul 28 08:50 155 -> /srv/sqldata/enwiki/__wmf_checksums.ibd
91lrwx------ 1 mysql mysql 64 Jul 28 08:50 1551 -> socket:[654297147]
92lrwx------ 1 mysql mysql 64 Jul 28 08:50 1558 -> socket:[654293975]
93lrwx------ 1 mysql mysql 64 Jul 28 08:50 156 -> /srv/sqldata/mysql/table_stats.MAD
94lrwx------ 1 mysql mysql 64 Jul 28 08:50 157 -> /srv/sqldata/mysql/table_stats.MAI
95lrwx------ 1 mysql mysql 64 Jul 28 08:50 1578 -> socket:[654294081]
96lrwx------ 1 mysql mysql 64 Jul 28 08:50 158 -> /srv/sqldata/mysql/column_stats.MAD
97lrwx------ 1 mysql mysql 64 Jul 28 08:50 159 -> /srv/sqldata/mysql/column_stats.MAI
98lrwx------ 1 mysql mysql 64 Jul 28 08:50 16 -> /srv/sqldata/mysql/gtid_slave_pos.ibd
99lrwx------ 1 mysql mysql 64 Jul 28 08:50 160 -> /srv/sqldata/mysql/index_stats.MAD
100lrwx------ 1 mysql mysql 64 Jul 28 08:50 161 -> /srv/sqldata/mysql/index_stats.MAI
101lrwx------ 1 mysql mysql 64 Jul 28 08:50 1611 -> socket:[654275525]
102lrwx------ 1 mysql mysql 64 Jul 28 08:50 162 -> /srv/sqldata/enwiki/securepoll_voters.ibd
103lrwx------ 1 mysql mysql 64 Jul 28 08:50 163 -> /srv/sqldata/enwiki/ip_changes.ibd
104lrwx------ 1 mysql mysql 64 Jul 28 08:50 1633 -> socket:[654275454]
105lrwx------ 1 mysql mysql 64 Jul 28 08:50 1638 -> socket:[654296124]
106lrwx------ 1 mysql mysql 64 Jul 28 08:50 164 -> /srv/sqldata/enwiki/abuse_filter_log.ibd
107lrwx------ 1 mysql mysql 64 Jul 28 08:50 165 -> /srv/sqldata/enwiki/redirect.ibd
108lrwx------ 1 mysql mysql 64 Jul 28 08:50 166 -> /srv/sqldata/enwiki/watchlist_expiry.ibd
109lrwx------ 1 mysql mysql 64 Jul 28 08:50 167 -> /srv/sqldata/enwiki/protected_titles.ibd
110lrwx------ 1 mysql mysql 64 Jul 28 08:50 168 -> /srv/sqldata/enwiki/cu_log.ibd
111lrwx------ 1 mysql mysql 64 Jul 28 08:50 169 -> /srv/sqldata/enwiki/discussiontools_subscription.ibd
112lrwx------ 1 mysql mysql 64 Jul 28 08:50 17 -> /srv/sqldata/mysql/innodb_table_stats.ibd
113lrwx------ 1 mysql mysql 64 Jul 28 08:50 170 -> /srv/sqldata/enwiki/flaggedrevs_promote.ibd
114lrwx------ 1 mysql mysql 64 Jul 28 08:50 1704 -> socket:[654289682]
115lrwx------ 1 mysql mysql 64 Jul 28 08:50 171 -> /srv/sqldata/enwiki/page_props.ibd
116lrwx------ 1 mysql mysql 64 Jul 28 08:50 1719 -> socket:[654295790]
117lrwx------ 1 mysql mysql 64 Jul 28 08:50 172 -> /srv/sqldata/enwiki/wikilove_log.ibd
118lrwx------ 1 mysql mysql 64 Jul 28 08:50 1721 -> socket:[654295810]
119lrwx------ 1 mysql mysql 64 Jul 28 08:50 173 -> /srv/sqldata/enwiki/geo_tags.ibd
120lrwx------ 1 mysql mysql 64 Jul 28 08:50 174 -> /srv/sqldata/enwiki/flaggedpage_pending.ibd
121lrwx------ 1 mysql mysql 64 Jul 28 08:50 175 -> /srv/sqldata/enwiki/flaggedpages.ibd
122lrwx------ 1 mysql mysql 64 Jul 28 08:50 176 -> /srv/sqldata/enwiki/flaggedrevs_tracking.ibd
123lrwx------ 1 mysql mysql 64 Jul 28 08:50 177 -> /srv/sqldata/enwiki/user_groups.ibd
124lrwx------ 1 mysql mysql 64 Jul 28 08:50 178 -> /srv/sqldata/enwiki/page_assessments.ibd
125lrwx------ 1 mysql mysql 64 Jul 28 08:50 179 -> /srv/sqldata/enwiki/archive.ibd
126lrwx------ 1 mysql mysql 64 Jul 28 08:50 18 -> /srv/sqldata/mysql/innodb_index_stats.ibd
127lrwx------ 1 mysql mysql 64 Jul 28 08:50 180 -> /srv/sqldata/enwiki/page_restrictions.ibd
128lrwx------ 1 mysql mysql 64 Jul 28 08:50 181 -> /srv/sqldata/enwiki/flaggedrevs.ibd
129lrwx------ 1 mysql mysql 64 Jul 28 08:50 182 -> /srv/sqldata/enwiki/ipblocks.ibd
130lrwx------ 1 mysql mysql 64 Jul 28 08:50 1824 -> socket:[654299338]
131lrwx------ 1 mysql mysql 64 Jul 28 08:50 1827 -> socket:[654299368]
132lrwx------ 1 mysql mysql 64 Jul 28 08:50 183 -> /srv/sqldata/enwiki/ipblocks_restrictions.ibd
133lrwx------ 1 mysql mysql 64 Jul 28 08:50 1830 -> socket:[654299398]
134lrwx------ 1 mysql mysql 64 Jul 28 08:50 184 -> /srv/sqldata/enwiki/image.ibd
135lrwx------ 1 mysql mysql 64 Jul 28 08:50 185 -> /srv/sqldata/enwiki/page_assessments_projects.ibd
136lrwx------ 1 mysql mysql 64 Jul 28 08:50 186 -> /srv/sqldata/enwiki/pagetriage_log.ibd
137lrwx------ 1 mysql mysql 64 Jul 28 08:50 187 -> /srv/sqldata/enwiki/user_former_groups.ibd
138lrwx------ 1 mysql mysql 64 Jul 28 08:50 1878 -> socket:[654294226]
139lrwx------ 1 mysql mysql 64 Jul 28 08:50 188 -> /srv/sqldata/enwiki/babel.ibd
140lrwx------ 1 mysql mysql 64 Jul 28 08:50 189 -> /srv/sqldata/enwiki/querycache.ibd
141lrwx------ 1 mysql mysql 64 Jul 28 08:50 19 -> /srv/sqldata/mysql/servers.MAD
142lrwx------ 1 mysql mysql 64 Jul 28 08:50 190 -> /srv/sqldata/enwiki/uploadstash.ibd
143lrwx------ 1 mysql mysql 64 Jul 28 08:50 1906 -> socket:[654294506]
144lrwx------ 1 mysql mysql 64 Jul 28 08:50 191 -> /srv/sqldata/enwiki/filearchive.ibd
145lrwx------ 1 mysql mysql 64 Jul 28 08:50 1916 -> socket:[654294596]
146lrwx------ 1 mysql mysql 64 Jul 28 08:50 192 -> /srv/sqldata/enwiki/transcode.ibd
147lrwx------ 1 mysql mysql 64 Jul 28 08:50 193 -> /srv/sqldata/enwiki/flaggedtemplates.ibd
148lrwx------ 1 mysql mysql 64 Jul 28 08:50 194 -> /srv/sqldata/enwiki/oldimage.ibd
149lrwx------ 1 mysql mysql 64 Jul 28 08:50 195 -> /srv/sqldata/enwiki/flaggedpage_config.ibd
150lrwx------ 1 mysql mysql 64 Jul 28 08:50 196 -> /srv/sqldata/enwiki/flaggedrevs_statistics.ibd
151lrwx------ 1 mysql mysql 64 Jul 28 08:50 197 -> /srv/sqldata/enwiki/content_models.ibd
152lrwx------ 1 mysql mysql 64 Jul 28 08:50 198 -> socket:[654265394]
153lrwx------ 1 mysql mysql 64 Jul 28 08:50 1981 -> socket:[654294816]
154lrwx------ 1 mysql mysql 64 Jul 28 08:50 199 -> /srv/sqldata/enwiki/arbcom1_vote.ibd
155lrwx------ 1 mysql mysql 64 Jul 28 08:50 2 -> socket:[3853229155]
156lrwx------ 1 mysql mysql 64 Jul 28 08:50 20 -> /srv/sqldata/db1132-relay-bin.index
157l-wx------ 1 mysql mysql 64 Jul 28 08:50 200 -> /srv/sqldata/db1132-slow.log
158lrwx------ 1 mysql mysql 64 Jul 28 08:50 2008 -> socket:[654300438]
159lrwx------ 1 mysql mysql 64 Jul 28 08:50 201 -> /srv/sqldata/mysql/slow_log.CSM
160lr-x------ 1 mysql mysql 64 Jul 28 08:50 202 -> /srv/sqldata/mysql/slow_log.CSV
161lrwx------ 1 mysql mysql 64 Jul 28 08:50 203 -> /srv/sqldata/enwiki/mathoid.ibd
162lrwx------ 1 mysql mysql 64 Jul 28 08:50 204 -> /srv/sqldata/enwiki/pagetriage_tags.ibd
163lrwx------ 1 mysql mysql 64 Jul 28 08:50 2049 -> socket:[654289825]
164lrwx------ 1 mysql mysql 64 Jul 28 08:50 205 -> socket:[654259035]
165lrwx------ 1 mysql mysql 64 Jul 28 08:50 206 -> /srv/sqldata/enwiki/global_block_whitelist.ibd
166lrwx------ 1 mysql mysql 64 Jul 28 08:50 207 -> /srv/sqldata/enwiki/ores_model.ibd
167lrwx------ 1 mysql mysql 64 Jul 28 08:50 208 -> /srv/sqldata/enwiki/bv2009_edits.ibd
168lrwx------ 1 mysql mysql 64 Jul 28 08:50 209 -> /srv/sqldata/enwiki/bv2011_edits.ibd
169lrwx------ 1 mysql mysql 64 Jul 28 08:50 21 -> /srv/sqldata/mysql/servers.MAI
170lrwx------ 1 mysql mysql 64 Jul 28 08:50 210 -> socket:[654257000]
171lrwx------ 1 mysql mysql 64 Jul 28 08:50 211 -> /srv/sqldata/enwiki/bv2013_edits.ibd
172lrwx------ 1 mysql mysql 64 Jul 28 08:50 212 -> /srv/sqldata/enwiki/bv2015_edits.ibd
173lrwx------ 1 mysql mysql 64 Jul 28 08:50 213 -> /srv/sqldata/enwiki/bv2017_edits.ibd
174lrwx------ 1 mysql mysql 64 Jul 28 08:50 214 -> /srv/sqldata/enwiki/bv2021_edits.ibd
175lrwx------ 1 mysql mysql 64 Jul 28 08:50 215 -> /srv/sqldata/enwiki/cur.ibd
176lrwx------ 1 mysql mysql 64 Jul 28 08:50 216 -> /srv/sqldata/enwiki/exarchive.ibd
177lrwx------ 1 mysql mysql 64 Jul 28 08:50 217 -> /srv/sqldata/enwiki/exrevision.ibd
178lrwx------ 1 mysql mysql 64 Jul 28 08:50 218 -> /srv/sqldata/enwiki/sites.ibd
179lrwx------ 1 mysql mysql 64 Jul 28 08:50 219 -> /srv/sqldata/enwiki/hidden.ibd
180lrwx------ 1 mysql mysql 64 Jul 28 08:50 22 -> /srv/sqldata/enwiki/wbc_entity_usage.ibd
181lrwx------ 1 mysql mysql 64 Jul 28 08:50 220 -> /srv/sqldata/enwiki/interwiki.ibd
182lrwx------ 1 mysql mysql 64 Jul 28 08:50 221 -> /srv/sqldata/enwiki/job.ibd
183lrwx------ 1 mysql mysql 64 Jul 28 08:50 222 -> socket:[654277992]
184lrwx------ 1 mysql mysql 64 Jul 28 08:50 223 -> /srv/sqldata/enwiki/l10n_cache.ibd
185lrwx------ 1 mysql mysql 64 Jul 28 08:50 224 -> /srv/sqldata/enwiki/site_identifiers.ibd
186lrwx------ 1 mysql mysql 64 Jul 28 08:50 225 -> /srv/sqldata/enwiki/mcdc2021_edits.ibd
187lrwx------ 1 mysql mysql 64 Jul 28 08:50 226 -> /srv/sqldata/enwiki/module_deps.ibd
188lrwx------ 1 mysql mysql 64 Jul 28 08:50 227 -> socket:[654269628]
189lrwx------ 1 mysql mysql 64 Jul 28 08:50 228 -> socket:[654266813]
190lrwx------ 1 mysql mysql 64 Jul 28 08:50 229 -> /srv/sqldata/enwiki/securepoll_elections.ibd
191lrwx------ 1 mysql mysql 64 Jul 28 08:50 23 -> anon_inode:[eventpoll]
192lrwx------ 1 mysql mysql 64 Jul 28 08:50 230 -> /srv/sqldata/enwiki/slot_roles.ibd
193lrwx------ 1 mysql mysql 64 Jul 28 08:50 231 -> /srv/sqldata/enwiki/moodbar_feedback.ibd
194lrwx------ 1 mysql mysql 64 Jul 28 08:50 232 -> /srv/sqldata/enwiki/moodbar_feedback_response.ibd
195lrwx------ 1 mysql mysql 64 Jul 28 08:50 2329 -> socket:[654302750]
196lrwx------ 1 mysql mysql 64 Jul 28 08:50 233 -> socket:[654263051]
197lrwx------ 1 mysql mysql 64 Jul 28 08:50 2330 -> socket:[654302760]
198lrwx------ 1 mysql mysql 64 Jul 28 08:50 234 -> socket:[654260152]
199lrwx------ 1 mysql mysql 64 Jul 28 08:50 235 -> /srv/sqldata/enwiki/objectcache.ibd
200lrwx------ 1 mysql mysql 64 Jul 28 08:50 236 -> socket:[654259165]
201lrwx------ 1 mysql mysql 64 Jul 28 08:50 237 -> socket:[654272239]
202lrwx------ 1 mysql mysql 64 Jul 28 08:50 238 -> /srv/sqldata/enwiki/optin_survey_old.ibd
203lrwx------ 1 mysql mysql 64 Jul 28 08:50 239 -> socket:[654269102]
204lrwx------ 1 mysql mysql 64 Jul 28 08:50 24 -> anon_inode:[eventpoll]
205lrwx------ 1 mysql mysql 64 Jul 28 08:50 240 -> socket:[654275871]
206lrwx------ 1 mysql mysql 64 Jul 28 08:50 241 -> /srv/sqldata/enwiki/pif_edits.ibd
207lrwx------ 1 mysql mysql 64 Jul 28 08:50 242 -> /srv/sqldata/enwiki/searchindex.ibd
208lrwx------ 1 mysql mysql 64 Jul 28 08:50 243 -> socket:[654257020]
209lrwx------ 1 mysql mysql 64 Jul 28 08:50 244 -> socket:[654269637]
210lrwx------ 1 mysql mysql 64 Jul 28 08:50 2447 -> socket:[654304372]
211lrwx------ 1 mysql mysql 64 Jul 28 08:50 245 -> /srv/sqldata/enwiki/securepoll_cookie_match.ibd
212lrwx------ 1 mysql mysql 64 Jul 28 08:50 246 -> /srv/sqldata/enwiki/securepoll_entity.ibd
213lrwx------ 1 mysql mysql 64 Jul 28 08:50 247 -> socket:[654268017]
214lrwx------ 1 mysql mysql 64 Jul 28 08:50 248 -> socket:[654268107]
215l-wx------ 1 mysql mysql 64 Jul 28 08:50 249 -> /srv/sqldata/db1132-bin.000882
216lrwx------ 1 mysql mysql 64 Jul 28 08:50 25 -> anon_inode:[eventpoll]
217lrwx------ 1 mysql mysql 64 Jul 28 08:50 250 -> /srv/sqldata/enwiki/securepoll_lists.ibd
218lrwx------ 1 mysql mysql 64 Jul 28 08:50 2508 -> socket:[654300828]
219lrwx------ 1 mysql mysql 64 Jul 28 08:50 251 -> socket:[654265634]
220lrwx------ 1 mysql mysql 64 Jul 28 08:50 252 -> /srv/sqldata/enwiki/securepoll_strike.ibd
221lrwx------ 1 mysql mysql 64 Jul 28 08:50 253 -> socket:[654272009]
222lrwx------ 1 mysql mysql 64 Jul 28 08:50 254 -> /srv/sqldata/enwiki/transcache.ibd
223lrwx------ 1 mysql mysql 64 Jul 28 08:50 255 -> /srv/sqldata/enwiki/securepoll_questions.ibd
224lrwx------ 1 mysql mysql 64 Jul 28 08:50 256 -> /srv/sqldata/enwiki/ucoc_edits.ibd
225lrwx------ 1 mysql mysql 64 Jul 28 08:50 257 -> /srv/sqldata/enwiki/updatelog.ibd
226lrwx------ 1 mysql mysql 64 Jul 28 08:50 2578 -> socket:[654306402]
227lrwx------ 1 mysql mysql 64 Jul 28 08:50 258 -> socket:[654268644]
228lrwx------ 1 mysql mysql 64 Jul 28 08:50 259 -> socket:[654270695]
229lrwx------ 1 mysql mysql 64 Jul 28 08:50 26 -> anon_inode:[eventpoll]
230lrwx------ 1 mysql mysql 64 Jul 28 08:50 260 -> /srv/sqldata/enwiki/vote_log.ibd
231lrwx------ 1 mysql mysql 64 Jul 28 08:50 2606 -> socket:[654306662]
232lrwx------ 1 mysql mysql 64 Jul 28 08:50 261 -> /srv/sqldata/ops/__wmf_checksums.ibd
233lrwx------ 1 mysql mysql 64 Jul 28 08:50 262 -> socket:[654265099]
234lrwx------ 1 mysql mysql 64 Jul 28 08:50 263 -> /srv/sqldata/enwiki/securepoll_options.ibd
235lrwx------ 1 mysql mysql 64 Jul 28 08:50 264 -> /srv/sqldata/ops/db32_query_review.MYD
236lrwx------ 1 mysql mysql 64 Jul 28 08:50 265 -> socket:[654062231]
237lrwx------ 1 mysql mysql 64 Jul 28 08:50 266 -> /srv/sqldata/ops/db32_query_review.MYI
238lrwx------ 1 mysql mysql 64 Jul 28 08:50 267 -> /srv/sqldata/ops/db32_query_review_history.MYD
239lrwx------ 1 mysql mysql 64 Jul 28 08:50 268 -> /srv/sqldata/ops/db32_query_review_history.MYI
240lrwx------ 1 mysql mysql 64 Jul 28 08:50 269 -> socket:[654268674]
241lrwx------ 1 mysql mysql 64 Jul 28 08:50 27 -> anon_inode:[eventpoll]
242lrwx------ 1 mysql mysql 64 Jul 28 08:50 270 -> /srv/sqldata/ops/db36_query_review.MYD
243lrwx------ 1 mysql mysql 64 Jul 28 08:50 271 -> /srv/sqldata/ops/db36_query_review.MYI
244lrwx------ 1 mysql mysql 64 Jul 28 08:50 272 -> /srv/sqldata/ops/db36_query_review_history.MYD
245lrwx------ 1 mysql mysql 64 Jul 28 08:50 273 -> /srv/sqldata/ops/db36_query_review_history.MYI
246lrwx------ 1 mysql mysql 64 Jul 28 08:50 274 -> /srv/sqldata/enwiki/securepoll_msgs.ibd
247lrwx------ 1 mysql mysql 64 Jul 28 08:50 275 -> /srv/sqldata/ops/db38_query_review.MYD
248lrwx------ 1 mysql mysql 64 Jul 28 08:50 276 -> socket:[654263861]
249lrwx------ 1 mysql mysql 64 Jul 28 08:50 2761 -> socket:[654308402]
250lrwx------ 1 mysql mysql 64 Jul 28 08:50 277 -> /srv/sqldata/ops/db38_query_review.MYI
251lrwx------ 1 mysql mysql 64 Jul 28 08:50 278 -> /srv/sqldata/ops/db38_query_review_history.MYD
252lrwx------ 1 mysql mysql 64 Jul 28 08:50 279 -> /srv/sqldata/enwiki/securepoll_votes.ibd
253lrwx------ 1 mysql mysql 64 Jul 28 08:50 28 -> anon_inode:[eventpoll]
254lrwx------ 1 mysql mysql 64 Jul 28 08:50 280 -> /srv/sqldata/ops/db38_query_review_history.MYI
255lrwx------ 1 mysql mysql 64 Jul 28 08:50 281 -> socket:[654268814]
256lrwx------ 1 mysql mysql 64 Jul 28 08:50 282 -> socket:[654265804]
257lrwx------ 1 mysql mysql 64 Jul 28 08:50 283 -> socket:[655741382]
258lrwx------ 1 mysql mysql 64 Jul 28 08:50 284 -> socket:[654267917]
259lrwx------ 1 mysql mysql 64 Jul 28 08:50 285 -> /srv/sqldata/enwiki/securepoll_properties.ibd
260lrwx------ 1 mysql mysql 64 Jul 28 08:50 287 -> socket:[654114930]
261lrwx------ 1 mysql mysql 64 Jul 28 08:50 288 -> socket:[654266393]
262lrwx------ 1 mysql mysql 64 Jul 28 08:50 289 -> socket:[654063040]
263lrwx------ 1 mysql mysql 64 Jul 28 08:50 29 -> anon_inode:[eventpoll]
264lrwx------ 1 mysql mysql 64 Jul 28 08:50 2904 -> socket:[654309560]
265lrwx------ 1 mysql mysql 64 Jul 28 08:50 292 -> socket:[654267927]
266lrwx------ 1 mysql mysql 64 Jul 28 08:50 293 -> socket:[654268724]
267lrwx------ 1 mysql mysql 64 Jul 28 08:50 294 -> socket:[654267677]
268lrwx------ 1 mysql mysql 64 Jul 28 08:50 295 -> socket:[655738964]
269lrwx------ 1 mysql mysql 64 Jul 28 08:50 296 -> socket:[654269590]
270lrwx------ 1 mysql mysql 64 Jul 28 08:50 297 -> socket:[654269547]
271lrwx------ 1 mysql mysql 64 Jul 28 08:50 2981 -> socket:[654310240]
272lrwx------ 1 mysql mysql 64 Jul 28 08:50 3 -> /srv/sqldata/db1132-bin.index
273lrwx------ 1 mysql mysql 64 Jul 28 08:50 30 -> anon_inode:[eventpoll]
274lrwx------ 1 mysql mysql 64 Jul 28 08:50 300 -> socket:[654267737]
275lrwx------ 1 mysql mysql 64 Jul 28 08:50 304 -> socket:[654268177]
276lrwx------ 1 mysql mysql 64 Jul 28 08:50 305 -> socket:[654268834]
277lrwx------ 1 mysql mysql 64 Jul 28 08:50 306 -> socket:[654262639]
278lrwx------ 1 mysql mysql 64 Jul 28 08:50 307 -> socket:[654066477]
279lrwx------ 1 mysql mysql 64 Jul 28 08:50 308 -> socket:[654268434]
280lrwx------ 1 mysql mysql 64 Jul 28 08:50 309 -> socket:[654268564]
281lrwx------ 1 mysql mysql 64 Jul 28 08:50 31 -> anon_inode:[eventpoll]
282lrwx------ 1 mysql mysql 64 Jul 28 08:50 310 -> socket:[654264481]
283lrwx------ 1 mysql mysql 64 Jul 28 08:50 311 -> socket:[654267143]
284lrwx------ 1 mysql mysql 64 Jul 28 08:50 315 -> socket:[654266623]
285lrwx------ 1 mysql mysql 64 Jul 28 08:50 32 -> anon_inode:[eventpoll]
286lrwx------ 1 mysql mysql 64 Jul 28 08:50 322 -> socket:[654266613]
287lrwx------ 1 mysql mysql 64 Jul 28 08:50 323 -> socket:[654267687]
288lrwx------ 1 mysql mysql 64 Jul 28 08:50 324 -> socket:[654269487]
289lrwx------ 1 mysql mysql 64 Jul 28 08:50 326 -> socket:[654269597]
290lrwx------ 1 mysql mysql 64 Jul 28 08:50 327 -> socket:[654267847]
291lrwx------ 1 mysql mysql 64 Jul 28 08:50 328 -> socket:[654268624]
292lrwx------ 1 mysql mysql 64 Jul 28 08:50 329 -> socket:[654275761]
293lrwx------ 1 mysql mysql 64 Jul 28 08:50 33 -> anon_inode:[eventpoll]
294lrwx------ 1 mysql mysql 64 Jul 28 08:50 333 -> socket:[654267857]
295lrwx------ 1 mysql mysql 64 Jul 28 08:50 334 -> socket:[654263911]
296lrwx------ 1 mysql mysql 64 Jul 28 08:50 337 -> socket:[654265834]
297lrwx------ 1 mysql mysql 64 Jul 28 08:50 338 -> socket:[654267967]
298lrwx------ 1 mysql mysql 64 Jul 28 08:50 339 -> socket:[654268924]
299lrwx------ 1 mysql mysql 64 Jul 28 08:50 34 -> anon_inode:[eventpoll]
300lrwx------ 1 mysql mysql 64 Jul 28 08:50 340 -> socket:[654268894]
301lrwx------ 1 mysql mysql 64 Jul 28 08:50 341 -> socket:[654275611]
302lrwx------ 1 mysql mysql 64 Jul 28 08:50 342 -> socket:[654277993]
303lrwx------ 1 mysql mysql 64 Jul 28 08:50 343 -> socket:[654263621]
304lrwx------ 1 mysql mysql 64 Jul 28 08:50 346 -> socket:[654268874]
305lrwx------ 1 mysql mysql 64 Jul 28 08:50 347 -> socket:[654268086]
306lrwx------ 1 mysql mysql 64 Jul 28 08:50 35 -> anon_inode:[eventpoll]
307lrwx------ 1 mysql mysql 64 Jul 28 08:50 353 -> socket:[654268774]
308lrwx------ 1 mysql mysql 64 Jul 28 08:50 358 -> socket:[654268167]
309lrwx------ 1 mysql mysql 64 Jul 28 08:50 359 -> socket:[654268197]
310lrwx------ 1 mysql mysql 64 Jul 28 08:50 36 -> anon_inode:[eventpoll]
311lrwx------ 1 mysql mysql 64 Jul 28 08:50 360 -> socket:[654275005]
312lrwx------ 1 mysql mysql 64 Jul 28 08:50 363 -> socket:[654268237]
313lrwx------ 1 mysql mysql 64 Jul 28 08:50 365 -> socket:[654266733]
314lrwx------ 1 mysql mysql 64 Jul 28 08:50 37 -> anon_inode:[eventpoll]
315lrwx------ 1 mysql mysql 64 Jul 28 08:50 370 -> socket:[654265934]
316lrwx------ 1 mysql mysql 64 Jul 28 08:50 376 -> socket:[654272289]
317lrwx------ 1 mysql mysql 64 Jul 28 08:50 377 -> socket:[654276875]
318lrwx------ 1 mysql mysql 64 Jul 28 08:50 379 -> socket:[654264231]
319lrwx------ 1 mysql mysql 64 Jul 28 08:50 38 -> anon_inode:[eventpoll]
320lrwx------ 1 mysql mysql 64 Jul 28 08:50 383 -> socket:[654266074]
321lrwx------ 1 mysql mysql 64 Jul 28 08:50 384 -> socket:[654264989]
322lrwx------ 1 mysql mysql 64 Jul 28 08:50 385 -> socket:[654279168]
323lrwx------ 1 mysql mysql 64 Jul 28 08:50 386 -> socket:[654267013]
324lrwx------ 1 mysql mysql 64 Jul 28 08:50 389 -> socket:[654262991]
325lrwx------ 1 mysql mysql 64 Jul 28 08:50 39 -> anon_inode:[eventpoll]
326lrwx------ 1 mysql mysql 64 Jul 28 08:50 391 -> socket:[654268407]
327lrwx------ 1 mysql mysql 64 Jul 28 08:50 394 -> socket:[654267063]
328lrwx------ 1 mysql mysql 64 Jul 28 08:50 396 -> socket:[654262929]
329lrwx------ 1 mysql mysql 64 Jul 28 08:50 4 -> /srv/sqldata/aria_log_control
330lrwx------ 1 mysql mysql 64 Jul 28 08:50 40 -> /srv/sqldata/enwiki/recentchanges.ibd
331lrwx------ 1 mysql mysql 64 Jul 28 08:50 400 -> socket:[654276795]
332lrwx------ 1 mysql mysql 64 Jul 28 08:50 406 -> socket:[654281274]
333lrwx------ 1 mysql mysql 64 Jul 28 08:50 409 -> socket:[654267303]
334lrwx------ 1 mysql mysql 64 Jul 28 08:50 41 -> anon_inode:[eventpoll]
335lrwx------ 1 mysql mysql 64 Jul 28 08:50 413 -> socket:[654265964]
336lrwx------ 1 mysql mysql 64 Jul 28 08:50 42 -> anon_inode:[eventpoll]
337lrwx------ 1 mysql mysql 64 Jul 28 08:50 426 -> socket:[654271909]
338lrwx------ 1 mysql mysql 64 Jul 28 08:50 43 -> anon_inode:[eventpoll]
339lrwx------ 1 mysql mysql 64 Jul 28 08:50 430 -> socket:[654271829]
340lrwx------ 1 mysql mysql 64 Jul 28 08:50 435 -> socket:[654275085]
341lrwx------ 1 mysql mysql 64 Jul 28 08:50 44 -> anon_inode:[eventpoll]
342lrwx------ 1 mysql mysql 64 Jul 28 08:50 443 -> socket:[654263147]
343lrwx------ 1 mysql mysql 64 Jul 28 08:50 446 -> socket:[654273692]
344lrwx------ 1 mysql mysql 64 Jul 28 08:50 448 -> socket:[654272699]
345lrwx------ 1 mysql mysql 64 Jul 28 08:50 45 -> anon_inode:[eventpoll]
346lrwx------ 1 mysql mysql 64 Jul 28 08:50 454 -> socket:[654264253]
347lrwx------ 1 mysql mysql 64 Jul 28 08:50 46 -> anon_inode:[eventpoll]
348lrwx------ 1 mysql mysql 64 Jul 28 08:50 460 -> socket:[654265319]
349lrwx------ 1 mysql mysql 64 Jul 28 08:50 463 -> socket:[654275095]
350lrwx------ 1 mysql mysql 64 Jul 28 08:50 47 -> anon_inode:[eventpoll]
351lrwx------ 1 mysql mysql 64 Jul 28 08:50 474 -> socket:[654271830]
352lrwx------ 1 mysql mysql 64 Jul 28 08:50 476 -> socket:[654271859]
353lrwx------ 1 mysql mysql 64 Jul 28 08:50 48 -> anon_inode:[eventpoll]
354lrwx------ 1 mysql mysql 64 Jul 28 08:50 481 -> socket:[654272439]
355lrwx------ 1 mysql mysql 64 Jul 28 08:50 484 -> socket:[654273090]
356lrwx------ 1 mysql mysql 64 Jul 28 08:50 486 -> socket:[654272969]
357lrwx------ 1 mysql mysql 64 Jul 28 08:50 487 -> socket:[654272509]
358lrwx------ 1 mysql mysql 64 Jul 28 08:50 49 -> anon_inode:[eventpoll]
359lrwx------ 1 mysql mysql 64 Jul 28 08:50 490 -> socket:[654263281]
360lrwx------ 1 mysql mysql 64 Jul 28 08:50 492 -> socket:[654276925]
361lrwx------ 1 mysql mysql 64 Jul 28 08:50 493 -> socket:[654276995]
362lrwx------ 1 mysql mysql 64 Jul 28 08:50 495 -> socket:[654271969]
363lrwx------ 1 mysql mysql 64 Jul 28 08:50 498 -> socket:[654275811]
364lr-x------ 1 mysql mysql 64 Jul 28 08:50 5 -> /srv/sqldata
365lrwx------ 1 mysql mysql 64 Jul 28 08:50 50 -> anon_inode:[eventpoll]
366lrwx------ 1 mysql mysql 64 Jul 28 08:50 508 -> socket:[654272829]
367lrwx------ 1 mysql mysql 64 Jul 28 08:50 51 -> anon_inode:[eventpoll]
368lrwx------ 1 mysql mysql 64 Jul 28 08:50 515 -> socket:[654271999]
369lrwx------ 1 mysql mysql 64 Jul 28 08:50 52 -> anon_inode:[eventpoll]
370lrwx------ 1 mysql mysql 64 Jul 28 08:50 523 -> socket:[654271175]
371lrwx------ 1 mysql mysql 64 Jul 28 08:50 53 -> anon_inode:[eventpoll]
372lrwx------ 1 mysql mysql 64 Jul 28 08:50 530 -> socket:[654271205]
373lrwx------ 1 mysql mysql 64 Jul 28 08:50 531 -> socket:[654273039]
374lrwx------ 1 mysql mysql 64 Jul 28 08:50 533 -> socket:[654273069]
375lrwx------ 1 mysql mysql 64 Jul 28 08:50 54 -> anon_inode:[eventpoll]
376lrwx------ 1 mysql mysql 64 Jul 28 08:50 540 -> socket:[654272849]
377lrwx------ 1 mysql mysql 64 Jul 28 08:50 542 -> socket:[654273070]
378lrwx------ 1 mysql mysql 64 Jul 28 08:50 548 -> socket:[654272429]
379lrwx------ 1 mysql mysql 64 Jul 28 08:50 55 -> anon_inode:[eventpoll]
380lrwx------ 1 mysql mysql 64 Jul 28 08:50 557 -> socket:[654274825]
381lrwx------ 1 mysql mysql 64 Jul 28 08:50 56 -> anon_inode:[eventpoll]
382lrwx------ 1 mysql mysql 64 Jul 28 08:50 561 -> socket:[654273922]
383lrwx------ 1 mysql mysql 64 Jul 28 08:50 566 -> socket:[654273982]
384lrwx------ 1 mysql mysql 64 Jul 28 08:50 567 -> socket:[654272879]
385lrwx------ 1 mysql mysql 64 Jul 28 08:50 57 -> anon_inode:[eventpoll]
386lrwx------ 1 mysql mysql 64 Jul 28 08:50 58 -> anon_inode:[eventpoll]
387lrwx------ 1 mysql mysql 64 Jul 28 08:50 584 -> socket:[654274262]
388lrwx------ 1 mysql mysql 64 Jul 28 08:50 59 -> anon_inode:[eventpoll]
389lrwx------ 1 mysql mysql 64 Jul 28 08:50 590 -> socket:[654274422]
390lrwx------ 1 mysql mysql 64 Jul 28 08:50 597 -> socket:[654277802]
391lrwx------ 1 mysql mysql 64 Jul 28 08:50 6 -> /srv/sqldata/aria_log.00000033
392lrwx------ 1 mysql mysql 64 Jul 28 08:50 60 -> anon_inode:[eventpoll]
393lrwx------ 1 mysql mysql 64 Jul 28 08:50 601 -> socket:[654269062]
394lrwx------ 1 mysql mysql 64 Jul 28 08:50 603 -> socket:[654273280]
395lrwx------ 1 mysql mysql 64 Jul 28 08:50 61 -> anon_inode:[eventpoll]
396lrwx------ 1 mysql mysql 64 Jul 28 08:50 611 -> socket:[654273200]
397lrwx------ 1 mysql mysql 64 Jul 28 08:50 612 -> socket:[654283019]
398lrwx------ 1 mysql mysql 64 Jul 28 08:50 617 -> socket:[654279478]
399lrwx------ 1 mysql mysql 64 Jul 28 08:50 62 -> anon_inode:[eventpoll]
400lrwx------ 1 mysql mysql 64 Jul 28 08:50 623 -> socket:[654276033]
401lrwx------ 1 mysql mysql 64 Jul 28 08:50 63 -> anon_inode:[eventpoll]
402lrwx------ 1 mysql mysql 64 Jul 28 08:50 64 -> anon_inode:[eventpoll]
403lrwx------ 1 mysql mysql 64 Jul 28 08:50 645 -> socket:[654280434]
404lrwx------ 1 mysql mysql 64 Jul 28 08:50 65 -> anon_inode:[eventpoll]
405lrwx------ 1 mysql mysql 64 Jul 28 08:50 66 -> anon_inode:[eventpoll]
406lrwx------ 1 mysql mysql 64 Jul 28 08:50 664 -> socket:[654279128]
407lrwx------ 1 mysql mysql 64 Jul 28 08:50 667 -> socket:[654280044]
408lrwx------ 1 mysql mysql 64 Jul 28 08:50 67 -> anon_inode:[eventpoll]
409lrwx------ 1 mysql mysql 64 Jul 28 08:50 679 -> socket:[654280104]
410lrwx------ 1 mysql mysql 64 Jul 28 08:50 68 -> anon_inode:[eventpoll]
411lrwx------ 1 mysql mysql 64 Jul 28 08:50 681 -> socket:[654280714]
412lrwx------ 1 mysql mysql 64 Jul 28 08:50 69 -> anon_inode:[eventpoll]
413lrwx------ 1 mysql mysql 64 Jul 28 08:50 7 -> /srv/tmp/#2186812655 (deleted)
414lrwx------ 1 mysql mysql 64 Jul 28 08:50 70 -> anon_inode:[eventpoll]
415lrwx------ 1 mysql mysql 64 Jul 28 08:50 71 -> anon_inode:[eventpoll]
416lrwx------ 1 mysql mysql 64 Jul 28 08:50 72 -> anon_inode:[eventpoll]
417lrwx------ 1 mysql mysql 64 Jul 28 08:50 724 -> socket:[654275324]
418lrwx------ 1 mysql mysql 64 Jul 28 08:50 726 -> socket:[654274875]
419lrwx------ 1 mysql mysql 64 Jul 28 08:50 73 -> anon_inode:[eventpoll]
420lrwx------ 1 mysql mysql 64 Jul 28 08:50 730 -> socket:[654276486]
421lrwx------ 1 mysql mysql 64 Jul 28 08:50 731 -> socket:[654277285]
422lrwx------ 1 mysql mysql 64 Jul 28 08:50 732 -> socket:[654277295]
423lrwx------ 1 mysql mysql 64 Jul 28 08:50 734 -> socket:[654277315]
424lrwx------ 1 mysql mysql 64 Jul 28 08:50 736 -> socket:[654277335]
425lrwx------ 1 mysql mysql 64 Jul 28 08:50 74 -> anon_inode:[eventpoll]
426lrwx------ 1 mysql mysql 64 Jul 28 08:50 743 -> socket:[654269362]
427lrwx------ 1 mysql mysql 64 Jul 28 08:50 748 -> socket:[654280684]
428lrwx------ 1 mysql mysql 64 Jul 28 08:50 75 -> anon_inode:[eventpoll]
429lrwx------ 1 mysql mysql 64 Jul 28 08:50 751 -> socket:[654269915]
430lrwx------ 1 mysql mysql 64 Jul 28 08:50 754 -> socket:[654280694]
431lrwx------ 1 mysql mysql 64 Jul 28 08:50 76 -> anon_inode:[eventpoll]
432lrwx------ 1 mysql mysql 64 Jul 28 08:50 77 -> anon_inode:[eventpoll]
433lrwx------ 1 mysql mysql 64 Jul 28 08:50 771 -> socket:[654280924]
434lrwx------ 1 mysql mysql 64 Jul 28 08:50 78 -> anon_inode:[eventpoll]
435lrwx------ 1 mysql mysql 64 Jul 28 08:50 79 -> anon_inode:[eventpoll]
436lrwx------ 1 mysql mysql 64 Jul 28 08:50 8 -> /srv/tmp/#2214574076 (deleted)
437lrwx------ 1 mysql mysql 64 Jul 28 08:50 80 -> anon_inode:[eventpoll]
438lrwx------ 1 mysql mysql 64 Jul 28 08:50 81 -> anon_inode:[eventpoll]
439lrwx------ 1 mysql mysql 64 Jul 28 08:50 82 -> anon_inode:[eventpoll]
440lrwx------ 1 mysql mysql 64 Jul 28 08:50 83 -> anon_inode:[eventpoll]
441lrwx------ 1 mysql mysql 64 Jul 28 08:50 832 -> socket:[654283809]
442lrwx------ 1 mysql mysql 64 Jul 28 08:50 84 -> anon_inode:[eventpoll]
443lrwx------ 1 mysql mysql 64 Jul 28 08:50 85 -> anon_inode:[eventpoll]
444lrwx------ 1 mysql mysql 64 Jul 28 08:50 852 -> socket:[654282316]
445lrwx------ 1 mysql mysql 64 Jul 28 08:50 86 -> anon_inode:[eventpoll]
446lrwx------ 1 mysql mysql 64 Jul 28 08:50 864 -> socket:[654283879]
447lrwx------ 1 mysql mysql 64 Jul 28 08:50 87 -> anon_inode:[eventpoll]
448lrwx------ 1 mysql mysql 64 Jul 28 08:50 872 -> socket:[654282858]
449lrwx------ 1 mysql mysql 64 Jul 28 08:50 88 -> socket:[3853229169]
450lrwx------ 1 mysql mysql 64 Jul 28 08:50 888 -> socket:[654282808]
451lrwx------ 1 mysql mysql 64 Jul 28 08:50 89 -> socket:[3853229170]
452lrwx------ 1 mysql mysql 64 Jul 28 08:50 897 -> socket:[654276545]
453lrwx------ 1 mysql mysql 64 Jul 28 08:50 9 -> /srv/tmp/#2214574084 (deleted)
454lrwx------ 1 mysql mysql 64 Jul 28 08:50 90 -> socket:[3853229173]
455lrwx------ 1 mysql mysql 64 Jul 28 08:50 91 -> socket:[3853229174]
456lrwx------ 1 mysql mysql 64 Jul 28 08:50 92 -> socket:[3853229175]
457lrwx------ 1 mysql mysql 64 Jul 28 08:50 93 -> /srv/sqldata/mysql/db.MAD
458lrwx------ 1 mysql mysql 64 Jul 28 08:50 94 -> /srv/sqldata/mysql/db.MAI
459lrwx------ 1 mysql mysql 64 Jul 28 08:50 946 -> socket:[654284877]
460lrwx------ 1 mysql mysql 64 Jul 28 08:50 95 -> /srv/sqldata/mysql/proxies_priv.MAD
461lrwx------ 1 mysql mysql 64 Jul 28 08:50 950 -> socket:[654275284]
462lrwx------ 1 mysql mysql 64 Jul 28 08:50 9541 -> socket:[654404111]
463lrwx------ 1 mysql mysql 64 Jul 28 08:50 96 -> /srv/sqldata/mysql/proxies_priv.MAI
464lrwx------ 1 mysql mysql 64 Jul 28 08:50 960 -> socket:[654285037]
465lrwx------ 1 mysql mysql 64 Jul 28 08:50 9617 -> socket:[654379748]
466lrwx------ 1 mysql mysql 64 Jul 28 08:50 9619 -> socket:[654379768]
467lrwx------ 1 mysql mysql 64 Jul 28 08:50 9626 -> socket:[654379831]
468lrwx------ 1 mysql mysql 64 Jul 28 08:50 9629 -> socket:[654379858]
469lrwx------ 1 mysql mysql 64 Jul 28 08:50 97 -> /srv/sqldata/mysql/roles_mapping.MAD
470lrwx------ 1 mysql mysql 64 Jul 28 08:50 977 -> socket:[654275254]
471lrwx------ 1 mysql mysql 64 Jul 28 08:50 98 -> /srv/sqldata/mysql/roles_mapping.MAI
472lrwx------ 1 mysql mysql 64 Jul 28 08:50 99 -> /srv/sqldata/mysql/global_priv.MAD
473lrwx------ 1 mysql mysql 64 Jul 28 08:50 991 -> socket:[654283459]
474lrwx------ 1 mysql mysql 64 Jul 28 08:50 992 -> socket:[654283469]

Thanks a lot @Danielgblack @VicentiuCiorbaru from the MariaDB Foundation for the time you've spent troubleshooting this with me.

10.6.8 hosts pooled again:

  • db1111 in s8
  • db1132 s1
  • db1127 in s7

All of them back to the version that has no uring compiled. Slow log enabled to capture queries slower than 20 seconds.

I am off starting tomorrow and back online on the 17th.
As we are not fully sure about the situation with 10.6 hosts, I am leaving them (only those serving sX) depooled whilst I am out in order not to cause troubles if we suffer another incident.
Once I am back I will repool them and continue troubleshooting together with MariaDB Foundation engineers.

We are depooling all 10.6 hosts again after two issues today with db1132 (s1) (T315754) and db1143 (s4) (T315742) where they have fully stalled. Until we've checked them, we are not repooling any 10.6 back.

@Danielgblack Double check T315754 and db1143 T315742 for the latest occurrences if you've got time.
The hosts haven't been touched since they got stalled, so we can get as many traces as you'd think of. After grabbing all the info we need, I am thinking about starting them without the query killer as you suggested, to see what happens.

The only concern is that if we get into overload issues, the host might simply become unavailable because of too many connections (or I could start a manual pt-kill to help just in case). But once depooled, it should be able to catch up, which is something that doesn't happen now. The usual behaviour with these stalls is that the hosts will never be able to:

  1. get rid of the killed connections
  2. catch up with replication until mysqld is killed and started again.

Thoughts?

It looks like the bug was introduced at https://jira.mariadb.org/browse/MDEV-27058 and the reason is described at: https://jira.mariadb.org/browse/MDEV-29190?focusedCommentId=233549&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-233549

The reason of the hang is clear now. There is no ongoing I/O. What apparently happened was that two threads were requesting the same ROW_FORMAT=COMPRESSED block at the same time, all while the block only exists in compressed form in the buffer pool (buf_page_t::frame contains nullptr).

I have finished compiling and packaging the branch with the fix, I have installed it on db1125 (test host) and will do so on db1124 (test cluster master). Will do a few tests and if it is fine, I will install it on db1143 (commonswiki - T315742 ) tomorrow as db1132 is still catching up (T315754) and I want to start with it with no lag.

Not sure db1132 will be in sync with the master by tomorrow, but even if if it is, I won't pool the 10.6 hosts with the fix on a Friday, and will give them the weekend to make sure it is all stable.

Self note to double check it was compiled with the fix:

# egrep -B1 "goto wait_for_unzip;|wait_for_unzip|\!buf_LRU_free_page" buf0buf.cc
		if (UNIV_UNLIKELY(!block->page.frame)) {
			goto wait_for_unzip;
--

		if (!buf_LRU_free_page(&block->page, true)) {
--
		if (!block->page.lock.x_lock_try()) {
wait_for_unzip:

Installed the fixed version on db1143 (s4), if all goes ok during the weekend I will start repooling it along with db1132 (s1) next week.

db1132 has now the fix installed. I will leave it replicating during the weekend and start pooling it back next week.

Change 830055 had a related patch set uploaded (by Marostegui; author: Marostegui):

[operations/puppet@production] db1132,db1143: Enable notifications

https://gerrit.wikimedia.org/r/830055

I am repooling db1132 and db1143.

Change 830055 merged by Marostegui:

[operations/puppet@production] db1132,db1143: Enable notifications

https://gerrit.wikimedia.org/r/830055

I have installed the new package also on db1111 (wikidata) and will start repooling it tomorrow.

As we are doing multi-dc now, I have installed the new package with the fix also on db2122 (s7) and db2146 (s1) which are serving traffic, as we could suffer hangs there if the spikes happen again.

Finally installed the new package also on db1127 (s7) and will repool it tomorrow.

db1127 is being repooled. All the sX 10.6 hosts are now serving traffic with the patch

Marostegui closed this task as Resolved.EditedOct 5 2022, 7:34 AM

I am going to tentatively consider this fixed. It's been a month since we repooled the hosts with the patched version (and as of a week ago with the official 10.6.10 release). We've not seen any more issues.
We have had incidents during this month, hard to know whether they'd have caused issues or not, as it is impossible to tell, but considering the cadence we had before, where we saw issues pretty much every week, this is looking pretty good.

Regardless if this is fixed for good or if we need to reopen later, I would like to thank all the MariaDB Foundation engineers, especially @Danielgblack and @VicentiuCiorbaru for their time, dedication and support to make sure this got solved.