OrientDB is the most versatile DBMS supporting Graph, Document, Reactive, Full-Text and Geospatial models in one Multi-Model product. OrientDB can run distributed (Multi-Master), supports SQL, ACID Transactions, Full-Text indexing and Reactive Queries.
I did the incremental backup from the enterprise edition. I got 3 files from the backup in a directory (/backup/mydb)
mydb_2024-09-25-14-12-56_0_full.ibu3mydb_2024-09-25-14-19-05_1.ibu3mydb_2024-09-25-14-20-04_2.ibu3
From the doc, i delete mydb then recreate empty mydb via console.sh and execute the command RESTORE DATABASE /path/to/backup/mydb
Here what i got :
orientdb {db=mydb}> restore database /path/to/backup/mydb
Restoring database 'database /path/to/backup/mydb' from full backup...
Database restored in 0,00 seconds
Error: java.io.FileNotFoundException: '/path/to/backup/mydb' (is directory)
In source code there is no mention of incremental restore. I suppose there is a specific configuration for that case but there is no documentation.
OrientDB Version: 3.2.29
Java Version: 1.8.0_401
OS: Ubuntu 20.04
Enterprise agent : agent-3.2.29.jar
Expected behavior
Database restored from incremental backup files
Actual behavior
I did the incremental backup from the enterprise edition. I got 3 files from the backup in a directory (
/backup/mydb
)mydb_2024-09-25-14-12-56_0_full.ibu3
mydb_2024-09-25-14-19-05_1.ibu3
mydb_2024-09-25-14-20-04_2.ibu3
From the doc, i delete
mydb
then recreate emptymydb
viaconsole.sh
and execute the commandRESTORE DATABASE /path/to/backup/mydb
Here what i got :In source code there is no mention of incremental restore. I suppose there is a specific configuration for that case but there is no documentation.
Thanks in advance.