S3 からのアーカイブのインポート
注意
この機能は M0
Free クラスター、M2
、M5
クラスターでは使用できません。 利用できない機能の詳細については、「 Atlas M0 (無料クラスター)、M2 、および M5 の制限 」を参照してください。
とmongoimport
3を使用して、mongorestore
S バケットにアーカイブされたデータを復元できます。このページでは、 Amazon Web Services CLIとMongoDB Database Toolsを使用してアーカイブ データをインポートし、インデックスを再構築するサンプル手順を示します。
前提条件
始める前に、以下の操作を行う必要があります。
をインストールAmazon Web ServicesCLI
mongoimportとmongorestoreツールをインストールする
手順
1
Amazon Web ServicesCLIAmazon Web Services CLI を使用して S3バケット内のデータをフォルダーにコピーし、データを抽出します。
aws s3 cp s3://<bucketName>/<prefix> <downloadFolder> --recursive gunzip -r <downloadFolder>
以下の条件に一致するもの。
<bucketName> | Amazon Web Services S3バケットの名前。 | |
<prefix> | バケット内のアーカイブ データへのパス。 パスの形式は次のとおりです。
| |
<downloadFolder> | アーカイブされたデータをコピーするローカル フォルダーへのパス。 |
たとえば、次のようなコマンドを実行します。
例
aws s3 cp s3://export-test-bucket/exported_snapshots/1ab2cdef3a5e5a6c3bd12de4/12ab3456c7d89d786feba4e7/myCluster/2021-04-24T0013/1619224539 mybucket --recursive gunzip -r mybucket
2
次のスクリプトをコピーして、massimport.sh
という名前のファイルに保存します。
!/bin/bash regex='/(.+)/(.+)/.+' dir=${1%/} connstr=$2 iterate through the subdirectories of the downloaded and extracted snapshot export and restore the docs with mongoimport find $dir -type f -not -path '*/\.*' -not -path '*metadata\.json' | while read line ; do [[ $line =~ $regex ]] db_name=${BASH_REMATCH[1]} col_name=${BASH_REMATCH[2]} mongoimport --uri "$connstr" --mode=upsert -d $db_name -c $col_name --file $line --type json done create the required directory structure and copy/rename files as needed for mongorestore to rebuild indexes on the collections from exported snapshot metadata files and feed them to mongorestore find $dir -type f -name '*metadata\.json' | while read line ; do [[ $line =~ $regex ]] db_name=${BASH_REMATCH[1]} col_name=${BASH_REMATCH[2]} mkdir -p ${dir}/metadata/${db_name}/ cp $line ${dir}/metadata/${db_name}/${col_name}.metadata.json done mongorestore "$connstr" ${dir}/metadata/ remove the metadata directory because we do not need it anymore and this returns the snapshot directory in an identical state as it was prior to the import rm -rf ${dir}/metadata/
以下の説明では、
--mode=upsert
により、mongoimport
はアーカイブから重複ドキュメントを処理できます。--uri
stringは、Atlas クラスターの 接続 を指定します。
3
massimport.sh
アーカイブ データを Atlas クラスターにインポートするには、 ユーティリティを実行します。
sh massimport.sh <downloadFolder> "mongodb+srv://<connectionString>"
以下の条件に一致するもの。
<downloadFolder> | アーカイブ データをコピーしたローカル フォルダーへのパス。 |
<connectionString> | stringクラスターの接続Atlas 。 |
たとえば、次のようなコマンドを実行します。
例
sh massimport.sh mybucket "mongodb+srv://<myConnString>"