Today, I checked the /var/lib/mysql/ directory of a server in a master-master replication setup and noticed there were about 3,600 slave-relay.00xxxx files in there (where "xxxx" is an incrementing integer).
They appear to be binary log files and don't take up much space (only about 42K), but are they an indication that something is wrong?
They range in date from August until today with about 25 per day.
Thanks for any help.
You can read this from dev.mysql.
In summary, you can relate the number of log files to the number of transactions and queries you are executing. Also, the maximum size of log file can affect how many files you will have.
If you know your database is always busy executing queries (doing insert/update/delete), this should be normal.