posted @ 2022-02-24 18:17 高&玉 阅读(2810) 评论(0) 推荐(0) 编辑
摘要:
python3连接MongoDB认证失败:pymongo.errors.OperationFailure: Authentication failed., full error: 阅读全文
摘要:
实验测试阶段,删除Arbiter节点报如下错误: "errmsg" : "Reconfig attempted to install a config that would change the implicit default write concern. Use the setDefaultRW 阅读全文
posted @ 2022-02-22 10:44 高&玉 阅读(836) 评论(0) 推荐(0) 编辑
摘要:
1 介绍 MongoDB Replica Set中文名为副本集,通俗地讲是集群当中包含了多份数据,保证主节点挂掉了,备节点能继续提供数据服务,提供的前提就是数据需要和主节点一致。 Mongodb(M)表示主节点,Mongodb(S)表示备节点,Mongodb(A)表示仲裁节点(Arbiter)。主备 阅读全文
posted @ 2022-02-09 21:46 高&玉 阅读(333) 评论(0) 推荐(0) 编辑
摘要:
DB2通过export导出数据,MongoDB通过mongoimport导入数据,达到从DB2迁移到MongoDB的目的。 阅读全文
posted @ 2022-01-31 15:13 高&玉 阅读(128) 评论(0) 推荐(0) 编辑
摘要:
DB2服务器CPU使用率高,可以通过以下方式去分析。DB2 V9.5版本以前是多进程,想看哪个进程占用CPU和内存高分别使用ps aux --sort=-%cpu和ps aux --sort=-rss,V9.5版本以后是单进程多线程。 查看db2sysc进程的PID [db2inst1]# ps - 阅读全文
posted @ 2022-01-22 16:15 高&玉 阅读(599) 评论(0) 推荐(0) 编辑
摘要:
通过MySQL导出CSV格式,然后再通过CSV格式导入到MongoDB数据库,以达到离线迁移的目的。 阅读全文
posted @ 2022-01-13 15:23 高&玉 阅读(1865) 评论(0) 推荐(0) 编辑