Last active
November 5, 2020 08:06
-
-
Save woodgear/1d4053be67ce2456d1113509bd04b708 to your computer and use it in GitHub Desktop.
mongodump-ext
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# sudo apt install mongo-tools | |
# sudo apt install mongo-client | |
# dump(uri:string,col:string,out:string) | |
function dump { | |
local uri=$1 | |
local col=$2 | |
local out=$3 | |
mongodump --forceTableScan --uri=$uri -c $col --out $out | |
} | |
# load(uri:string,dir:string) | |
function load { | |
local uri=$1 | |
local dir=$2 | |
mongorestore --drop --uri=$uri $dir | |
} | |
# list_col(uri:string,filter:string) | |
function list_col { | |
local res=`echo show collections |mongo $1 --quiet |grep $2` | |
echo $res | |
} | |
# dump(uri:string,list:space_split_string,out:string) | |
function dump_by_list { | |
local uri=$1 | |
local list=$2 | |
local out=$3 | |
echo $list | |
for col in ${list[@]}; do | |
dump $uri $col $out | |
echo dump $col to $out | |
done | |
} | |
# dump(uri:string,filter:string,out:string) | |
function dump_by_filter { | |
local uri=$1 | |
local filter=$2 | |
local out=$3 | |
local cols=$(list_col $uri $filter) | |
for col in $cols; do | |
dump $uri $col $out | |
echo dump $col to $out | |
done | |
} | |
FROM_URL="mongodb://127.0.0.1:27017/a" | |
TO_URL="mongodb://127.0.0.1:27017/b" | |
DIR="./out" | |
dump_by_filter $FROM_URL xx $DIR | |
load $TO_URL $DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment