1030 Got error 28 from storage engine

后端 未结 10 1252
[愿得一人]
[愿得一人] 2020-12-04 05:31

I am working on a project where i need to create a database with 300 tables for each user who wants to see the demo application. it was working fine but today when i was tes

10条回答
  •  甜味超标
    2020-12-04 06:36

    I had a similar issue, because of my replication binary logs.

    If this is the case, just create a cronjob to run this query every day:

    PURGE BINARY LOGS BEFORE DATE_SUB( NOW(), INTERVAL 2 DAY );
    

    This will remove all binary logs older than 2 days.

    I found this solution here.

提交回复
热议问题