OrientDB-データベースのエクスポート
RDBMSと同様に、OrientDBもデータベースのエクスポートやインポートなどの機能を提供します。OrientDBは、JSON形式を使用してデータをエクスポートします。デフォルトでは、exportコマンドはGZIPアルゴリズムを使用してファイルを圧縮しています。
データベースのエクスポート中は、データベースがロックされていません。つまり、データベースに対して読み取り操作と書き込み操作を同時に実行できます。また、読み取り操作と書き込み操作が同時に行われるため、そのデータの正確なコピーを作成できることも意味します。
この章では、OrientDBコマンドラインからデータベースをエクスポートする方法を学習できます。
次のステートメントは、データベースのエクスポートコマンドの基本的な構文です。
EXPORT DATABASE <output file>
Note −このコマンドは、特定のデータベースに接続した後でのみ使用できます。
例
この例では、前の章で作成した「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