cherry-pick bfdd52c from fix/ttlCleanUpServices and added the upgrade from 3.1.1
This commit is contained in:
parent
39f0d92e15
commit
f647c69f50
@ -64,6 +64,7 @@ BEGIN
|
||||
AND tablename like 'ts_kv_' || '%'
|
||||
AND tablename != 'ts_kv_latest'
|
||||
AND tablename != 'ts_kv_dictionary'
|
||||
AND tablename != 'ts_kv_indefinite'
|
||||
LOOP
|
||||
IF partition != partition_by_max_ttl_date THEN
|
||||
IF partition_year IS NOT NULL THEN
|
||||
|
||||
@ -175,6 +175,11 @@ public class ThingsboardInstallService {
|
||||
case "3.1.0":
|
||||
log.info("Upgrading ThingsBoard from version 3.1.0 to 3.1.1 ...");
|
||||
databaseEntitiesUpgradeService.upgradeDatabase("3.1.0");
|
||||
case "3.1.1":
|
||||
log.info("Upgrading ThingsBoard from version 3.1.1 to 3.1.2 ...");
|
||||
if (databaseTsUpgradeService != null) {
|
||||
databaseTsUpgradeService.upgradeDatabase("3.1.1");
|
||||
}
|
||||
log.info("Updating system data...");
|
||||
systemDataLoaderService.updateSystemWidgets();
|
||||
break;
|
||||
|
||||
@ -49,6 +49,7 @@ public class CassandraTsDatabaseUpgradeService extends AbstractCassandraDatabase
|
||||
log.info("Schema updated.");
|
||||
break;
|
||||
case "2.5.0":
|
||||
case "3.1.1":
|
||||
break;
|
||||
default:
|
||||
throw new RuntimeException("Unable to upgrade Cassandra database, unsupported fromVersion: " + fromVersion);
|
||||
|
||||
@ -195,6 +195,12 @@ public class PsqlTsDatabaseUpgradeService extends AbstractSqlTsDatabaseUpgradeSe
|
||||
executeQuery(conn, "UPDATE tb_schema_settings SET schema_version = 2005001");
|
||||
}
|
||||
break;
|
||||
case "3.1.1":
|
||||
try (Connection conn = DriverManager.getConnection(dbUrl, dbUserName, dbPassword)) {
|
||||
log.info("Load Drop Partitions functions ...");
|
||||
loadSql(conn, LOAD_DROP_PARTITIONS_FUNCTIONS_SQL);
|
||||
}
|
||||
break;
|
||||
default:
|
||||
throw new RuntimeException("Unable to upgrade SQL database, unsupported fromVersion: " + fromVersion);
|
||||
}
|
||||
|
||||
@ -177,6 +177,8 @@ public class TimescaleTsDatabaseUpgradeService extends AbstractSqlTsDatabaseUpgr
|
||||
executeQuery(conn, "UPDATE tb_schema_settings SET schema_version = 2005001");
|
||||
}
|
||||
break;
|
||||
case "3.1.1":
|
||||
break;
|
||||
default:
|
||||
throw new RuntimeException("Unable to upgrade SQL database, unsupported fromVersion: " + fromVersion);
|
||||
}
|
||||
|
||||
@ -38,19 +38,15 @@ public abstract class AbstractCleanUpService {
|
||||
@Value("${spring.datasource.password}")
|
||||
protected String dbPassword;
|
||||
|
||||
protected long executeQuery(Connection conn, String query) {
|
||||
long removed = 0L;
|
||||
try {
|
||||
Statement statement = conn.createStatement();
|
||||
protected long executeQuery(Connection conn, String query) throws SQLException {
|
||||
try (Statement statement = conn.createStatement()) {
|
||||
ResultSet resultSet = statement.executeQuery(query);
|
||||
if (log.isDebugEnabled()) {
|
||||
getWarnings(statement);
|
||||
resultSet.next();
|
||||
removed = resultSet.getLong(1);
|
||||
log.debug("Successfully executed query: {}", query);
|
||||
} catch (SQLException e) {
|
||||
log.debug("Failed to execute query: {} due to: {}", query, e.getMessage());
|
||||
}
|
||||
return removed;
|
||||
resultSet.next();
|
||||
return resultSet.getLong(1);
|
||||
}
|
||||
}
|
||||
|
||||
protected void getWarnings(Statement statement) throws SQLException {
|
||||
@ -65,6 +61,6 @@ public abstract class AbstractCleanUpService {
|
||||
}
|
||||
}
|
||||
|
||||
protected abstract void doCleanUp(Connection connection);
|
||||
protected abstract void doCleanUp(Connection connection) throws SQLException;
|
||||
|
||||
}
|
||||
|
||||
@ -52,7 +52,7 @@ public class EventsCleanUpService extends AbstractCleanUpService {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void doCleanUp(Connection connection) {
|
||||
protected void doCleanUp(Connection connection) throws SQLException {
|
||||
long totalEventsRemoved = executeQuery(connection, "call cleanup_events_by_ttl(" + ttl + ", " + debugTtl + ", 0);");
|
||||
log.info("Total events removed by TTL: [{}]", totalEventsRemoved);
|
||||
}
|
||||
|
||||
@ -23,6 +23,7 @@ import org.thingsboard.server.dao.util.PsqlDao;
|
||||
import org.thingsboard.server.dao.util.SqlTsDao;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.SQLException;
|
||||
|
||||
@SqlTsDao
|
||||
@PsqlDao
|
||||
@ -34,7 +35,7 @@ public class PsqlTimeseriesCleanUpService extends AbstractTimeseriesCleanUpServi
|
||||
private String partitionType;
|
||||
|
||||
@Override
|
||||
protected void doCleanUp(Connection connection) {
|
||||
protected void doCleanUp(Connection connection) throws SQLException {
|
||||
long totalPartitionsRemoved = executeQuery(connection, "call drop_partitions_by_max_ttl('" + partitionType + "'," + systemTtl + ", 0);");
|
||||
log.info("Total partitions removed by TTL: [{}]", totalPartitionsRemoved);
|
||||
long totalEntitiesTelemetryRemoved = executeQuery(connection, "call cleanup_timeseries_by_ttl('" + ModelConstants.NULL_UUID + "'," + systemTtl + ", 0);");
|
||||
|
||||
@ -21,6 +21,7 @@ import org.thingsboard.server.dao.model.ModelConstants;
|
||||
import org.thingsboard.server.dao.util.TimescaleDBTsDao;
|
||||
|
||||
import java.sql.Connection;
|
||||
import java.sql.SQLException;
|
||||
|
||||
@TimescaleDBTsDao
|
||||
@Service
|
||||
@ -28,7 +29,7 @@ import java.sql.Connection;
|
||||
public class TimescaleTimeseriesCleanUpService extends AbstractTimeseriesCleanUpService {
|
||||
|
||||
@Override
|
||||
protected void doCleanUp(Connection connection) {
|
||||
protected void doCleanUp(Connection connection) throws SQLException {
|
||||
long totalEntitiesTelemetryRemoved = executeQuery(connection, "call cleanup_timeseries_by_ttl('" + ModelConstants.NULL_UUID + "'," + systemTtl + ", 0);");
|
||||
log.info("Total telemetry removed stats by TTL for entities: [{}]", totalEntitiesTelemetryRemoved);
|
||||
}
|
||||
|
||||
@ -84,6 +84,7 @@ BEGIN
|
||||
AND tablename like 'ts_kv_' || '%'
|
||||
AND tablename != 'ts_kv_latest'
|
||||
AND tablename != 'ts_kv_dictionary'
|
||||
AND tablename != 'ts_kv_indefinite'
|
||||
LOOP
|
||||
IF partition != partition_by_max_ttl_date THEN
|
||||
IF partition_year IS NOT NULL THEN
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user