matrixorigin / matrixone

Hyperconverged cloud-edge native database
https://docs.matrixorigin.cn/en
Apache License 2.0
1.79k stars 277 forks source link

[Bug]: restore to account failed "file mo-backup19/data/01929379-849a-78c7-b856-daf56f256638_00000 is not found" #19376

Closed tom-csf closed 3 weeks ago

tom-csf commented 4 weeks ago

Is there an existing issue for the same bug?

Branch Name

main

Commit ID

a8e9ce9f220d3bd8ce07147eeb21df4e5823432b

Other Environment Information

- Hardware parameters:
- OS type:
- Others:

Actual Behavior

image

Expected Behavior

No response

Steps to Reproduce

1、create account 
   create account a1 ADMIN_NAME 'admin1' IDENTIFIED BY 'test123';

2、create account pitr01  
   ./mo_br pitr create --host "10.222.4.14" --port 31429 --user "root" --password "111" --pname "pitr01" --level "account" --account "a1" --rangevalue 2 --rangeunit "d"

3、set data to account a1
   create database db01;
   use db01;
   create table tab1(col1 int, col2 datetime);
   create table tab2(col1 int, col2 datetime);
   insert into tab1(col1,col2) values(1,now());
   insert into tab2(col1,col2) values(1,now());
   create view as select * from tab1;
   insert into tab1(col1,col2) values(2,now());
   insert into tab2(col1,col2) values(2,now());

4、restore account
./mo_br pitr restore --host "10.222.4.14" --port 31429 --user "root" --password "111" --pname "pitr01" --timestamp "2024-10-16 04:01:20" --account "a1"

It is probability of occurrence

Additional information

image
tom-csf commented 4 weeks ago
image
YANGGMM commented 4 weeks ago

进行中

YANGGMM commented 3 weeks ago

fixed

tom-csf commented 3 weeks ago

验证已经bugfix