当前位置:   article > 正文

MySQL数据转移到mongo_bytebase mysql转mongo

bytebase mysql转mongo

1、BSON文档大小,最大限制为16MB,这种限制是为了确保单个文档不会使用过多的RAM,或者在迁移期间不会占用过多的带宽。为了保存大于该限制的文档,mongodb提供了GridFS

当插入的文档大于16MB时将得到如下的错误信息(java客户端):com.mongodb.MongoInternalException: DBObject of size 30836631 is over Max BSON size 16777216

2、文档的最大嵌套数为 100

MainMongoDao documentMongoDao = new MainMongoDao(DocumentContent.class);
Integer _id = Integer.valueOf(documentMongoDao.getNextId());

while(documentMongoDao.findById(_id) != null){
_id = Integer.valueOf(documentMongoDao.getNextId());
}
documentContent.setId(_id);
documentMongoDao.saveOrUpdate(documentContent);
新增必须设置id,为了防止后续新增数据覆盖mongo数据,所以还需确保mongo中不存在新增设置的id

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/675537
推荐阅读
相关标签
  

闽ICP备14008679号