I’m at a loss here.
I have a Community MySQL 5.7.26 AWS server that was previously a follower in a leader-> follower arrangement. We needed to promote the follower to a leader status.
As part of that process RESET SLAVE is executed.
SHOW SLAVE STATUS comes back with an empty set of information,
HOWEVER, I am getting relay logs being generated (“empty”, 201 bytes of file header) every 1-2 hours.
The server is active enough that the binary logs are being rotated out every 10-20 minutes (only 100M, but that’s a different issue) and the modification time on a relay log does correspond with logrotate executing once an hour (on the 17 minute), but I also see log files last modified at 12 mins after the hour…
i.e.
-rw-r----- 1 mysql mysql 201 Mar 28 22:12 relay-bin.000586
-rw-r----- 1 mysql mysql 201 Mar 28 23:17 relay-bin.000587
-rw-r----- 1 mysql mysql 201 Mar 29 02:12 relay-bin.000588
-rw-r----- 1 mysql mysql 201 Mar 29 02:17 relay-bin.000589
-rw-r----- 1 mysql mysql 201 Mar 29 05:17 relay-bin.000590
-rw-r----- 1 mysql mysql 201 Mar 29 06:12 relay-bin.000591
-rw-r----- 1 mysql mysql 201 Mar 29 07:17 relay-bin.000592
-rw-r----- 1 mysql mysql 201 Mar 29 08:17 relay-bin.000593
-rw-r----- 1 mysql mysql 154 Mar 29 08:17 relay-bin.000594
-rw-r----- 1 mysql mysql 21K Mar 29 08:17 relay-bin.index
(there are 595 files on the server at this time).
There are zero issues on the follower.
Thoughts on where to poke my nose?
John Breen