- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
描述:最近在批量执行一些MongoDB的脚本,所以考虑执行之前先备份一下数据库,但是MongoDB的备份命令不太熟,又是生产环境,就不想去尝试了,直接进行数据库复制和collection复制即可
环境:
db.version();
但是发现生产环境的MongoDB部署到docker里面,而且因为安全问题,端口也不对外开放,所以就不能使用Navicat这些客户端软件直接连接
有Navicat的话,我复制数据库和collection的,直接右键->复制集合->数据和结构就搞定了,但是没有Navicat可以使用,只能使用命令行了
复制数据库,4.0以下版本可以使用copyDatabase
db.copyDatabase(<from_dbname>, <to_dbname>, <from_hostname>);
但是生产环境使用的版本是4.0以上的,所以不能使用这个copyDatabase
命令,然后可以使用什么命令替代?可以参考文档:https://www.mongodb.com/docs/manual/release-notes/4.0-compatibility/#remove-support-for-the-copydb-and-clone-commands
在官方文档里找到mongodump
和mongorestore
可以进行数据库备份,用于mongodump将test数据库转储到存档mongodump-test-db:
mongodump --host="127.0.0.1:27017" --archive="mongodump-test-db" --db=test;
root@0ac56:/# mongodump --host=“127.0.0.1:27017” --archive=“mongodump-test-db” --db=test;
2022-06-14T06:26:23.529+0000 writing test.provinceCataLogModel_test to archive ‘mongodump-test-db’
2022-06-14T06:26:23.531+0000 writing test.provinceCataLogModel_prod to archive ‘mongodump-test-db’
2022-06-14T06:26:23.531+0000 writing test.provinceCataLogModel to archive ‘mongodump-test-db’
2022-06-14T06:26:23.532+0000 writing test.user to archive ‘mongodump-test-db’
2022-06-14T06:26:23.535+0000 done dumping test.provinceCataLogModel_test (10 documents)
2022-06-14T06:26:23.535+0000 writing test.inventory to archive ‘mongodump-test-db’
2022-06-14T06:26:23.536+0000 done dumping test.user (9 documents)
2022-06-14T06:26:23.536+0000 writing test.pullLog to archive ‘mongodump-test-db’
2022-06-14T06:26:23.538+0000 done dumping test.inventory (6 documents)
2022-06-14T06:26:23.538+0000 writing test.orders to archive ‘mongodump-test-db’
2022-06-14T06:26:23.538+0000 done dumping test.provinceCataLogModel (10 documents)
2022-06-14T06:26:23.538+0000 done dumping test.pullLog (2 documents)
2022-06-14T06:26:23.627+0000 done dumping test.orders (2 documents)
2022-06-14T06:26:23.656+0000 done dumping test.provinceCataLogModel_prod (2253 documents)
使用mongorestore和从存档中恢复,nsFrom
数据库名称注意修改,nsTo
是恢复出来的新的数据库名称
mongorestore --host="127.0.0.1:27017" --archive="mongodump-test-db" --nsFrom='test.*' --nsTo='examples.*';
root@0ac56:/# mongorestore --host=“127.0.0.1:27017” --archive=“mongodump-test-db” --nsFrom=‘test.’ --nsTo='examples.’;
2022-06-14T06:28:58.300+0000 preparing collections to restore from
2022-06-14T06:28:58.328+0000 reading metadata for examples.provinceCataLogModel_test from archive ‘mongodump-test-db’
2022-06-14T06:28:58.392+0000 restoring examples.provinceCataLogModel_test from archive ‘mongodump-test-db’
2022-06-14T06:28:58.408+0000 restoring indexes for collection examples.provinceCataLogModel_test from metadata
2022-06-14T06:28:58.460+0000 finished restoring examples.provinceCataLogModel_test (10 documents)
2022-06-14T06:28:58.460+0000 reading metadata for examples.user from archive ‘mongodump-test-db’
2022-06-14T06:28:58.506+0000 restoring examples.user from archive ‘mongodump-test-db’
2022-06-14T06:28:58.527+0000 reading metadata for examples.inventory from archive ‘mongodump-test-db’
2022-06-14T06:28:58.528+0000 no indexes to restore
2022-06-14T06:28:58.528+0000 finished restoring examples.user (9 documents)
2022-06-14T06:28:58.566+0000 restoring examples.inventory from archive ‘mongodump-test-db’
2022-06-14T06:28:58.570+0000 no indexes to restore
2022-06-14T06:28:58.570+0000 finished restoring examples.inventory (6 documents)
2022-06-14T06:28:58.578+0000 reading metadata for examples.provinceCataLogModel from archive ‘mongodump-test-db’
2022-06-14T06:28:58.587+0000 restoring examples.provinceCataLogModel from archive ‘mongodump-test-db’
2022-06-14T06:28:58.601+0000 reading metadata for examples.pullLog from archive ‘mongodump-test-db’
2022-06-14T06:28:58.663+0000 restoring examples.pullLog from archive ‘mongodump-test-db’
2022-06-14T06:28:58.664+0000 restoring indexes for collection examples.provinceCataLogModel from metadata
2022-06-14T06:28:58.674+0000 reading metadata for examples.orders from archive ‘mongodump-test-db’
2022-06-14T06:28:58.729+0000 finished restoring examples.provinceCataLogModel (10 documents)
2022-06-14T06:28:58.764+0000 restoring examples.orders from archive ‘mongodump-test-db’
2022-06-14T06:28:58.767+0000 reading metadata for examples.provinceCataLogModel_prod from archive ‘mongodump-test-db’
2022-06-14T06:28:58.767+0000 no indexes to restore
2022-06-14T06:28:58.767+0000 finished restoring examples.pullLog (2 documents)
2022-06-14T06:28:58.794+0000 restoring examples.provinceCataLogModel_prod from archive ‘mongodump-test-db’
2022-06-14T06:28:58.794+0000 no indexes to restore
2022-06-14T06:28:58.795+0000 finished restoring examples.orders (2 documents)
2022-06-14T06:28:59.010+0000 restoring indexes for collection examples.provinceCataLogModel_prod from metadata
2022-06-14T06:28:59.524+0000 finished restoring examples.provinceCataLogModel_prod (2253 documents)
2022-06-14T06:28:59.524+0000 done
db.collection1.find().forEach(function(x){
db.collection2.insert(x);
});
只能将集合克隆到同一服务器。
速度相对比较慢
不复制集合属性和索引
使用copyTo命令
db.collection1.copyTo("collection2");
只能将集合克隆到同一服务器。
速度相对比较慢
不复制集合属性和索引
只能针对 MongoDB 4.0 或更早版本运行
使用aggregate命令
db.collection1.aggregate([{ $match: {} }, { $out: "collection2" }])
只能将集合克隆到同一服务器。
速度相对比较快
不复制集合属性和索引
mongodump和mongorestore
mongodump --host <host> --port <port> --db test --collection collection1 --out "\opt\out"
mongorestore --host <主机> --port <端口> --db test --collection collection2 "\opt\out\test\collection1.bson"
速度相对比较快
不复制集合属性和索引
可以将集合克隆到另一个数据库和服务器
mongoexport 和mongoimport
mongoexport /host:<host> /port:<port> /db:test /collection:collection1 /out:collection1.json
mongoimport /host:<host> /port:<port> /db:test /collection:collection2 /file:collection1.json
是否有带有索引的.collect?我想做这样的事情: def myList = [ [position: 0, name: 'Bob'], [position: 0, name: 'J
我创建了一个 Collection 类,它扩展了 ArrayList 以添加一些有用的方法。它看起来像这样: public class Collection extends ArrayList {
我知道如果我有元素,我想得到 List/Set/Map 我可以调用这个元素: Collections.singleton()/Collections.singletonList()/Collectio
我刚刚在我的 pom 文件中看到 Apache commons-collections 有两个不同的组 ID: commons-collections commons-collect
我们可以对所有 Collections 类型的对象(如 Set 和 List)使用 Collections.synchronizedCollection(Collection c),这就是为什么我们有
我有List>我想让它把上一个集合中的所有人复制到List收藏。 我是这样做的: var People = new List>{ new List{...},... };
我想做的是使用良好的旧循环非常简单。 假设我有一个包含 B 列表的对象 A。 public class A { public List myListOfB; } 在其他一些方法中,我有一个 As
在 Capgemini 的采访中,我被问到一个我无法回答的问题。所有集合类和接口(interface)共有的那些方法是什么? 最佳答案 所有 java 对象类(包括所有集合)都派生自名为 Object
我有一系列存储估计信息的数据库表。当设置某些边界时,我试图从所有数据库表中返回所有数据。 收藏 $estimateItems = new Collection(); $esti
为什么 Haskell 实现如此专注于链表? 例如,我知道 Data.Sequence 效率更高 大多数列表操作(cons 操作除外),并且被大量使用; 但是,从语法上讲,它“几乎不受支持”。 Has
我试图简单地将我在 PHP 中请求的内容返回到 JSON。我的问题是每个库存尚未完成。事实上,它是“渲染”,但“this.collection.models”尚未完成,因为请求尚未完成。 我应该如何解
本质上,作为Powershell脚本的一部分,我需要实现广度优先搜索。因此,我需要队列,并且认为System.Collections.Queue与其他任何队列一样好。但是,当我从队列中取出一个对象时,
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是 on-topic用于堆栈溢出。 已关闭10 年前。 Improve t
嗨,我不明白为什么这不起作用? Notifications.update({'userId':Meteor.userId(), 'notifyUserId':notifyFriendId}, {$se
假设我有一个闭包: def increment = {value, step -> value + step } 现在我想遍历我的整数集合的每个项目,用 5 递增,并将新元素保存到一个新集合中:
使用逐页 View 时,我的 plone 集合文件夹未显示所有项目。基本上我有 9 页包含元素,但第 6 - 8 页显示的内容完全相同。因此,并非所有项目都会显示,即使项目总数对应于应该在集合中的元素
private Map> map ,其中 ProgramCourse 是我的项目中的域类,上面的 map 是我运行项目时域类 Program 的字段以下异常即将到来。 Use of @OneToMan
三者的主要区别是什么?现在,我想分别使用字符串/字符串创建一个键/值对。这三个似乎都有我可以使用的选项。 编辑:我只想创建一个简单的哈希表 - 没什么特别复杂的。 最佳答案 通用集合几乎完全取代了基础
我正在为 NodeJs 使用 mongodb 驱动程序,其中有 3 个方法: 1) db.collection.insert 2) 数据库.collection.insertOne 3) db.col
我有一个集合,我正在尝试使用 Distinct 方法删除重复项。 public static Collection imagePlaylist imagePlaylist = imagePlaylis
我是一名优秀的程序员,十分优秀!