@@ -394,7 +394,7 @@ void SchemaBuilder<Getter, NameMapper>::applySetTiFlashReplica(DatabaseID databa
394394 auto storage = tmt_context.getStorages ().get (keyspace_id, table_info->id );
395395 if (unlikely (storage == nullptr ))
396396 {
397- LOG_ERROR (
397+ LOG_WARNING (
398398 log,
399399 " Storage instance is not exist in TiFlash, applySetTiFlashReplica is ignored, table_id={}" ,
400400 table_id);
@@ -523,12 +523,12 @@ void SchemaBuilder<Getter, NameMapper>::applyPartitionDiff(DatabaseID database_i
523523 auto table_info = getter.getTableInfo (database_id, table_id);
524524 if (unlikely (table_info == nullptr ))
525525 {
526- LOG_ERROR (log, " table is not exist in TiKV, applyPartitionDiff is ignored, table_id={}" , table_id);
526+ LOG_WARNING (log, " table is not exist in TiKV, applyPartitionDiff is ignored, table_id={}" , table_id);
527527 return ;
528528 }
529529 if (!table_info->isLogicalPartitionTable ())
530530 {
531- LOG_ERROR (
531+ LOG_WARNING (
532532 log,
533533 " new table in TiKV is not a partition table {}, database_id={} table_id={}" ,
534534 name_mapper.debugCanonicalName (*table_info, database_id, keyspace_id),
@@ -541,7 +541,7 @@ void SchemaBuilder<Getter, NameMapper>::applyPartitionDiff(DatabaseID database_i
541541 auto storage = tmt_context.getStorages ().get (keyspace_id, table_info->id );
542542 if (storage == nullptr )
543543 {
544- LOG_ERROR (
544+ LOG_WARNING (
545545 log,
546546 " logical_table storage instance is not exist in TiFlash, applyPartitionDiff is ignored, table_id={}" ,
547547 table_id);
@@ -664,7 +664,7 @@ void SchemaBuilder<Getter, NameMapper>::applyRenameTable(DatabaseID database_id,
664664 auto new_table_info = getter.getTableInfo (database_id, table_id);
665665 if (unlikely (new_table_info == nullptr ))
666666 {
667- LOG_ERROR (log, " table is not exist in TiKV, applyRenameTable is ignored, table_id={}" , table_id);
667+ LOG_WARNING (log, " table is not exist in TiKV, applyRenameTable is ignored, table_id={}" , table_id);
668668 return ;
669669 }
670670
@@ -970,7 +970,7 @@ void SchemaBuilder<Getter, NameMapper>::applyRecoverDatabase(DatabaseID database
970970 auto db = context.tryGetDatabase (db_name);
971971 if (unlikely (!db))
972972 {
973- LOG_ERROR (
973+ LOG_WARNING (
974974 log,
975975 " Recover database is ignored because instance is not exists, may have been physically dropped, "
976976 " database_id={}" ,
0 commit comments