1. 備份恢復(fù)工具:
(1)** mongoexport/mongoimport
(2)***** mongodump/mongorestore
2. 備份工具區(qū)別
- 導(dǎo)出格式不同
mongoexport/mongoimport 導(dǎo)入/導(dǎo)出的是JSON格式或者CSV格式
mongodump/mongorestore 導(dǎo)入/導(dǎo)出的是BSON格式
JSON可讀性強但體積較大舰褪,BSON則是二進制文件乐纸,體積小但對人類幾乎沒有可讀性婴程。
在一些mongodb版本之間,BSON格式可能會隨版本不同而有所不同茴她,所以不同版本之間用mongodump/mongorestore可能不會成功,
具體要看版本之間的兼容性程奠。當(dāng)無法使用BSON進行跨版本的數(shù)據(jù)遷移的時候丈牢,
使用JSON格式即mongoexport/mongoimport是一個可選項。
跨版本的mongodump/mongorestore個人并不推薦瞄沙,
實在要做請先檢查文檔看兩個版本是否兼容(大部分時候是的)己沛。
- JSON雖然具有較好的跨版本通用性,但其只保留了數(shù)據(jù)部分距境,不保留索引申尼,賬戶等其他基礎(chǔ)信息。使用時應(yīng)該注意垫桂。
mongoexport/mongoimport:json csv
1师幕、異構(gòu)平臺遷移 mysql <---> mongodb
2、同平臺诬滩,跨大版本:mongodb 2 ----> mongodb 3
3. 導(dǎo)出工具mongoexport
Mongodb中的mongoexport工具可以把一個collection導(dǎo)出成JSON格式或CSV格式的文件霹粥。
可以通過參數(shù)指定導(dǎo)出的數(shù)據(jù)項,也可以根據(jù)指定的條件導(dǎo)出數(shù)據(jù)疼鸟。
(1)版本差異較大
(2)異構(gòu)平臺數(shù)據(jù)遷移
4. mongoexport具體用法
- 參數(shù)介紹
mongoexport --help
參數(shù)說明:
-h:指明數(shù)據(jù)庫宿主機的IP
-u:指明數(shù)據(jù)庫的用戶名
-p:指明數(shù)據(jù)庫的密碼
-d:指明數(shù)據(jù)庫的名字
-c:指明collection的名字
-f:指明要導(dǎo)出那些列
-o:指明到要導(dǎo)出的文件名
-q:指明導(dǎo)出數(shù)據(jù)的過濾條件
--authenticationDatabase admin :認(rèn)證庫
- 單表備份至json格式
mongoexport -uroot -proot123 --port 27017 --authenticationDatabase admin -d oldguo -c log -o /mongodb/log.json
注:備份文件的名字可以自定義后控,默認(rèn)導(dǎo)出了JSON格式的數(shù)據(jù)。
- 單表備份至csv格式
如果我們需要導(dǎo)出CSV格式的數(shù)據(jù)空镜,則需要使用----type=csv參數(shù):
mongoexport -uroot -proot123 --port 27017 --authenticationDatabase admin -d oldguo -c log --type=csv -f uid,name,age,date -o /mongodb/log.csv
5. 導(dǎo)入工具mongoimport
Mongodb中的mongoimport工具可以把一個特定格式文件中的內(nèi)容導(dǎo)入到指定的collection中浩淘。該工具可以導(dǎo)入JSON格式數(shù)據(jù),也可以導(dǎo)入CSV格式數(shù)據(jù)姑裂。具體使用如下所示:
- 參數(shù)說明
$ mongoimport --help
參數(shù)說明:
-h:指明數(shù)據(jù)庫宿主機的IP
-u:指明數(shù)據(jù)庫的用戶名
-p:指明數(shù)據(jù)庫的密碼
-d:指明數(shù)據(jù)庫的名字
-c:指明collection的名字
-f:指明要導(dǎo)入那些列
-j, --numInsertionWorkers=<number> number of insert operations to run concurrently (defaults to 1)
//并行
- 數(shù)據(jù)恢復(fù):
恢復(fù)json格式表數(shù)據(jù)到log
mongoimport -uroot -proot123 --port 27017 --authenticationDatabase admin -d oldguo -c log1 /mongodb/log.json
恢復(fù)csv格式的文件到log2
上面演示的是導(dǎo)入JSON格式的文件中的內(nèi)容馋袜,如果要導(dǎo)入CSV格式文件中的內(nèi)容,則需要通過--type參數(shù)指定導(dǎo)入格式舶斧,具體如下所示:
1)csv格式的文件頭行欣鳖,有列名字
mongoimport -uroot -proot123 --port 27017 --authenticationDatabase admin -d oldguo -c log2 --type=csv --headerline --file /mongodb/log.csv
2)csv格式的文件頭行,沒有列名字
mongoimport -uroot -proot123 --port 27017 --authenticationDatabase admin -d oldguo -c log3 --type=csv -f id,name,age,date --file /mongodb/log1.csv
--headerline:指明第一行是列名茴厉,不需要導(dǎo)入泽台。
補:導(dǎo)入CSV文件P_T_HISTXN_20160616.csv(csv文件中沒有列明什荣,fields指定列明)
$ tail -5 P_T_HISTXN_20160616.csv
6. 異構(gòu)平臺遷移案例 mysql --> mongodb
- world數(shù)據(jù)庫下city表進行導(dǎo)出,導(dǎo)入到mongodb
- mysql開啟安全路徑
vim /etc/my.cnf --->添加以下配置
secure-file-priv=/tmp
--重啟數(shù)據(jù)庫生效
/etc/init.d/mysqld restart
- 導(dǎo)出mysql的city表數(shù)據(jù)
source /root/world.sql
select * from world.city into outfile '/tmp/city1.csv' fields terminated by ',';
- 處理備份文件
vim /tmp/city.csv ----> 添加第一行列名信息
ID,Name,CountryCode,District,Population
- 在mongodb中導(dǎo)入備份
mongoimport -uroot -proot123 --port 27017 --authenticationDatabase admin -d world -c city --type=csv -f ID,Name,CountryCode,District,Population --file /tmp/city1.csv
use world
db.city.find({CountryCode:"CHN"});
- world共100張表怀酷,全部遷移到mongodb
select concat("select * from ",table_schema,".",table_name ," into outfile '/tmp/",table_schema,"_",table_name,".csv' fields terminated by ',';")
from information_schema.tables where table_schema ='world';
導(dǎo)入:
? 提示稻爬,使用infomation_schema.columns + information_schema.tables
- mysql導(dǎo)入csv:
load data infile '/tmp/test.csv'
into table test_info
fields terminated by ','
optionally enclosed by '"'
escaped by '"'
lines terminated by '\r\n';