===================================================================================================================
| Mongodb Migrate Tool
===================================================================================================================
| URL格式: mongodb://[username:password@]host1[:port1][,host2[:port2],...[,hostN[:portN]]][/[database][?options]]
| URL例子[
| mongodb://127.0.0.1:27017/test
| mongodb://root:Vmjk9B@192.168.100.1:27017/entryDB
| ]
| 每次拉去数据条数: 5000
| 每个拉取任务一次拉去的数据: 500
| worker数量: 50
===================================================================================================================
(1/4) 请输入数据源URL:
mongodb://192.168.0.204:27017/userStorage
(2/4) 请输入collection:
user
(3/4) 请输入目标源URL:
mongodb://127.0.0.1:27017/test
(4/4) 请输入collection:
userCopy
-------------------------------------------------------------------------------------------------------------------
0 / 312744 (0%)
4000 / 312744 (1%)
const FetchSourceLimit = 5000 //每次拉去数据条数
const SplitFetchSourceLimit = 500 //每个拉取任务一次拉去的数据
const WorkerCount = 50 //worker数量