数据采集
-
centos 7.4 + redis 4.0.9 cluster + make详解大数据
os: centos7.4 redis:4.0.9 ruby:2.3.4 ip 规划 redis1 192.168.56.101 redis2 192.168.56.102 用两台…
-
redis 4.0.9 cluster + failover详解大数据
os: centos7.4 redis:4.0.9 ruby:2.3.4 ip 规划 redis1 192.168.56.101 redis2 192.168.56.102 用两台…
-
redis 4.0.9 cluster + startup stop详解大数据
os: centos7.4 redis:4.0.9 ruby:2.3.4 ip 规划 redis1 192.168.56.101 redis2 192.168.56.102 用两台…
-
mongodb 本地快速复制collection详解大数据
mongodb 的版本是 3.2.6,storage engine 为 wiredTiger 现在数据库内要完全复制一个collection,可以采用以下方式 原始表:t_tabl…
-
mongodb 运行时禁用 Transparent Huge Pages详解大数据
Transparent Huge Pages 简称 THP,本来是linux为提高系统性能而做的努力,结果反而成了性能的隐患。mongodb的官方文档明确说明要禁止 linux 的…
-
debian 8.2 + apt-get + mongodb 3.2详解大数据
安装debian 8.2 os 透明大页设置 IT虾米网 检查 #cat /sys/kernel/mm/transparent_hugepage/enabled #cat /sys…
-
sort operation used more than the maximum 33554432 bytes of RAM. Add an index,or specify a smaller详解大数据
生产环境mongodb 报错, sort operation used more than the maximum 33554432 bytes of RAM. Add an in…
-
mongodb kill -9 之后无法正常启动详解大数据
今天在本地虚拟机测试了mongodb 的 kill -9 处理方式。 总结了一下。 mongodb 3.2.6 # ps -ef|grep -i mongod # kill -9 …
-
mongodb 用户的一些操作详解大数据
mongodb 版本 > version(); 3.2.6 查看用户 > db.system.users.find(); > db.getUsers(); 删除用…
-
mongodb 使用 profile + mtools 来分析慢查询详解大数据
os:centos 7.4 mongdbo:3.2 mtools:1.4.1 mongodb 是一款优秀的nosql数据库,高灵活性和高性能。所以有必要监控mongodb的慢查询,…