On hosts migrated to 10.1 to 10.4 the events are set to SLAVESIDE_DISABLED:
mysql:root@localhost [ops]> show events; +-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+--------------------+------------+----------------------+----------------------+--------------------+ | Db | Name | Definer | Time zone | Type | Execute at | Interval value | Interval field | Starts | Ends | Status | Originator | character_set_client | collation_connection | Database Collation | +-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+--------------------+------------+----------------------+----------------------+--------------------+ | ops | wmf_slave_overload | root@localhost | SYSTEM | RECURRING | NULL | 10 | SECOND | 2019-05-21 00:00:01 | NULL | SLAVESIDE_DISABLED | 180367395 | utf8 | utf8_general_ci | binary | | ops | wmf_slave_purge | root@localhost | SYSTEM | RECURRING | NULL | 15 | MINUTE | 2019-05-21 00:00:00 | NULL | SLAVESIDE_DISABLED | 180367395 | utf8 | utf8_general_ci | binary | | ops | wmf_slave_wikiuser_sleep | root@localhost | SYSTEM | RECURRING | NULL | 30 | SECOND | 2019-05-21 00:00:05 | NULL | SLAVESIDE_DISABLED | 180367395 | utf8 | utf8_general_ci | binary | | ops | wmf_slave_wikiuser_slow | root@localhost | SYSTEM | RECURRING | NULL | 30 | SECOND | 2019-05-21 00:00:03 | NULL | SLAVESIDE_DISABLED | 180367395 | utf8 | utf8_general_ci | binary | +-----+--------------------------+----------------+-----------+-----------+------------+----------------+----------------+---------------------+------+--------------------+------------+----------------------+----------------------+--------------------+ 4 rows in set (0.001 sec)
Looks like this is a bug and it will be fixed on the next release (10.4.13), we are currently running the latest 10.4.12
https://jira.mariadb.org/browse/MDEV-21758
https://jira.mariadb.org/browse/MDEV-21896
Workaround for now:
set session sql_log_bin=0; use ops; alter event wmf_slave_wikiuser_sleep enable; alter event wmf_slave_wikiuser_slow enable; alter event wmf_slave_purge enable; alter event wmf_slave_overload enable;