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 377ms