OrientDB導出數據庫
與RDBMS類似,OrientDB還提供了導出和導入數據庫等功能。 OrientDB使用JSON格式導出數據。 默認情況下,export
命令使用GZIP算法來壓縮文件。
導出數據庫時不會鎖定數據庫,這意味着您可以對其執行併發讀取和寫入操作。可以創建該數據的完全副本,因爲併發的讀取和寫入操作。
在本章中,學習如何從OrientDB命令行導出數據庫。
以下語句是Export database
命令的基本語法。
EXPORT DATABASE <output file>
注 - 只有在連接到特定數據庫後才能使用此命令。
示例
在這個例子中,我們將使用在前一章中創建的名爲demo
的數據庫。可以使用以下命令將數據庫導出到名爲export-demo
的文件。
orientdb {db = demo}> EXPORT DATABASE ./export-demo.export
如果它成功執行,它將根據操作系統創建一個名爲'export-demo.zip'
或'exportdemo.gz'
的文件,將會看到以下輸出。
Exporting current database to: DATABASE /home/linuxtp/Desktop/demo.export in
GZipped JSON format ...
Started export of database 'demo' to /home/linuxtp/Desktop/demo.export.gz...
Exporting database info...OK
Exporting clusters...OK (12 clusters)
Exporting schema...OK (11 classes)
Exporting records...
- Cluster 'internal' (id = 0)...OK (records = 3/3)
- Cluster 'index' (id = 1)...OK (records = 0/0)
- Cluster 'manindex' (id = 2)...OK (records = 0/0)
- Cluster 'default' (id = 3)...OK (records = 0/0)
- Cluster 'orole' (id = 4)...OK (records = 3/3)
- Cluster 'ouser' (id = 5)...OK (records = 3/3)
- Cluster 'ofunction' (id = 6)...OK (records = 0/0)
- Cluster 'oschedule' (id = 7)...OK (records = 0/0)
- Cluster 'orids' (id = 8)...OK (records = 0/0)
- Cluster 'v' (id = 9)...OK (records = 0/0)
- Cluster 'e' (id = 10)...OK (records = 0/0)
- Cluster '_studio' (id = 11)...OK (records = 1/1)
Done. Exported 10 of total 10 records
Exporting index info...
- Index dictionary...OK
- Index OUser.name...OK
- Index ORole.name...OK
OK (3 indexes)
Exporting manual indexes content...
- Exporting index dictionary ...OK (entries = 0)
OK (1 manual indexes)
Database export completed in 127ms