提供一下操作的这个时间的observer.log的日志信息
查一下这个 看看是否有ddl的变更操作
select o.tenant_id, o.gmt_create, o.database_id, d.database_name, o.table_id, t.table_name, o.operation_type, o.ddl_stmt_str
from oceanbase.__all_ddl_operation o left join oceanbase.__all_database d on (o.database_id=d.database_id)
left join oceanbase.__all_table t on (o.table_id=t.table_id)
where o.ddl_stmt_str != ‘’ and t.table_name = ‘t1’
order by o.gmt_create ;
obclient(root@ldf)[test]> show parameters like ‘%undo%’;
±------±---------±--------------±---------±---------------±----------±------±-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------±--------±-------±--------±------------------+
| zone | svr_type | svr_ip | svr_port | name | data_type | value | info | section | scope | source | edit_level |
±------±---------±--------------±---------±---------------±----------±------±-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------±--------±-------±--------±------------------+
| zone1 | observer | 192.168.96.12 | 2882 | undo_retention | NULL | 600 | the low threshold value of undo retention. The system retains undo for at least the time specified in this config when active txn protection is banned. Range: [0, 4294967295] | TENANT | TENANT | DEFAULT | DYNAMIC_EFFECTIVE |
±------±---------±--------------±---------±---------------±----------±------±-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------±--------±-------±--------±------------------+
1 row in set (0.004 sec)
obclient(root@ldf)[test]> show variables like ‘%recyclebin%’;
±--------------±------+
| Variable_name | Value |
±--------------±------+
| recyclebin | OFF |
±--------------±------+
1 row in set (0.003 sec)