我正在为我的应用程序使用MySql Engine = InnoDB。 有一个表可从不同位置收集搜索数据并将其保存以进行处理。 在特定的时间间隔后,我们使用调度程序删除此数据。 当我们删除大量的行时会发生问题,它不会释放磁盘空间。我们已经将 innodb_file_per_table 设置为ON。 一种解决方案是运行查询:
Optimize Table <TableName>
但这会导致该特定表上的其他Select操作失败,提示:
由以下原因引起:java.sql.SQLException:表定义已更改,请 在以下位置重试交易 com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:545) 在 com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:513) 在 com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:115) 在com.mysql.cj.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:1983) 在 com.mysql.cj.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1826) 在 com.mysql.cj.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:1923) 在 com.mchange.v2.c3p0.impl.NewProxyPreparedStatement.executeQuery(NewProxyPreparedStatement.java:353) 在 org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:60) ...省略了154个常见帧
我需要一个解决方案来回收/重用表空间。 我正在使用Spring-boot,因此应从应用程序处理此解决方案。即使需要使用分区,也应该可以从应用程序对其进行配置。
答案 0 :(得分:0)
一些想法: