├── .env ├── .gitignore ├── docker-compose.yml ├── node-6379 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ └── redis-6379.rdb └── redis.conf ├── node-6380 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ └── redis-6379.rdb └── redis.conf ├── node-6381 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ └── redis-6379.rdb └── redis.conf ├── node-6382 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ └── redis-6379.rdb └── redis.conf ├── node-6383 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ └── redis-6379.rdb └── redis.conf ├── node-6384 ├── data │ ├── nodes-6379.conf │ ├── redis-6379.aof │ ├── redis-6379.log │ ├── redis-6379.rdb │ └── sentinel.log └── redis.conf └── sentinel-9001 ├── data └── sentinel.log └── sentinel.conf /.env: -------------------------------------------------------------------------------- 1 | # 节点1端口配置 2 | redis1_port=6379 3 | redis1_ports=6379:6379 4 | redis1_cluster=16379:16379 5 | 6 | # 节点2端口配置 7 | redis2_port=6380 8 | redis2_ports=6380:6379 9 | redis2_cluster=16380:16379 10 | 11 | # 节点3端口配置 12 | redis3_port=6381 13 | redis3_ports=6381:6379 14 | redis3_cluster=16381:16379 15 | 16 | # 节点4端口配置 17 | redis4_port=6382 18 | redis4_ports=6382:6379 19 | redis4_cluster=16382:16379 20 | 21 | # 节点5端口配置 22 | redis5_port=6383 23 | redis5_ports=6383:6379 24 | redis5_cluster=16383:16379 25 | 26 | # 节点6端口配置 27 | redis6_port=6384 28 | redis6_ports=6384:6379 29 | redis6_cluster=16384:16379 30 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | ### JetBrains template 3 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 4 | # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 5 | 6 | # User-specific stuff 7 | .idea/**/workspace.xml 8 | .idea/**/tasks.xml 9 | .idea/**/dictionaries 10 | .idea/**/shelf 11 | 12 | # Sensitive or high-churn files 13 | .idea/**/dataSources/ 14 | .idea/**/dataSources.ids 15 | .idea/**/dataSources.local.xml 16 | .idea/**/sqlDataSources.xml 17 | .idea/**/dynamic.xml 18 | .idea/**/uiDesigner.xml 19 | .idea/**/dbnavigator.xml 20 | 21 | # Gradle 22 | .idea/**/gradle.xml 23 | .idea/**/libraries 24 | 25 | # CMake 26 | cmake-build-debug/ 27 | cmake-build-release/ 28 | 29 | # Mongo Explorer plugin 30 | .idea/**/mongoSettings.xml 31 | 32 | # File-based project format 33 | *.iws 34 | 35 | # IntelliJ 36 | out/ 37 | 38 | # mpeltonen/sbt-idea plugin 39 | .idea_modules/ 40 | 41 | # JIRA plugin 42 | atlassian-ide-plugin.xml 43 | 44 | # Cursive Clojure plugin 45 | .idea/replstate.xml 46 | 47 | # Crashlytics plugin (for Android Studio and IntelliJ) 48 | com_crashlytics_export_strings.xml 49 | crashlytics.properties 50 | crashlytics-build.properties 51 | fabric.properties 52 | 53 | # Editor-based Rest Client 54 | .idea/httpRequests 55 | 56 | .idea -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- 1 | 2 | # redis-cli -a redis --cluster create 172.16.238.11:6379 172.16.238.12:6379 172.16.238.13:6379 172.16.238.14:6379 172.16.238.15:6379 172.16.238.16:6379 --cluster-replicas 1 3 | version: '3.3' 4 | services: 5 | # 节点1 6 | redis1: 7 | # 启动之后的容器名称 8 | container_name: redis-node-1 9 | env_file: 10 | # 环境配置 11 | - ./.env 12 | # 使用哪种镜像 13 | image: 'redis:5.0.4' 14 | # 端口映射 15 | ports: 16 | - ${redis1_ports} 17 | - ${redis1_cluster} 18 | networks: 19 | cluster-net: 20 | ipv4_address: 172.16.238.11 21 | volumes: 22 | # 容器的data映射到宿主机 23 | - /Users/g5niusx/Soft/docker/redis/node-${redis1_port}/data:/data 24 | # 加载配置文件 25 | - /Users/g5niusx/Soft/docker/redis/node-${redis1_port}/redis.conf:/usr/local/etc/redis/redis.conf 26 | # 启动redis的时候指定配置文件 27 | command: redis-server /usr/local/etc/redis/redis.conf 28 | environment: 29 | # 设置时区为上海,否则时间会有问题 30 | - TZ=Asia/Shanghai 31 | # 节点2 32 | redis2: 33 | container_name: redis-node-2 34 | env_file: 35 | - ./.env 36 | # 使用哪种镜像 37 | image: 'redis:5.0.4' 38 | # 端口映射 39 | ports: 40 | - ${redis2_ports} 41 | - ${redis2_cluster} 42 | networks: 43 | cluster-net: 44 | ipv4_address: 172.16.238.12 45 | volumes: 46 | # 容器的data映射到宿主机 47 | - /Users/g5niusx/Soft/docker/redis/node-${redis2_port}/data:/data 48 | # 加载配置文件 49 | - /Users/g5niusx/Soft/docker/redis/node-${redis2_port}/redis.conf:/usr/local/etc/redis/redis.conf 50 | # 启动redis的时候指定配置文件 51 | command: redis-server /usr/local/etc/redis/redis.conf 52 | environment: 53 | # 设置时区为上海,否则时间会有问题 54 | - TZ=Asia/Shanghai 55 | # 节点3 56 | redis3: 57 | container_name: redis-node-3 58 | env_file: 59 | - ./.env 60 | # 使用哪种镜像 61 | image: 'redis:5.0.4' 62 | # 端口映射 63 | ports: 64 | - ${redis3_ports} 65 | - ${redis3_cluster} 66 | networks: 67 | cluster-net: 68 | ipv4_address: 172.16.238.13 69 | volumes: 70 | # 容器的data映射到宿主机 71 | - /Users/g5niusx/Soft/docker/redis/node-${redis3_port}/data:/data 72 | # 加载配置文件 73 | - /Users/g5niusx/Soft/docker/redis/node-${redis3_port}/redis.conf:/usr/local/etc/redis/redis.conf 74 | # 启动redis的时候指定配置文件 75 | command: redis-server /usr/local/etc/redis/redis.conf 76 | environment: 77 | # 设置时区为上海,否则时间会有问题 78 | - TZ=Asia/Shanghai 79 | # 节点4 80 | redis4: 81 | container_name: redis-node-4 82 | env_file: 83 | - ./.env 84 | # 使用哪种镜像 85 | image: 'redis:5.0.4' 86 | # 端口映射 87 | ports: 88 | - ${redis4_ports} 89 | - ${redis4_cluster} 90 | networks: 91 | cluster-net: 92 | ipv4_address: 172.16.238.14 93 | volumes: 94 | # 容器的data映射到宿主机 95 | - /Users/g5niusx/Soft/docker/redis/node-${redis4_port}/data:/data 96 | # 加载配置文件 97 | - /Users/g5niusx/Soft/docker/redis/node-${redis4_port}/redis.conf:/usr/local/etc/redis/redis.conf 98 | # 启动redis的时候指定配置文件 99 | command: redis-server /usr/local/etc/redis/redis.conf 100 | environment: 101 | # 设置时区为上海,否则时间会有问题 102 | - TZ=Asia/Shanghai 103 | # 节点5 104 | redis5: 105 | container_name: redis-node-5 106 | env_file: 107 | - ./.env 108 | # 使用哪种镜像 109 | image: 'redis:5.0.4' 110 | # 端口映射 111 | ports: 112 | - ${redis5_ports} 113 | - ${redis5_cluster} 114 | networks: 115 | cluster-net: 116 | ipv4_address: 172.16.238.15 117 | volumes: 118 | # 容器的data映射到宿主机 119 | - /Users/g5niusx/Soft/docker/redis/node-${redis5_port}/data:/data 120 | # 加载配置文件 121 | - /Users/g5niusx/Soft/docker/redis/node-${redis5_port}/redis.conf:/usr/local/etc/redis/redis.conf 122 | # 启动redis的时候指定配置文件 123 | command: redis-server /usr/local/etc/redis/redis.conf 124 | environment: 125 | # 设置时区为上海,否则时间会有问题 126 | - TZ=Asia/Shanghai 127 | # 节点6 128 | redis6: 129 | container_name: redis-node-6 130 | env_file: 131 | - ./.env 132 | # 使用哪种镜像 133 | image: 'redis:5.0.4' 134 | # 端口映射 135 | ports: 136 | - ${redis6_ports} 137 | - ${redis6_cluster} 138 | networks: 139 | cluster-net: 140 | ipv4_address: 172.16.238.16 141 | volumes: 142 | # 容器的data映射到宿主机 143 | - /Users/g5niusx/Soft/docker/redis/node-${redis6_port}/data:/data 144 | # 加载配置文件 145 | - /Users/g5niusx/Soft/docker/redis/node-${redis6_port}/redis.conf:/usr/local/etc/redis/redis.conf 146 | # 启动redis的时候指定配置文件 147 | command: redis-server /usr/local/etc/redis/redis.conf 148 | environment: 149 | # 设置时区为上海,否则时间会有问题 150 | - TZ=Asia/Shanghai 151 | sentinel-9001: 152 | container_name: sentinel-9001 153 | image: 'redis:5.0.4' 154 | ports: 155 | - 26379:26379 156 | networks: 157 | cluster-net: 158 | ipv4_address: 172.16.238.240 159 | volumes: 160 | - /Users/g5niusx/Soft/docker/redis/sentinel-9001/data:/data 161 | - /Users/g5niusx/Soft/docker/redis/sentinel-9001/sentinel.conf:/usr/local/etc/redis/sentinel.conf 162 | command: redis-server /usr/local/etc/redis/sentinel.conf --sentinel 163 | networks: 164 | # 创建集群网络,在容器之间通信 165 | cluster-net: 166 | ipam: 167 | config: 168 | - subnet: 172.16.238.0/24 -------------------------------------------------------------------------------- /node-6379/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092452000 5 connected 2 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 master - 0 1555092451000 3 connected 10923-16383 3 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 myself,master - 0 1555092449000 1 connected 0-5460 4 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 master - 0 1555092452865 2 connected 5461-10922 5 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092452000 4 connected 6 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092450000 6 connected 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6379/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6379/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6379/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 02:06:58.397 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 02:06:58.399 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 02:06:58.401 # Configuration loaded 4 | 1:M 13 Apr 2019 02:06:58.407 * No cluster configuration found, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 02:06:58.413 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 02:06:58.415 # Server initialized 25 | 1:M 13 Apr 2019 02:06:58.417 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 02:06:58.420 * Ready to accept connections 27 | 1:M 13 Apr 2019 02:07:21.918 # configEpoch set to 1 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 02:07:21.999 # IP address for this node updated to 172.16.238.11 29 | 1:M 13 Apr 2019 02:07:26.936 # Cluster state changed: ok 30 | 1:M 13 Apr 2019 02:07:28.710 * Replica 172.16.238.15:6379 asks for synchronization 31 | 1:M 13 Apr 2019 02:07:28.712 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'f1f091700f32389f9cec71cffe5167e90f7fcc4e', my replication IDs are 'c00fc613f999b754e5ad433d4ae467d4ef0fe0b4' and '0000000000000000000000000000000000000000') 32 | 1:M 13 Apr 2019 02:07:28.714 * Starting BGSAVE for SYNC with target: disk 33 | 1:M 13 Apr 2019 02:07:28.715 * Background saving started by pid 18 34 | 18:C 13 Apr 2019 02:07:28.718 * DB saved on disk 35 | 18:C 13 Apr 2019 02:07:28.720 * RDB: 0 MB of memory used by copy-on-write 36 | 1:M 13 Apr 2019 02:07:28.772 * Background saving terminated with success 37 | 1:M 13 Apr 2019 02:07:28.777 * Synchronization with replica 172.16.238.15:6379 succeeded 38 | 1:C 15 Apr 2019 21:11:11.939 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 39 | 1:C 15 Apr 2019 21:11:11.942 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 40 | 1:C 15 Apr 2019 21:11:11.943 # Configuration loaded 41 | 1:M 15 Apr 2019 21:11:11.951 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 42 | _._ 43 | _.-``__ ''-._ 44 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 45 | .-`` .-```. ```\/ _.,_ ''-._ 46 | ( ' , .-` | `, ) Running in cluster mode 47 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 48 | | `-._ `._ / _.-' | PID: 1 49 | `-._ `-._ `-./ _.-' _.-' 50 | |`-._`-._ `-.__.-' _.-'_.-'| 51 | | `-._`-._ _.-'_.-' | http://redis.io 52 | `-._ `-._`-.__.-'_.-' _.-' 53 | |`-._`-._ `-.__.-' _.-'_.-'| 54 | | `-._`-._ _.-'_.-' | 55 | `-._ `-._`-.__.-'_.-' _.-' 56 | `-._ `-.__.-' _.-' 57 | `-._ _.-' 58 | `-.__.-' 59 | 60 | 1:M 15 Apr 2019 21:11:11.956 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 61 | 1:M 15 Apr 2019 21:11:11.959 # Server initialized 62 | 1:M 15 Apr 2019 21:11:11.961 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 63 | 1:M 15 Apr 2019 21:11:11.964 * Ready to accept connections 64 | 1:M 15 Apr 2019 21:11:11.975 * Replica 172.16.238.15:6379 asks for synchronization 65 | 1:M 15 Apr 2019 21:11:11.977 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '4a57245139be0eb4c904b37eb9e6e34d9c9d01a1', my replication IDs are 'b99797cbc14e32051234db7bc1b3d3409f7a5908' and '0000000000000000000000000000000000000000') 66 | 1:M 15 Apr 2019 21:11:11.979 * Starting BGSAVE for SYNC with target: disk 67 | 1:M 15 Apr 2019 21:11:11.982 * Background saving started by pid 18 68 | 18:C 15 Apr 2019 21:11:11.985 * DB saved on disk 69 | 18:C 15 Apr 2019 21:11:11.988 * RDB: 0 MB of memory used by copy-on-write 70 | 1:M 15 Apr 2019 21:11:12.068 * Background saving terminated with success 71 | 1:M 15 Apr 2019 21:11:12.074 * Synchronization with replica 172.16.238.15:6379 succeeded 72 | 1:M 15 Apr 2019 21:11:13.999 # Cluster state changed: ok 73 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 74 | 1:M 15 Apr 2019 21:14:43.730 # User requested shutdown... 75 | 1:M 15 Apr 2019 21:14:43.737 * Calling fsync() on the AOF file. 76 | 1:M 15 Apr 2019 21:14:43.744 * Saving the final RDB snapshot before exiting. 77 | 1:M 15 Apr 2019 21:14:43.756 * DB saved on disk 78 | 1:M 15 Apr 2019 21:14:43.762 * Removing the pid file. 79 | 1:M 15 Apr 2019 21:14:43.767 # Redis is now ready to exit, bye bye... 80 | 1:C 15 Apr 2019 21:15:09.173 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 81 | 1:C 15 Apr 2019 21:15:09.181 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 82 | 1:C 15 Apr 2019 21:15:09.189 # Configuration loaded 83 | 1:M 15 Apr 2019 21:15:09.203 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 84 | _._ 85 | _.-``__ ''-._ 86 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 87 | .-`` .-```. ```\/ _.,_ ''-._ 88 | ( ' , .-` | `, ) Running in cluster mode 89 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 90 | | `-._ `._ / _.-' | PID: 1 91 | `-._ `-._ `-./ _.-' _.-' 92 | |`-._`-._ `-.__.-' _.-'_.-'| 93 | | `-._`-._ _.-'_.-' | http://redis.io 94 | `-._ `-._`-.__.-'_.-' _.-' 95 | |`-._`-._ `-.__.-' _.-'_.-'| 96 | | `-._`-._ _.-'_.-' | 97 | `-._ `-._`-.__.-'_.-' _.-' 98 | `-._ `-.__.-' _.-' 99 | `-._ _.-' 100 | `-.__.-' 101 | 102 | 1:M 15 Apr 2019 21:15:09.216 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 103 | 1:M 15 Apr 2019 21:15:09.220 # Server initialized 104 | 1:M 15 Apr 2019 21:15:09.225 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 105 | 1:M 15 Apr 2019 21:15:09.233 * Ready to accept connections 106 | 1:M 15 Apr 2019 21:15:09.320 * Replica 172.16.238.15:6379 asks for synchronization 107 | 1:M 15 Apr 2019 21:15:09.323 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '92a4798dfaa6b2240f34eb52dc04338bf80853b3', my replication IDs are 'cac1dec05ad67579642d3a4e5475c9a161cce51e' and '0000000000000000000000000000000000000000') 108 | 1:M 15 Apr 2019 21:15:09.326 * Starting BGSAVE for SYNC with target: disk 109 | 1:M 15 Apr 2019 21:15:09.329 * Background saving started by pid 17 110 | 17:C 15 Apr 2019 21:15:09.336 * DB saved on disk 111 | 17:C 15 Apr 2019 21:15:09.340 * RDB: 0 MB of memory used by copy-on-write 112 | 1:M 15 Apr 2019 21:15:09.441 * Background saving terminated with success 113 | 1:M 15 Apr 2019 21:15:09.448 * Synchronization with replica 172.16.238.15:6379 succeeded 114 | 1:M 15 Apr 2019 21:15:11.272 # Cluster state changed: ok 115 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 116 | 1:M 15 Apr 2019 21:19:05.612 # User requested shutdown... 117 | 1:M 15 Apr 2019 21:19:05.619 * Calling fsync() on the AOF file. 118 | 1:M 15 Apr 2019 21:19:05.624 * Saving the final RDB snapshot before exiting. 119 | 1:M 15 Apr 2019 21:19:05.639 * DB saved on disk 120 | 1:M 15 Apr 2019 21:19:05.643 * Removing the pid file. 121 | 1:M 15 Apr 2019 21:19:05.649 # Redis is now ready to exit, bye bye... 122 | 1:C 15 Apr 2019 21:19:16.852 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 123 | 1:C 15 Apr 2019 21:19:16.864 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 124 | 1:C 15 Apr 2019 21:19:16.873 # Configuration loaded 125 | 1:M 15 Apr 2019 21:19:16.893 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 126 | _._ 127 | _.-``__ ''-._ 128 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 129 | .-`` .-```. ```\/ _.,_ ''-._ 130 | ( ' , .-` | `, ) Running in cluster mode 131 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 132 | | `-._ `._ / _.-' | PID: 1 133 | `-._ `-._ `-./ _.-' _.-' 134 | |`-._`-._ `-.__.-' _.-'_.-'| 135 | | `-._`-._ _.-'_.-' | http://redis.io 136 | `-._ `-._`-.__.-'_.-' _.-' 137 | |`-._`-._ `-.__.-' _.-'_.-'| 138 | | `-._`-._ _.-'_.-' | 139 | `-._ `-._`-.__.-'_.-' _.-' 140 | `-._ `-.__.-' _.-' 141 | `-._ _.-' 142 | `-.__.-' 143 | 144 | 1:M 15 Apr 2019 21:19:16.904 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 145 | 1:M 15 Apr 2019 21:19:16.910 # Server initialized 146 | 1:M 15 Apr 2019 21:19:16.917 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 147 | 1:M 15 Apr 2019 21:19:16.931 * Ready to accept connections 148 | 1:M 15 Apr 2019 21:19:18.034 * Replica 172.16.238.15:6379 asks for synchronization 149 | 1:M 15 Apr 2019 21:19:18.038 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '897cc3e3939c88d873eb30b1e27ec48cd6e40aec', my replication IDs are 'fef035760f8a84d74f4c80f21bedbac078d7a05e' and '0000000000000000000000000000000000000000') 150 | 1:M 15 Apr 2019 21:19:18.041 * Starting BGSAVE for SYNC with target: disk 151 | 1:M 15 Apr 2019 21:19:18.044 * Background saving started by pid 17 152 | 17:C 15 Apr 2019 21:19:18.050 * DB saved on disk 153 | 17:C 15 Apr 2019 21:19:18.052 * RDB: 0 MB of memory used by copy-on-write 154 | 1:M 15 Apr 2019 21:19:18.157 * Background saving terminated with success 155 | 1:M 15 Apr 2019 21:19:18.163 * Synchronization with replica 172.16.238.15:6379 succeeded 156 | 1:M 15 Apr 2019 21:19:18.972 # Cluster state changed: ok 157 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 158 | 1:M 15 Apr 2019 21:21:49.708 # User requested shutdown... 159 | 1:M 15 Apr 2019 21:21:49.713 * Calling fsync() on the AOF file. 160 | 1:M 15 Apr 2019 21:21:49.716 * Saving the final RDB snapshot before exiting. 161 | 1:M 15 Apr 2019 21:21:49.723 * DB saved on disk 162 | 1:M 15 Apr 2019 21:21:49.726 * Removing the pid file. 163 | 1:M 15 Apr 2019 21:21:49.729 # Redis is now ready to exit, bye bye... 164 | 1:C 15 Apr 2019 21:22:00.146 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 165 | 1:C 15 Apr 2019 21:22:00.150 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 166 | 1:C 15 Apr 2019 21:22:00.152 # Configuration loaded 167 | 1:M 15 Apr 2019 21:22:00.164 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 168 | _._ 169 | _.-``__ ''-._ 170 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 171 | .-`` .-```. ```\/ _.,_ ''-._ 172 | ( ' , .-` | `, ) Running in cluster mode 173 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 174 | | `-._ `._ / _.-' | PID: 1 175 | `-._ `-._ `-./ _.-' _.-' 176 | |`-._`-._ `-.__.-' _.-'_.-'| 177 | | `-._`-._ _.-'_.-' | http://redis.io 178 | `-._ `-._`-.__.-'_.-' _.-' 179 | |`-._`-._ `-.__.-' _.-'_.-'| 180 | | `-._`-._ _.-'_.-' | 181 | `-._ `-._`-.__.-'_.-' _.-' 182 | `-._ `-.__.-' _.-' 183 | `-._ _.-' 184 | `-.__.-' 185 | 186 | 1:M 15 Apr 2019 21:22:00.170 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 187 | 1:M 15 Apr 2019 21:22:00.173 # Server initialized 188 | 1:M 15 Apr 2019 21:22:00.176 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 189 | 1:M 15 Apr 2019 21:22:00.182 * Ready to accept connections 190 | 1:M 15 Apr 2019 21:22:00.746 * Replica 172.16.238.15:6379 asks for synchronization 191 | 1:M 15 Apr 2019 21:22:00.747 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '0d69586b2f337f46fe577d643cd876ca72b14dba', my replication IDs are '3adb34b9a16db5949475b612bc78114acaf37c54' and '0000000000000000000000000000000000000000') 192 | 1:M 15 Apr 2019 21:22:00.749 * Starting BGSAVE for SYNC with target: disk 193 | 1:M 15 Apr 2019 21:22:00.751 * Background saving started by pid 18 194 | 18:C 15 Apr 2019 21:22:00.755 * DB saved on disk 195 | 18:C 15 Apr 2019 21:22:00.757 * RDB: 0 MB of memory used by copy-on-write 196 | 1:M 15 Apr 2019 21:22:00.797 * Background saving terminated with success 197 | 1:M 15 Apr 2019 21:22:00.803 * Synchronization with replica 172.16.238.15:6379 succeeded 198 | 1:M 15 Apr 2019 21:22:02.227 # Cluster state changed: ok 199 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 200 | 1:M 15 Apr 2019 21:28:39.470 # User requested shutdown... 201 | 1:M 15 Apr 2019 21:28:39.473 * Calling fsync() on the AOF file. 202 | 1:M 15 Apr 2019 21:28:39.477 * Saving the final RDB snapshot before exiting. 203 | 1:M 15 Apr 2019 21:28:39.492 * DB saved on disk 204 | 1:M 15 Apr 2019 21:28:39.496 * Removing the pid file. 205 | 1:M 15 Apr 2019 21:28:39.500 # Redis is now ready to exit, bye bye... 206 | 1:C 15 Apr 2019 21:29:09.217 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 207 | 1:C 15 Apr 2019 21:29:09.220 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 208 | 1:C 15 Apr 2019 21:29:09.228 # Configuration loaded 209 | 1:M 15 Apr 2019 21:29:09.238 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 210 | _._ 211 | _.-``__ ''-._ 212 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 213 | .-`` .-```. ```\/ _.,_ ''-._ 214 | ( ' , .-` | `, ) Running in cluster mode 215 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 216 | | `-._ `._ / _.-' | PID: 1 217 | `-._ `-._ `-./ _.-' _.-' 218 | |`-._`-._ `-.__.-' _.-'_.-'| 219 | | `-._`-._ _.-'_.-' | http://redis.io 220 | `-._ `-._`-.__.-'_.-' _.-' 221 | |`-._`-._ `-.__.-' _.-'_.-'| 222 | | `-._`-._ _.-'_.-' | 223 | `-._ `-._`-.__.-'_.-' _.-' 224 | `-._ `-.__.-' _.-' 225 | `-._ _.-' 226 | `-.__.-' 227 | 228 | 1:M 15 Apr 2019 21:29:09.244 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 229 | 1:M 15 Apr 2019 21:29:09.247 # Server initialized 230 | 1:M 15 Apr 2019 21:29:09.249 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 231 | 1:M 15 Apr 2019 21:29:09.253 * Ready to accept connections 232 | 1:M 15 Apr 2019 21:29:09.516 * Replica 172.16.238.15:6379 asks for synchronization 233 | 1:M 15 Apr 2019 21:29:09.523 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'cb1081a46f150006ce5ebcb71f74ae7b5260536f', my replication IDs are '27ad2e133ed5bb9a7361b6d57b4b82adf3f8f3e3' and '0000000000000000000000000000000000000000') 234 | 1:M 15 Apr 2019 21:29:09.531 * Starting BGSAVE for SYNC with target: disk 235 | 1:M 15 Apr 2019 21:29:09.542 * Background saving started by pid 18 236 | 18:C 15 Apr 2019 21:29:09.551 * DB saved on disk 237 | 18:C 15 Apr 2019 21:29:09.558 * RDB: 0 MB of memory used by copy-on-write 238 | 1:M 15 Apr 2019 21:29:09.664 * Background saving terminated with success 239 | 1:M 15 Apr 2019 21:29:09.671 * Synchronization with replica 172.16.238.15:6379 succeeded 240 | 1:M 15 Apr 2019 21:29:11.293 # Cluster state changed: ok 241 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 242 | 1:M 15 Apr 2019 21:29:54.078 # User requested shutdown... 243 | 1:M 15 Apr 2019 21:29:54.083 * Calling fsync() on the AOF file. 244 | 1:M 15 Apr 2019 21:29:54.087 * Saving the final RDB snapshot before exiting. 245 | 1:M 15 Apr 2019 21:29:54.098 * DB saved on disk 246 | 1:M 15 Apr 2019 21:29:54.101 * Removing the pid file. 247 | 1:M 15 Apr 2019 21:29:54.105 # Redis is now ready to exit, bye bye... 248 | 1:C 15 Apr 2019 21:30:03.097 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 249 | 1:C 15 Apr 2019 21:30:03.100 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 250 | 1:C 15 Apr 2019 21:30:03.102 # Configuration loaded 251 | 1:M 15 Apr 2019 21:30:03.111 * Node configuration loaded, I'm e6522deb3da3f844c74ade1177f0fa921765cc54 252 | _._ 253 | _.-``__ ''-._ 254 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 255 | .-`` .-```. ```\/ _.,_ ''-._ 256 | ( ' , .-` | `, ) Running in cluster mode 257 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 258 | | `-._ `._ / _.-' | PID: 1 259 | `-._ `-._ `-./ _.-' _.-' 260 | |`-._`-._ `-.__.-' _.-'_.-'| 261 | | `-._`-._ _.-'_.-' | http://redis.io 262 | `-._ `-._`-.__.-'_.-' _.-' 263 | |`-._`-._ `-.__.-' _.-'_.-'| 264 | | `-._`-._ _.-'_.-' | 265 | `-._ `-._`-.__.-'_.-' _.-' 266 | `-._ `-.__.-' _.-' 267 | `-._ _.-' 268 | `-.__.-' 269 | 270 | 1:M 15 Apr 2019 21:30:03.117 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 271 | 1:M 15 Apr 2019 21:30:03.121 # Server initialized 272 | 1:M 15 Apr 2019 21:30:03.124 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 273 | 1:M 15 Apr 2019 21:30:03.128 * Ready to accept connections 274 | 1:M 15 Apr 2019 21:30:04.152 * Replica 172.16.238.15:6379 asks for synchronization 275 | 1:M 15 Apr 2019 21:30:04.154 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '3f40a01e85053e12ea24e71430a7fa5818a596ce', my replication IDs are '51fc6ebf121e4b2ab1a826dbefc460f6a84ab77f' and '0000000000000000000000000000000000000000') 276 | 1:M 15 Apr 2019 21:30:04.157 * Starting BGSAVE for SYNC with target: disk 277 | 1:M 15 Apr 2019 21:30:04.160 * Background saving started by pid 17 278 | 17:C 15 Apr 2019 21:30:04.165 * DB saved on disk 279 | 17:C 15 Apr 2019 21:30:04.168 * RDB: 0 MB of memory used by copy-on-write 280 | 1:M 15 Apr 2019 21:30:04.240 * Background saving terminated with success 281 | 1:M 15 Apr 2019 21:30:04.247 * Synchronization with replica 172.16.238.15:6379 succeeded 282 | 1:M 15 Apr 2019 21:30:05.153 # Cluster state changed: ok 283 | -------------------------------------------------------------------------------- /node-6379/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6379/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6380/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 master - 0 1555092450000 3 connected 10923-16383 2 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092448000 5 connected 3 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092450630 4 connected 4 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 myself,master - 0 1555092449000 2 connected 5461-10922 5 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092448599 6 connected 6 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 master - 0 1555092449612 1 connected 0-5460 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6380/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6380/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6380/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 02:06:59.266 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 02:06:59.271 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 02:06:59.274 # Configuration loaded 4 | 1:M 13 Apr 2019 02:06:59.281 * No cluster configuration found, I'm be819c89c86d958438658b6eb9fd896a986b1d03 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 02:06:59.287 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 02:06:59.289 # Server initialized 25 | 1:M 13 Apr 2019 02:06:59.290 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 02:06:59.293 * Ready to accept connections 27 | 1:M 13 Apr 2019 02:07:21.922 # configEpoch set to 2 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 02:07:22.059 # IP address for this node updated to 172.16.238.12 29 | 1:M 13 Apr 2019 02:07:26.877 # Cluster state changed: ok 30 | 1:M 13 Apr 2019 02:07:28.206 * Replica 172.16.238.16:6379 asks for synchronization 31 | 1:M 13 Apr 2019 02:07:28.208 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '9cec3768fa1609638ba91df016698dbe28dcb995', my replication IDs are '6e458982d3aeeb29db53fe3e627407e121189552' and '0000000000000000000000000000000000000000') 32 | 1:M 13 Apr 2019 02:07:28.209 * Starting BGSAVE for SYNC with target: disk 33 | 1:M 13 Apr 2019 02:07:28.211 * Background saving started by pid 18 34 | 18:C 13 Apr 2019 02:07:28.214 * DB saved on disk 35 | 18:C 13 Apr 2019 02:07:28.217 * RDB: 0 MB of memory used by copy-on-write 36 | 1:M 13 Apr 2019 02:07:28.294 * Background saving terminated with success 37 | 1:M 13 Apr 2019 02:07:28.300 * Synchronization with replica 172.16.238.16:6379 succeeded 38 | 1:C 15 Apr 2019 21:11:11.746 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 39 | 1:C 15 Apr 2019 21:11:11.748 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 40 | 1:C 15 Apr 2019 21:11:11.750 # Configuration loaded 41 | 1:M 15 Apr 2019 21:11:11.759 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 42 | _._ 43 | _.-``__ ''-._ 44 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 45 | .-`` .-```. ```\/ _.,_ ''-._ 46 | ( ' , .-` | `, ) Running in cluster mode 47 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 48 | | `-._ `._ / _.-' | PID: 1 49 | `-._ `-._ `-./ _.-' _.-' 50 | |`-._`-._ `-.__.-' _.-'_.-'| 51 | | `-._`-._ _.-'_.-' | http://redis.io 52 | `-._ `-._`-.__.-'_.-' _.-' 53 | |`-._`-._ `-.__.-' _.-'_.-'| 54 | | `-._`-._ _.-'_.-' | 55 | `-._ `-._`-.__.-'_.-' _.-' 56 | `-._ `-.__.-' _.-' 57 | `-._ _.-' 58 | `-.__.-' 59 | 60 | 1:M 15 Apr 2019 21:11:11.766 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 61 | 1:M 15 Apr 2019 21:11:11.769 # Server initialized 62 | 1:M 15 Apr 2019 21:11:11.771 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 63 | 1:M 15 Apr 2019 21:11:11.775 * Ready to accept connections 64 | 1:M 15 Apr 2019 21:11:12.072 * Replica 172.16.238.16:6379 asks for synchronization 65 | 1:M 15 Apr 2019 21:11:12.076 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'bf6068ae64e83eaeb16a0e4fbe3a821b9bc325ff', my replication IDs are '31e58a6255471344f10c4f5d76f88cd6c4e97c75' and '0000000000000000000000000000000000000000') 66 | 1:M 15 Apr 2019 21:11:12.078 * Starting BGSAVE for SYNC with target: disk 67 | 1:M 15 Apr 2019 21:11:12.082 * Background saving started by pid 17 68 | 17:C 15 Apr 2019 21:11:12.087 * DB saved on disk 69 | 17:C 15 Apr 2019 21:11:12.092 * RDB: 0 MB of memory used by copy-on-write 70 | 1:M 15 Apr 2019 21:11:12.189 * Background saving terminated with success 71 | 1:M 15 Apr 2019 21:11:12.196 * Synchronization with replica 172.16.238.16:6379 succeeded 72 | 1:M 15 Apr 2019 21:11:13.816 # Cluster state changed: ok 73 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 74 | 1:M 15 Apr 2019 21:14:43.730 # User requested shutdown... 75 | 1:M 15 Apr 2019 21:14:43.736 * Calling fsync() on the AOF file. 76 | 1:M 15 Apr 2019 21:14:43.742 * Saving the final RDB snapshot before exiting. 77 | 1:M 15 Apr 2019 21:14:43.755 * DB saved on disk 78 | 1:M 15 Apr 2019 21:14:43.762 * Removing the pid file. 79 | 1:M 15 Apr 2019 21:14:43.767 # Redis is now ready to exit, bye bye... 80 | 1:C 15 Apr 2019 21:15:09.122 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 81 | 1:C 15 Apr 2019 21:15:09.126 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 82 | 1:C 15 Apr 2019 21:15:09.128 # Configuration loaded 83 | 1:M 15 Apr 2019 21:15:09.152 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 84 | _._ 85 | _.-``__ ''-._ 86 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 87 | .-`` .-```. ```\/ _.,_ ''-._ 88 | ( ' , .-` | `, ) Running in cluster mode 89 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 90 | | `-._ `._ / _.-' | PID: 1 91 | `-._ `-._ `-./ _.-' _.-' 92 | |`-._`-._ `-.__.-' _.-'_.-'| 93 | | `-._`-._ _.-'_.-' | http://redis.io 94 | `-._ `-._`-.__.-'_.-' _.-' 95 | |`-._`-._ `-.__.-' _.-'_.-'| 96 | | `-._`-._ _.-'_.-' | 97 | `-._ `-._`-.__.-'_.-' _.-' 98 | `-._ `-.__.-' _.-' 99 | `-._ _.-' 100 | `-.__.-' 101 | 102 | 1:M 15 Apr 2019 21:15:09.172 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 103 | 1:M 15 Apr 2019 21:15:09.180 # Server initialized 104 | 1:M 15 Apr 2019 21:15:09.187 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 105 | 1:M 15 Apr 2019 21:15:09.194 * Ready to accept connections 106 | 1:M 15 Apr 2019 21:15:10.632 * Replica 172.16.238.16:6379 asks for synchronization 107 | 1:M 15 Apr 2019 21:15:10.633 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '0309cb0a39ff505e4c1764fec95997eacaebe640', my replication IDs are '700b643c9199b84ed92e9b201fa9ab3ffe31704d' and '0000000000000000000000000000000000000000') 108 | 1:M 15 Apr 2019 21:15:10.635 * Starting BGSAVE for SYNC with target: disk 109 | 1:M 15 Apr 2019 21:15:10.637 * Background saving started by pid 17 110 | 17:C 15 Apr 2019 21:15:10.642 * DB saved on disk 111 | 17:C 15 Apr 2019 21:15:10.645 * RDB: 0 MB of memory used by copy-on-write 112 | 1:M 15 Apr 2019 21:15:10.719 * Background saving terminated with success 113 | 1:M 15 Apr 2019 21:15:10.728 * Synchronization with replica 172.16.238.16:6379 succeeded 114 | 1:M 15 Apr 2019 21:15:11.234 # Cluster state changed: ok 115 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 116 | 1:M 15 Apr 2019 21:19:05.612 # User requested shutdown... 117 | 1:M 15 Apr 2019 21:19:05.620 * Calling fsync() on the AOF file. 118 | 1:M 15 Apr 2019 21:19:05.625 * Saving the final RDB snapshot before exiting. 119 | 1:M 15 Apr 2019 21:19:05.639 * DB saved on disk 120 | 1:M 15 Apr 2019 21:19:05.643 * Removing the pid file. 121 | 1:M 15 Apr 2019 21:19:05.649 # Redis is now ready to exit, bye bye... 122 | 1:C 15 Apr 2019 21:19:16.378 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 123 | 1:C 15 Apr 2019 21:19:16.380 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 124 | 1:C 15 Apr 2019 21:19:16.382 # Configuration loaded 125 | 1:M 15 Apr 2019 21:19:16.390 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 126 | _._ 127 | _.-``__ ''-._ 128 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 129 | .-`` .-```. ```\/ _.,_ ''-._ 130 | ( ' , .-` | `, ) Running in cluster mode 131 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 132 | | `-._ `._ / _.-' | PID: 1 133 | `-._ `-._ `-./ _.-' _.-' 134 | |`-._`-._ `-.__.-' _.-'_.-'| 135 | | `-._`-._ _.-'_.-' | http://redis.io 136 | `-._ `-._`-.__.-'_.-' _.-' 137 | |`-._`-._ `-.__.-' _.-'_.-'| 138 | | `-._`-._ _.-'_.-' | 139 | `-._ `-._`-.__.-'_.-' _.-' 140 | `-._ `-.__.-' _.-' 141 | `-._ _.-' 142 | `-.__.-' 143 | 144 | 1:M 15 Apr 2019 21:19:16.395 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 145 | 1:M 15 Apr 2019 21:19:16.397 # Server initialized 146 | 1:M 15 Apr 2019 21:19:16.399 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 147 | 1:M 15 Apr 2019 21:19:16.402 * Ready to accept connections 148 | 1:M 15 Apr 2019 21:19:17.292 * Replica 172.16.238.16:6379 asks for synchronization 149 | 1:M 15 Apr 2019 21:19:17.294 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'cf3ef7205d88650f5d831f79e9c844942ab73575', my replication IDs are 'bad55e07330b93673830d399cfd13aad2aa096f3' and '0000000000000000000000000000000000000000') 150 | 1:M 15 Apr 2019 21:19:17.297 * Starting BGSAVE for SYNC with target: disk 151 | 1:M 15 Apr 2019 21:19:17.300 * Background saving started by pid 17 152 | 17:C 15 Apr 2019 21:19:17.304 * DB saved on disk 153 | 17:C 15 Apr 2019 21:19:17.306 * RDB: 0 MB of memory used by copy-on-write 154 | 1:M 15 Apr 2019 21:19:17.314 * Background saving terminated with success 155 | 1:M 15 Apr 2019 21:19:17.320 * Synchronization with replica 172.16.238.16:6379 succeeded 156 | 1:M 15 Apr 2019 21:19:18.434 # Cluster state changed: ok 157 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 158 | 1:M 15 Apr 2019 21:21:49.683 # User requested shutdown... 159 | 1:M 15 Apr 2019 21:21:49.690 * Calling fsync() on the AOF file. 160 | 1:M 15 Apr 2019 21:21:49.694 * Saving the final RDB snapshot before exiting. 161 | 1:M 15 Apr 2019 21:21:49.702 * DB saved on disk 162 | 1:M 15 Apr 2019 21:21:49.704 * Removing the pid file. 163 | 1:M 15 Apr 2019 21:21:49.708 # Redis is now ready to exit, bye bye... 164 | 1:C 15 Apr 2019 21:22:00.151 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 165 | 1:C 15 Apr 2019 21:22:00.156 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 166 | 1:C 15 Apr 2019 21:22:00.159 # Configuration loaded 167 | 1:M 15 Apr 2019 21:22:00.176 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 168 | _._ 169 | _.-``__ ''-._ 170 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 171 | .-`` .-```. ```\/ _.,_ ''-._ 172 | ( ' , .-` | `, ) Running in cluster mode 173 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 174 | | `-._ `._ / _.-' | PID: 1 175 | `-._ `-._ `-./ _.-' _.-' 176 | |`-._`-._ `-.__.-' _.-'_.-'| 177 | | `-._`-._ _.-'_.-' | http://redis.io 178 | `-._ `-._`-.__.-'_.-' _.-' 179 | |`-._`-._ `-.__.-' _.-'_.-'| 180 | | `-._`-._ _.-'_.-' | 181 | `-._ `-._`-.__.-'_.-' _.-' 182 | `-._ `-.__.-' _.-' 183 | `-._ _.-' 184 | `-.__.-' 185 | 186 | 1:M 15 Apr 2019 21:22:00.187 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 187 | 1:M 15 Apr 2019 21:22:00.190 # Server initialized 188 | 1:M 15 Apr 2019 21:22:00.194 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 189 | 1:M 15 Apr 2019 21:22:00.199 * Ready to accept connections 190 | 1:M 15 Apr 2019 21:22:00.537 * Replica 172.16.238.16:6379 asks for synchronization 191 | 1:M 15 Apr 2019 21:22:00.539 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '261e2ad09397e52a625c6545d0ae4aba34fd0cc6', my replication IDs are '21ce2fd32f8c332f130eb35adf66eb3b454c5210' and '0000000000000000000000000000000000000000') 192 | 1:M 15 Apr 2019 21:22:00.542 * Starting BGSAVE for SYNC with target: disk 193 | 1:M 15 Apr 2019 21:22:00.546 * Background saving started by pid 18 194 | 18:C 15 Apr 2019 21:22:00.551 * DB saved on disk 195 | 18:C 15 Apr 2019 21:22:00.554 * RDB: 0 MB of memory used by copy-on-write 196 | 1:M 15 Apr 2019 21:22:00.613 * Background saving terminated with success 197 | 1:M 15 Apr 2019 21:22:00.620 * Synchronization with replica 172.16.238.16:6379 succeeded 198 | 1:M 15 Apr 2019 21:22:02.279 # Cluster state changed: ok 199 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 200 | 1:M 15 Apr 2019 21:28:39.566 # User requested shutdown... 201 | 1:M 15 Apr 2019 21:28:39.572 * Calling fsync() on the AOF file. 202 | 1:M 15 Apr 2019 21:28:39.578 * Saving the final RDB snapshot before exiting. 203 | 1:M 15 Apr 2019 21:28:39.589 * DB saved on disk 204 | 1:M 15 Apr 2019 21:28:39.592 * Removing the pid file. 205 | 1:M 15 Apr 2019 21:28:39.595 # Redis is now ready to exit, bye bye... 206 | 1:C 15 Apr 2019 21:29:09.318 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 207 | 1:C 15 Apr 2019 21:29:09.320 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 208 | 1:C 15 Apr 2019 21:29:09.322 # Configuration loaded 209 | 1:M 15 Apr 2019 21:29:09.330 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 210 | _._ 211 | _.-``__ ''-._ 212 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 213 | .-`` .-```. ```\/ _.,_ ''-._ 214 | ( ' , .-` | `, ) Running in cluster mode 215 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 216 | | `-._ `._ / _.-' | PID: 1 217 | `-._ `-._ `-./ _.-' _.-' 218 | |`-._`-._ `-.__.-' _.-'_.-'| 219 | | `-._`-._ _.-'_.-' | http://redis.io 220 | `-._ `-._`-.__.-'_.-' _.-' 221 | |`-._`-._ `-.__.-' _.-'_.-'| 222 | | `-._`-._ _.-'_.-' | 223 | `-._ `-._`-.__.-'_.-' _.-' 224 | `-._ `-.__.-' _.-' 225 | `-._ _.-' 226 | `-.__.-' 227 | 228 | 1:M 15 Apr 2019 21:29:09.336 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 229 | 1:M 15 Apr 2019 21:29:09.338 # Server initialized 230 | 1:M 15 Apr 2019 21:29:09.341 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 231 | 1:M 15 Apr 2019 21:29:09.345 * Ready to accept connections 232 | 1:M 15 Apr 2019 21:29:09.935 * Replica 172.16.238.16:6379 asks for synchronization 233 | 1:M 15 Apr 2019 21:29:09.937 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '87ec17418fb576eaa416c44ab58fea82c876315b', my replication IDs are '8ec073d009b86f6a2536d9ca5b6ed620ce87bb15' and '0000000000000000000000000000000000000000') 234 | 1:M 15 Apr 2019 21:29:09.939 * Starting BGSAVE for SYNC with target: disk 235 | 1:M 15 Apr 2019 21:29:09.941 * Background saving started by pid 18 236 | 18:C 15 Apr 2019 21:29:09.946 * DB saved on disk 237 | 18:C 15 Apr 2019 21:29:09.948 * RDB: 0 MB of memory used by copy-on-write 238 | 1:M 15 Apr 2019 21:29:09.959 * Background saving terminated with success 239 | 1:M 15 Apr 2019 21:29:09.964 * Synchronization with replica 172.16.238.16:6379 succeeded 240 | 1:M 15 Apr 2019 21:29:11.386 # Cluster state changed: ok 241 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 242 | 1:M 15 Apr 2019 21:29:54.079 # User requested shutdown... 243 | 1:M 15 Apr 2019 21:29:54.085 * Calling fsync() on the AOF file. 244 | 1:M 15 Apr 2019 21:29:54.089 * Saving the final RDB snapshot before exiting. 245 | 1:M 15 Apr 2019 21:29:54.100 * DB saved on disk 246 | 1:M 15 Apr 2019 21:29:54.104 * Removing the pid file. 247 | 1:M 15 Apr 2019 21:29:54.109 # Redis is now ready to exit, bye bye... 248 | 1:C 15 Apr 2019 21:30:03.684 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 249 | 1:C 15 Apr 2019 21:30:03.690 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 250 | 1:C 15 Apr 2019 21:30:03.695 # Configuration loaded 251 | 1:M 15 Apr 2019 21:30:03.717 * Node configuration loaded, I'm be819c89c86d958438658b6eb9fd896a986b1d03 252 | _._ 253 | _.-``__ ''-._ 254 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 255 | .-`` .-```. ```\/ _.,_ ''-._ 256 | ( ' , .-` | `, ) Running in cluster mode 257 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 258 | | `-._ `._ / _.-' | PID: 1 259 | `-._ `-._ `-./ _.-' _.-' 260 | |`-._`-._ `-.__.-' _.-'_.-'| 261 | | `-._`-._ _.-'_.-' | http://redis.io 262 | `-._ `-._`-.__.-'_.-' _.-' 263 | |`-._`-._ `-.__.-' _.-'_.-'| 264 | | `-._`-._ _.-'_.-' | 265 | `-._ `-._`-.__.-'_.-' _.-' 266 | `-._ `-.__.-' _.-' 267 | `-._ _.-' 268 | `-.__.-' 269 | 270 | 1:M 15 Apr 2019 21:30:03.733 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 271 | 1:M 15 Apr 2019 21:30:03.736 # Server initialized 272 | 1:M 15 Apr 2019 21:30:03.739 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 273 | 1:M 15 Apr 2019 21:30:03.746 * Ready to accept connections 274 | 1:M 15 Apr 2019 21:30:04.753 * Replica 172.16.238.16:6379 asks for synchronization 275 | 1:M 15 Apr 2019 21:30:04.755 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '4e3431e17354efd15b72e105b4c4435516745a15', my replication IDs are '950bfdafd6c2d483fa900c838cec6ba77c1995a4' and '0000000000000000000000000000000000000000') 276 | 1:M 15 Apr 2019 21:30:04.757 * Starting BGSAVE for SYNC with target: disk 277 | 1:M 15 Apr 2019 21:30:04.760 * Background saving started by pid 17 278 | 17:C 15 Apr 2019 21:30:04.766 * DB saved on disk 279 | 17:C 15 Apr 2019 21:30:04.769 * RDB: 0 MB of memory used by copy-on-write 280 | 1:M 15 Apr 2019 21:30:04.865 * Background saving terminated with success 281 | 1:M 15 Apr 2019 21:30:04.870 * Synchronization with replica 172.16.238.16:6379 succeeded 282 | 1:M 15 Apr 2019 21:30:05.785 # Cluster state changed: ok 283 | -------------------------------------------------------------------------------- /node-6380/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6380/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6381/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092450832 6 connected 2 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 myself,master - 0 1555092447000 3 connected 10923-16383 3 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092450000 4 connected 4 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092448000 5 connected 5 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 master - 0 1555092449000 2 connected 5461-10922 6 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 master - 0 1555092449814 1 connected 0-5460 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6381/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6381/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6381/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 01:02:40.532 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 01:02:40.535 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 01:02:40.537 # Configuration loaded 4 | 1:M 13 Apr 2019 01:02:40.553 * No cluster configuration found, I'm 75a447416104674001ef9194825f439297f0cfbe 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 01:02:40.561 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 01:02:40.563 # Server initialized 25 | 1:M 13 Apr 2019 01:02:40.565 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 01:02:40.569 * Ready to accept connections 27 | 1:M 13 Apr 2019 01:02:54.439 # configEpoch set to 3 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 01:02:54.528 # IP address for this node updated to 172.16.238.13 29 | 1:M 13 Apr 2019 01:02:59.478 # Cluster state changed: ok 30 | 1:M 13 Apr 2019 01:03:00.323 * Replica 172.16.238.14:6379 asks for synchronization 31 | 1:M 13 Apr 2019 01:03:00.324 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'c111fdda1a0b6e106d0c857f5051e4462b4a23ac', my replication IDs are '9ad21a9c873cb846d5803ce78030b41e5bcc42ba' and '0000000000000000000000000000000000000000') 32 | 1:M 13 Apr 2019 01:03:00.325 * Starting BGSAVE for SYNC with target: disk 33 | 1:M 13 Apr 2019 01:03:00.327 * Background saving started by pid 18 34 | 18:C 13 Apr 2019 01:03:00.330 * DB saved on disk 35 | 18:C 13 Apr 2019 01:03:00.332 * RDB: 0 MB of memory used by copy-on-write 36 | 1:M 13 Apr 2019 01:03:00.394 * Background saving terminated with success 37 | 1:M 13 Apr 2019 01:03:00.400 * Synchronization with replica 172.16.238.14:6379 succeeded 38 | 1:signal-handler (1555092030) Received SIGTERM scheduling shutdown... 39 | 1:M 13 Apr 2019 02:00:30.292 # User requested shutdown... 40 | 1:M 13 Apr 2019 02:00:30.299 * Calling fsync() on the AOF file. 41 | 1:M 13 Apr 2019 02:00:30.304 * Saving the final RDB snapshot before exiting. 42 | 1:M 13 Apr 2019 02:00:30.319 * DB saved on disk 43 | 1:M 13 Apr 2019 02:00:30.322 * Removing the pid file. 44 | 1:M 13 Apr 2019 02:00:30.326 # Redis is now ready to exit, bye bye... 45 | 1:C 13 Apr 2019 02:00:42.426 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 46 | 1:C 13 Apr 2019 02:00:42.427 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 47 | 1:C 13 Apr 2019 02:00:42.429 # Configuration loaded 48 | 1:M 13 Apr 2019 02:00:42.435 * Node configuration loaded, I'm 75a447416104674001ef9194825f439297f0cfbe 49 | _._ 50 | _.-``__ ''-._ 51 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 52 | .-`` .-```. ```\/ _.,_ ''-._ 53 | ( ' , .-` | `, ) Running in cluster mode 54 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 55 | | `-._ `._ / _.-' | PID: 1 56 | `-._ `-._ `-./ _.-' _.-' 57 | |`-._`-._ `-.__.-' _.-'_.-'| 58 | | `-._`-._ _.-'_.-' | http://redis.io 59 | `-._ `-._`-.__.-'_.-' _.-' 60 | |`-._`-._ `-.__.-' _.-'_.-'| 61 | | `-._`-._ _.-'_.-' | 62 | `-._ `-._`-.__.-'_.-' _.-' 63 | `-._ `-.__.-' _.-' 64 | `-._ _.-' 65 | `-.__.-' 66 | 67 | 1:M 13 Apr 2019 02:00:42.452 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 68 | 1:M 13 Apr 2019 02:00:42.454 # Server initialized 69 | 1:M 13 Apr 2019 02:00:42.462 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 70 | 1:M 13 Apr 2019 02:00:42.467 * Ready to accept connections 71 | 1:M 13 Apr 2019 02:00:42.770 * Replica 172.16.238.14:6379 asks for synchronization 72 | 1:M 13 Apr 2019 02:00:42.772 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '10e6111e9af060e7169fe207ee399f84949d776d', my replication IDs are '25ca1e6c1fad5b36f82a99284994e20676693c9d' and '0000000000000000000000000000000000000000') 73 | 1:M 13 Apr 2019 02:00:42.774 * Starting BGSAVE for SYNC with target: disk 74 | 1:M 13 Apr 2019 02:00:42.776 * Background saving started by pid 18 75 | 18:C 13 Apr 2019 02:00:42.780 * DB saved on disk 76 | 18:C 13 Apr 2019 02:00:42.782 * RDB: 0 MB of memory used by copy-on-write 77 | 1:M 13 Apr 2019 02:00:42.882 * Background saving terminated with success 78 | 1:M 13 Apr 2019 02:00:42.889 * Synchronization with replica 172.16.238.14:6379 succeeded 79 | 1:M 13 Apr 2019 02:00:44.515 # Cluster state changed: ok 80 | 1:signal-handler (1555092367) Received SIGTERM scheduling shutdown... 81 | 1:M 13 Apr 2019 02:06:07.501 # User requested shutdown... 82 | 1:M 13 Apr 2019 02:06:07.503 * Calling fsync() on the AOF file. 83 | 1:M 13 Apr 2019 02:06:07.505 * Saving the final RDB snapshot before exiting. 84 | 1:M 13 Apr 2019 02:06:07.509 * DB saved on disk 85 | 1:M 13 Apr 2019 02:06:07.511 * Removing the pid file. 86 | 1:M 13 Apr 2019 02:06:07.512 # Redis is now ready to exit, bye bye... 87 | 1:C 13 Apr 2019 02:06:59.450 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 88 | 1:C 13 Apr 2019 02:06:59.453 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 89 | 1:C 13 Apr 2019 02:06:59.455 # Configuration loaded 90 | 1:M 13 Apr 2019 02:06:59.463 * No cluster configuration found, I'm 2663045d703eb1f6a38c6282de34114a8de38423 91 | _._ 92 | _.-``__ ''-._ 93 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 94 | .-`` .-```. ```\/ _.,_ ''-._ 95 | ( ' , .-` | `, ) Running in cluster mode 96 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 97 | | `-._ `._ / _.-' | PID: 1 98 | `-._ `-._ `-./ _.-' _.-' 99 | |`-._`-._ `-.__.-' _.-'_.-'| 100 | | `-._`-._ _.-'_.-' | http://redis.io 101 | `-._ `-._`-.__.-'_.-' _.-' 102 | |`-._`-._ `-.__.-' _.-'_.-'| 103 | | `-._`-._ _.-'_.-' | 104 | `-._ `-._`-.__.-'_.-' _.-' 105 | `-._ `-.__.-' _.-' 106 | `-._ _.-' 107 | `-.__.-' 108 | 109 | 1:M 13 Apr 2019 02:06:59.470 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 110 | 1:M 13 Apr 2019 02:06:59.472 # Server initialized 111 | 1:M 13 Apr 2019 02:06:59.474 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 112 | 1:M 13 Apr 2019 02:06:59.478 * Ready to accept connections 113 | 1:M 13 Apr 2019 02:07:21.925 # configEpoch set to 3 via CLUSTER SET-CONFIG-EPOCH 114 | 1:M 13 Apr 2019 02:07:22.059 # IP address for this node updated to 172.16.238.13 115 | 1:M 13 Apr 2019 02:07:26.975 # Cluster state changed: ok 116 | 1:M 13 Apr 2019 02:07:28.408 * Replica 172.16.238.14:6379 asks for synchronization 117 | 1:M 13 Apr 2019 02:07:28.410 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '9351bb3a109182f945cf8f292ead99c65aefe492', my replication IDs are '465ce05525012d89d9727561ed6b90f1927908b7' and '0000000000000000000000000000000000000000') 118 | 1:M 13 Apr 2019 02:07:28.412 * Starting BGSAVE for SYNC with target: disk 119 | 1:M 13 Apr 2019 02:07:28.414 * Background saving started by pid 25 120 | 25:C 13 Apr 2019 02:07:28.417 * DB saved on disk 121 | 25:C 13 Apr 2019 02:07:28.419 * RDB: 0 MB of memory used by copy-on-write 122 | 1:M 13 Apr 2019 02:07:28.495 * Background saving terminated with success 123 | 1:M 13 Apr 2019 02:07:28.502 * Synchronization with replica 172.16.238.14:6379 succeeded 124 | 1:C 15 Apr 2019 21:11:10.762 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 125 | 1:C 15 Apr 2019 21:11:10.765 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 126 | 1:C 15 Apr 2019 21:11:10.770 # Configuration loaded 127 | 1:M 15 Apr 2019 21:11:10.782 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 128 | _._ 129 | _.-``__ ''-._ 130 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 131 | .-`` .-```. ```\/ _.,_ ''-._ 132 | ( ' , .-` | `, ) Running in cluster mode 133 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 134 | | `-._ `._ / _.-' | PID: 1 135 | `-._ `-._ `-./ _.-' _.-' 136 | |`-._`-._ `-.__.-' _.-'_.-'| 137 | | `-._`-._ _.-'_.-' | http://redis.io 138 | `-._ `-._`-.__.-'_.-' _.-' 139 | |`-._`-._ `-.__.-' _.-'_.-'| 140 | | `-._`-._ _.-'_.-' | 141 | `-._ `-._`-.__.-'_.-' _.-' 142 | `-._ `-.__.-' _.-' 143 | `-._ _.-' 144 | `-.__.-' 145 | 146 | 1:M 15 Apr 2019 21:11:10.800 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 147 | 1:M 15 Apr 2019 21:11:10.801 # Server initialized 148 | 1:M 15 Apr 2019 21:11:10.804 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 149 | 1:M 15 Apr 2019 21:11:10.807 * Ready to accept connections 150 | 1:M 15 Apr 2019 21:11:12.794 * Replica 172.16.238.14:6379 asks for synchronization 151 | 1:M 15 Apr 2019 21:11:12.796 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '7c1d9892f6844c9fdb202403f22d20b4aa7f89ed', my replication IDs are '9f1010b22bf12bacfe56191869f3c52a00080122' and '0000000000000000000000000000000000000000') 152 | 1:M 15 Apr 2019 21:11:12.799 * Starting BGSAVE for SYNC with target: disk 153 | 1:M 15 Apr 2019 21:11:12.801 * Background saving started by pid 17 154 | 17:C 15 Apr 2019 21:11:12.807 * DB saved on disk 155 | 17:C 15 Apr 2019 21:11:12.811 * RDB: 0 MB of memory used by copy-on-write 156 | 1:M 15 Apr 2019 21:11:12.829 * Background saving terminated with success 157 | 1:M 15 Apr 2019 21:11:12.833 # Cluster state changed: ok 158 | 1:M 15 Apr 2019 21:11:12.837 * Synchronization with replica 172.16.238.14:6379 succeeded 159 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 160 | 1:M 15 Apr 2019 21:14:43.731 # User requested shutdown... 161 | 1:M 15 Apr 2019 21:14:43.737 * Calling fsync() on the AOF file. 162 | 1:M 15 Apr 2019 21:14:43.744 * Saving the final RDB snapshot before exiting. 163 | 1:M 15 Apr 2019 21:14:43.756 * DB saved on disk 164 | 1:M 15 Apr 2019 21:14:43.762 * Removing the pid file. 165 | 1:M 15 Apr 2019 21:14:43.767 # Redis is now ready to exit, bye bye... 166 | 1:C 15 Apr 2019 21:15:09.311 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 167 | 1:C 15 Apr 2019 21:15:09.316 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 168 | 1:C 15 Apr 2019 21:15:09.319 # Configuration loaded 169 | 1:M 15 Apr 2019 21:15:09.333 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 170 | _._ 171 | _.-``__ ''-._ 172 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 173 | .-`` .-```. ```\/ _.,_ ''-._ 174 | ( ' , .-` | `, ) Running in cluster mode 175 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 176 | | `-._ `._ / _.-' | PID: 1 177 | `-._ `-._ `-./ _.-' _.-' 178 | |`-._`-._ `-.__.-' _.-'_.-'| 179 | | `-._`-._ _.-'_.-' | http://redis.io 180 | `-._ `-._`-.__.-'_.-' _.-' 181 | |`-._`-._ `-.__.-' _.-'_.-'| 182 | | `-._`-._ _.-'_.-' | 183 | `-._ `-._`-.__.-'_.-' _.-' 184 | `-._ `-.__.-' _.-' 185 | `-._ _.-' 186 | `-.__.-' 187 | 188 | 1:M 15 Apr 2019 21:15:09.343 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 189 | 1:M 15 Apr 2019 21:15:09.345 # Server initialized 190 | 1:M 15 Apr 2019 21:15:09.347 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 191 | 1:M 15 Apr 2019 21:15:09.350 * Ready to accept connections 192 | 1:M 15 Apr 2019 21:15:10.380 * Replica 172.16.238.14:6379 asks for synchronization 193 | 1:M 15 Apr 2019 21:15:10.382 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '27c51198fed1e74d3b53faa858f6052978a4f10b', my replication IDs are 'e91b334203f3a4810366fc418873f3dae51afb5d' and '0000000000000000000000000000000000000000') 194 | 1:M 15 Apr 2019 21:15:10.384 * Starting BGSAVE for SYNC with target: disk 195 | 1:M 15 Apr 2019 21:15:10.386 * Background saving started by pid 17 196 | 17:C 15 Apr 2019 21:15:10.391 * DB saved on disk 197 | 17:C 15 Apr 2019 21:15:10.394 * RDB: 0 MB of memory used by copy-on-write 198 | 1:M 15 Apr 2019 21:15:10.478 * Background saving terminated with success 199 | 1:M 15 Apr 2019 21:15:10.486 * Synchronization with replica 172.16.238.14:6379 succeeded 200 | 1:M 15 Apr 2019 21:15:11.396 # Cluster state changed: ok 201 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 202 | 1:M 15 Apr 2019 21:19:05.613 # User requested shutdown... 203 | 1:M 15 Apr 2019 21:19:05.619 * Calling fsync() on the AOF file. 204 | 1:M 15 Apr 2019 21:19:05.625 * Saving the final RDB snapshot before exiting. 205 | 1:M 15 Apr 2019 21:19:05.640 * DB saved on disk 206 | 1:M 15 Apr 2019 21:19:05.644 * Removing the pid file. 207 | 1:M 15 Apr 2019 21:19:05.650 # Redis is now ready to exit, bye bye... 208 | 1:C 15 Apr 2019 21:19:16.522 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 209 | 1:C 15 Apr 2019 21:19:16.524 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 210 | 1:C 15 Apr 2019 21:19:16.526 # Configuration loaded 211 | 1:M 15 Apr 2019 21:19:16.536 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 212 | _._ 213 | _.-``__ ''-._ 214 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 215 | .-`` .-```. ```\/ _.,_ ''-._ 216 | ( ' , .-` | `, ) Running in cluster mode 217 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 218 | | `-._ `._ / _.-' | PID: 1 219 | `-._ `-._ `-./ _.-' _.-' 220 | |`-._`-._ `-.__.-' _.-'_.-'| 221 | | `-._`-._ _.-'_.-' | http://redis.io 222 | `-._ `-._`-.__.-'_.-' _.-' 223 | |`-._`-._ `-.__.-' _.-'_.-'| 224 | | `-._`-._ _.-'_.-' | 225 | `-._ `-._`-.__.-'_.-' _.-' 226 | `-._ `-.__.-' _.-' 227 | `-._ _.-' 228 | `-.__.-' 229 | 230 | 1:M 15 Apr 2019 21:19:16.542 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 231 | 1:M 15 Apr 2019 21:19:16.545 # Server initialized 232 | 1:M 15 Apr 2019 21:19:16.547 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 233 | 1:M 15 Apr 2019 21:19:16.551 * Ready to accept connections 234 | 1:M 15 Apr 2019 21:19:18.051 * Replica 172.16.238.14:6379 asks for synchronization 235 | 1:M 15 Apr 2019 21:19:18.053 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '9b66904201b35d6c116e2b8059a9582175284b91', my replication IDs are '84a474bb6d5fa943f3da0885d3185230c456eb14' and '0000000000000000000000000000000000000000') 236 | 1:M 15 Apr 2019 21:19:18.056 * Starting BGSAVE for SYNC with target: disk 237 | 1:M 15 Apr 2019 21:19:18.058 * Background saving started by pid 17 238 | 17:C 15 Apr 2019 21:19:18.063 * DB saved on disk 239 | 17:C 15 Apr 2019 21:19:18.065 * RDB: 0 MB of memory used by copy-on-write 240 | 1:M 15 Apr 2019 21:19:18.074 * Background saving terminated with success 241 | 1:M 15 Apr 2019 21:19:18.079 * Synchronization with replica 172.16.238.14:6379 succeeded 242 | 1:M 15 Apr 2019 21:19:18.584 # Cluster state changed: ok 243 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 244 | 1:M 15 Apr 2019 21:21:49.686 # User requested shutdown... 245 | 1:M 15 Apr 2019 21:21:49.691 * Calling fsync() on the AOF file. 246 | 1:M 15 Apr 2019 21:21:49.694 * Saving the final RDB snapshot before exiting. 247 | 1:M 15 Apr 2019 21:21:49.702 * DB saved on disk 248 | 1:M 15 Apr 2019 21:21:49.705 * Removing the pid file. 249 | 1:M 15 Apr 2019 21:21:49.709 # Redis is now ready to exit, bye bye... 250 | 1:C 15 Apr 2019 21:21:59.536 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 251 | 1:C 15 Apr 2019 21:21:59.540 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 252 | 1:C 15 Apr 2019 21:21:59.543 # Configuration loaded 253 | 1:M 15 Apr 2019 21:21:59.551 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 254 | _._ 255 | _.-``__ ''-._ 256 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 257 | .-`` .-```. ```\/ _.,_ ''-._ 258 | ( ' , .-` | `, ) Running in cluster mode 259 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 260 | | `-._ `._ / _.-' | PID: 1 261 | `-._ `-._ `-./ _.-' _.-' 262 | |`-._`-._ `-.__.-' _.-'_.-'| 263 | | `-._`-._ _.-'_.-' | http://redis.io 264 | `-._ `-._`-.__.-'_.-' _.-' 265 | |`-._`-._ `-.__.-' _.-'_.-'| 266 | | `-._`-._ _.-'_.-' | 267 | `-._ `-._`-.__.-'_.-' _.-' 268 | `-._ `-.__.-' _.-' 269 | `-._ _.-' 270 | `-.__.-' 271 | 272 | 1:M 15 Apr 2019 21:21:59.555 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 273 | 1:M 15 Apr 2019 21:21:59.557 # Server initialized 274 | 1:M 15 Apr 2019 21:21:59.559 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 275 | 1:M 15 Apr 2019 21:21:59.562 * Ready to accept connections 276 | 1:M 15 Apr 2019 21:22:01.226 * Replica 172.16.238.14:6379 asks for synchronization 277 | 1:M 15 Apr 2019 21:22:01.228 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '18025f235085013193eca0e3e05aecb0c73b80f6', my replication IDs are '542d39a5f0c6707f6afbc1e4381b6b90c9ddff22' and '0000000000000000000000000000000000000000') 278 | 1:M 15 Apr 2019 21:22:01.230 * Starting BGSAVE for SYNC with target: disk 279 | 1:M 15 Apr 2019 21:22:01.233 * Background saving started by pid 17 280 | 17:C 15 Apr 2019 21:22:01.237 * DB saved on disk 281 | 17:C 15 Apr 2019 21:22:01.240 * RDB: 0 MB of memory used by copy-on-write 282 | 1:M 15 Apr 2019 21:22:01.291 * Background saving terminated with success 283 | 1:M 15 Apr 2019 21:22:01.298 * Synchronization with replica 172.16.238.14:6379 succeeded 284 | 1:M 15 Apr 2019 21:22:01.604 # Cluster state changed: ok 285 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 286 | 1:M 15 Apr 2019 21:28:39.470 # User requested shutdown... 287 | 1:M 15 Apr 2019 21:28:39.473 * Calling fsync() on the AOF file. 288 | 1:M 15 Apr 2019 21:28:39.476 * Saving the final RDB snapshot before exiting. 289 | 1:M 15 Apr 2019 21:28:39.490 * DB saved on disk 290 | 1:M 15 Apr 2019 21:28:39.493 * Removing the pid file. 291 | 1:M 15 Apr 2019 21:28:39.496 # Redis is now ready to exit, bye bye... 292 | 1:C 15 Apr 2019 21:29:09.551 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 293 | 1:C 15 Apr 2019 21:29:09.557 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 294 | 1:C 15 Apr 2019 21:29:09.560 # Configuration loaded 295 | 1:M 15 Apr 2019 21:29:09.570 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 296 | _._ 297 | _.-``__ ''-._ 298 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 299 | .-`` .-```. ```\/ _.,_ ''-._ 300 | ( ' , .-` | `, ) Running in cluster mode 301 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 302 | | `-._ `._ / _.-' | PID: 1 303 | `-._ `-._ `-./ _.-' _.-' 304 | |`-._`-._ `-.__.-' _.-'_.-'| 305 | | `-._`-._ _.-'_.-' | http://redis.io 306 | `-._ `-._`-.__.-'_.-' _.-' 307 | |`-._`-._ `-.__.-' _.-'_.-'| 308 | | `-._`-._ _.-'_.-' | 309 | `-._ `-._`-.__.-'_.-' _.-' 310 | `-._ `-.__.-' _.-' 311 | `-._ _.-' 312 | `-.__.-' 313 | 314 | 1:M 15 Apr 2019 21:29:09.575 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 315 | 1:M 15 Apr 2019 21:29:09.578 # Server initialized 316 | 1:M 15 Apr 2019 21:29:09.582 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 317 | 1:M 15 Apr 2019 21:29:09.588 * Ready to accept connections 318 | 1:M 15 Apr 2019 21:29:10.625 * Replica 172.16.238.14:6379 asks for synchronization 319 | 1:M 15 Apr 2019 21:29:10.627 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '0cffa857f4ad0d1b75500f061ef6872ca438a537', my replication IDs are 'c40155ca310321d3c7321246f379bd430e877325' and '0000000000000000000000000000000000000000') 320 | 1:M 15 Apr 2019 21:29:10.629 * Starting BGSAVE for SYNC with target: disk 321 | 1:M 15 Apr 2019 21:29:10.631 * Background saving started by pid 17 322 | 17:C 15 Apr 2019 21:29:10.635 * DB saved on disk 323 | 17:C 15 Apr 2019 21:29:10.637 * RDB: 0 MB of memory used by copy-on-write 324 | 1:M 15 Apr 2019 21:29:10.709 * Background saving terminated with success 325 | 1:M 15 Apr 2019 21:29:10.716 * Synchronization with replica 172.16.238.14:6379 succeeded 326 | 1:M 15 Apr 2019 21:29:11.628 # Cluster state changed: ok 327 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 328 | 1:M 15 Apr 2019 21:29:54.079 # User requested shutdown... 329 | 1:M 15 Apr 2019 21:29:54.085 * Calling fsync() on the AOF file. 330 | 1:M 15 Apr 2019 21:29:54.089 * Saving the final RDB snapshot before exiting. 331 | 1:M 15 Apr 2019 21:29:54.101 * DB saved on disk 332 | 1:M 15 Apr 2019 21:29:54.105 * Removing the pid file. 333 | 1:M 15 Apr 2019 21:29:54.109 # Redis is now ready to exit, bye bye... 334 | 1:C 15 Apr 2019 21:30:03.736 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 335 | 1:C 15 Apr 2019 21:30:03.739 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 336 | 1:C 15 Apr 2019 21:30:03.742 # Configuration loaded 337 | 1:M 15 Apr 2019 21:30:03.754 * Node configuration loaded, I'm 2663045d703eb1f6a38c6282de34114a8de38423 338 | _._ 339 | _.-``__ ''-._ 340 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 341 | .-`` .-```. ```\/ _.,_ ''-._ 342 | ( ' , .-` | `, ) Running in cluster mode 343 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 344 | | `-._ `._ / _.-' | PID: 1 345 | `-._ `-._ `-./ _.-' _.-' 346 | |`-._`-._ `-.__.-' _.-'_.-'| 347 | | `-._`-._ _.-'_.-' | http://redis.io 348 | `-._ `-._`-.__.-'_.-' _.-' 349 | |`-._`-._ `-.__.-' _.-'_.-'| 350 | | `-._`-._ _.-'_.-' | 351 | `-._ `-._`-.__.-'_.-' _.-' 352 | `-._ `-.__.-' _.-' 353 | `-._ _.-' 354 | `-.__.-' 355 | 356 | 1:M 15 Apr 2019 21:30:03.759 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 357 | 1:M 15 Apr 2019 21:30:03.761 # Server initialized 358 | 1:M 15 Apr 2019 21:30:03.764 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 359 | 1:M 15 Apr 2019 21:30:03.769 * Ready to accept connections 360 | 1:M 15 Apr 2019 21:30:04.491 * Replica 172.16.238.14:6379 asks for synchronization 361 | 1:M 15 Apr 2019 21:30:04.493 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '1fd1df4c0759b1621cb49541e95fdf7645f5df29', my replication IDs are 'fdb66de1eac6934dacf4861e74ee4a72701e70e6' and '0000000000000000000000000000000000000000') 362 | 1:M 15 Apr 2019 21:30:04.495 * Starting BGSAVE for SYNC with target: disk 363 | 1:M 15 Apr 2019 21:30:04.498 * Background saving started by pid 18 364 | 18:C 15 Apr 2019 21:30:04.502 * DB saved on disk 365 | 18:C 15 Apr 2019 21:30:04.505 * RDB: 0 MB of memory used by copy-on-write 366 | 1:M 15 Apr 2019 21:30:04.584 * Background saving terminated with success 367 | 1:M 15 Apr 2019 21:30:04.591 * Synchronization with replica 172.16.238.14:6379 succeeded 368 | 1:M 15 Apr 2019 21:30:05.810 # Cluster state changed: ok 369 | -------------------------------------------------------------------------------- /node-6381/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6381/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6382/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 master - 0 1555092445249 1 connected 0-5460 2 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 master - 0 1555092446266 2 connected 5461-10922 3 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092448296 6 connected 4 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 myself,slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092445000 4 connected 5 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092448000 5 connected 6 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 master - 0 1555092447281 3 connected 10923-16383 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6382/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6382/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6382/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 02:06:58.957 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 02:06:58.962 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 02:06:58.964 # Configuration loaded 4 | 1:M 13 Apr 2019 02:06:58.977 * No cluster configuration found, I'm 9f532054be984d94718d0a203208c66a16a7fde7 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 02:06:58.985 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 02:06:58.986 # Server initialized 25 | 1:M 13 Apr 2019 02:06:58.988 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 02:06:58.991 * Ready to accept connections 27 | 1:M 13 Apr 2019 02:07:21.930 # configEpoch set to 4 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 02:07:22.059 # IP address for this node updated to 172.16.238.14 29 | 1:M 13 Apr 2019 02:07:27.077 # Cluster state changed: ok 30 | 1:S 13 Apr 2019 02:07:27.978 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 31 | 1:S 13 Apr 2019 02:07:28.395 * Connecting to MASTER 172.16.238.13:6379 32 | 1:S 13 Apr 2019 02:07:28.398 * MASTER <-> REPLICA sync started 33 | 1:S 13 Apr 2019 02:07:28.401 * Non blocking connect for SYNC fired the event. 34 | 1:S 13 Apr 2019 02:07:28.404 * Master replied to PING, replication can continue... 35 | 1:S 13 Apr 2019 02:07:28.406 * Trying a partial resynchronization (request 9351bb3a109182f945cf8f292ead99c65aefe492:1). 36 | 1:S 13 Apr 2019 02:07:28.416 * Full resync from master: 4e0e7a7493e8f54d2ea381637e4e272ba0fc3657:0 37 | 1:S 13 Apr 2019 02:07:28.418 * Discarding previously cached master state. 38 | 1:S 13 Apr 2019 02:07:28.501 * MASTER <-> REPLICA sync: receiving 175 bytes from master 39 | 1:S 13 Apr 2019 02:07:28.505 * MASTER <-> REPLICA sync: Flushing old data 40 | 1:S 13 Apr 2019 02:07:28.507 * MASTER <-> REPLICA sync: Loading DB in memory 41 | 1:S 13 Apr 2019 02:07:28.510 * MASTER <-> REPLICA sync: Finished with success 42 | 1:S 13 Apr 2019 02:07:28.513 * Background append only file rewriting started by pid 19 43 | 1:S 13 Apr 2019 02:07:28.546 * AOF rewrite child asks to stop sending diffs. 44 | 19:C 13 Apr 2019 02:07:28.549 * Parent agreed to stop sending diffs. Finalizing AOF... 45 | 19:C 13 Apr 2019 02:07:28.550 * Concatenating 0.00 MB of AOF diff received from parent. 46 | 19:C 13 Apr 2019 02:07:28.553 * SYNC append only file rewrite performed 47 | 19:C 13 Apr 2019 02:07:28.555 * AOF rewrite: 0 MB of memory used by copy-on-write 48 | 1:S 13 Apr 2019 02:07:28.605 * Background AOF rewrite terminated with success 49 | 1:S 13 Apr 2019 02:07:28.607 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 50 | 1:S 13 Apr 2019 02:07:28.609 * Background AOF rewrite finished successfully 51 | 1:C 15 Apr 2019 21:11:11.705 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 52 | 1:C 15 Apr 2019 21:11:11.710 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 53 | 1:C 15 Apr 2019 21:11:11.714 # Configuration loaded 54 | 1:M 15 Apr 2019 21:11:11.736 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 55 | _._ 56 | _.-``__ ''-._ 57 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 58 | .-`` .-```. ```\/ _.,_ ''-._ 59 | ( ' , .-` | `, ) Running in cluster mode 60 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 61 | | `-._ `._ / _.-' | PID: 1 62 | `-._ `-._ `-./ _.-' _.-' 63 | |`-._`-._ `-.__.-' _.-'_.-'| 64 | | `-._`-._ _.-'_.-' | http://redis.io 65 | `-._ `-._`-.__.-'_.-' _.-' 66 | |`-._`-._ `-.__.-' _.-'_.-'| 67 | | `-._`-._ _.-'_.-' | 68 | `-._ `-._`-.__.-'_.-' _.-' 69 | `-._ `-.__.-' _.-' 70 | `-._ _.-' 71 | `-.__.-' 72 | 73 | 1:M 15 Apr 2019 21:11:11.742 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 74 | 1:M 15 Apr 2019 21:11:11.744 # Server initialized 75 | 1:M 15 Apr 2019 21:11:11.746 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 76 | 1:M 15 Apr 2019 21:11:11.752 * Reading RDB preamble from AOF file... 77 | 1:M 15 Apr 2019 21:11:11.754 * Reading the remaining AOF tail... 78 | 1:M 15 Apr 2019 21:11:11.758 * DB loaded from append only file: 0.009 seconds 79 | 1:M 15 Apr 2019 21:11:11.761 * Ready to accept connections 80 | 1:S 15 Apr 2019 21:11:11.766 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 81 | 1:S 15 Apr 2019 21:11:11.768 # Cluster state changed: ok 82 | 1:S 15 Apr 2019 21:11:12.780 * Connecting to MASTER 172.16.238.13:6379 83 | 1:S 15 Apr 2019 21:11:12.784 * MASTER <-> REPLICA sync started 84 | 1:S 15 Apr 2019 21:11:12.786 * Non blocking connect for SYNC fired the event. 85 | 1:S 15 Apr 2019 21:11:12.789 * Master replied to PING, replication can continue... 86 | 1:S 15 Apr 2019 21:11:12.792 * Trying a partial resynchronization (request 7c1d9892f6844c9fdb202403f22d20b4aa7f89ed:1). 87 | 1:S 15 Apr 2019 21:11:12.805 * Full resync from master: 7e3b4ca069fa99ca7bd8373c9dc975b6262a6be6:0 88 | 1:S 15 Apr 2019 21:11:12.808 * Discarding previously cached master state. 89 | 1:S 15 Apr 2019 21:11:12.836 * MASTER <-> REPLICA sync: receiving 175 bytes from master 90 | 1:S 15 Apr 2019 21:11:12.840 * MASTER <-> REPLICA sync: Flushing old data 91 | 1:S 15 Apr 2019 21:11:12.843 * MASTER <-> REPLICA sync: Loading DB in memory 92 | 1:S 15 Apr 2019 21:11:12.847 * MASTER <-> REPLICA sync: Finished with success 93 | 1:S 15 Apr 2019 21:11:12.851 * Background append only file rewriting started by pid 17 94 | 1:S 15 Apr 2019 21:11:12.885 * AOF rewrite child asks to stop sending diffs. 95 | 17:C 15 Apr 2019 21:11:12.888 * Parent agreed to stop sending diffs. Finalizing AOF... 96 | 17:C 15 Apr 2019 21:11:12.890 * Concatenating 0.00 MB of AOF diff received from parent. 97 | 17:C 15 Apr 2019 21:11:12.894 * SYNC append only file rewrite performed 98 | 17:C 15 Apr 2019 21:11:12.896 * AOF rewrite: 0 MB of memory used by copy-on-write 99 | 1:S 15 Apr 2019 21:11:12.993 * Background AOF rewrite terminated with success 100 | 1:S 15 Apr 2019 21:11:12.997 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 101 | 1:S 15 Apr 2019 21:11:13.002 * Background AOF rewrite finished successfully 102 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 103 | 1:S 15 Apr 2019 21:14:43.731 # User requested shutdown... 104 | 1:S 15 Apr 2019 21:14:43.737 * Calling fsync() on the AOF file. 105 | 1:S 15 Apr 2019 21:14:43.743 * Saving the final RDB snapshot before exiting. 106 | 1:S 15 Apr 2019 21:14:43.757 * DB saved on disk 107 | 1:S 15 Apr 2019 21:14:43.762 * Removing the pid file. 108 | 1:S 15 Apr 2019 21:14:43.766 # Redis is now ready to exit, bye bye... 109 | 1:C 15 Apr 2019 21:15:09.250 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 110 | 1:C 15 Apr 2019 21:15:09.251 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 111 | 1:C 15 Apr 2019 21:15:09.257 # Configuration loaded 112 | 1:M 15 Apr 2019 21:15:09.267 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 113 | _._ 114 | _.-``__ ''-._ 115 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 116 | .-`` .-```. ```\/ _.,_ ''-._ 117 | ( ' , .-` | `, ) Running in cluster mode 118 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 119 | | `-._ `._ / _.-' | PID: 1 120 | `-._ `-._ `-./ _.-' _.-' 121 | |`-._`-._ `-.__.-' _.-'_.-'| 122 | | `-._`-._ _.-'_.-' | http://redis.io 123 | `-._ `-._`-.__.-'_.-' _.-' 124 | |`-._`-._ `-.__.-' _.-'_.-'| 125 | | `-._`-._ _.-'_.-' | 126 | `-._ `-._`-.__.-'_.-' _.-' 127 | `-._ `-.__.-' _.-' 128 | `-._ _.-' 129 | `-.__.-' 130 | 131 | 1:M 15 Apr 2019 21:15:09.278 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 132 | 1:M 15 Apr 2019 21:15:09.290 # Server initialized 133 | 1:M 15 Apr 2019 21:15:09.295 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 134 | 1:M 15 Apr 2019 21:15:09.310 * Reading RDB preamble from AOF file... 135 | 1:M 15 Apr 2019 21:15:09.315 * Reading the remaining AOF tail... 136 | 1:M 15 Apr 2019 21:15:09.320 * DB loaded from append only file: 0.022 seconds 137 | 1:M 15 Apr 2019 21:15:09.324 * Ready to accept connections 138 | 1:S 15 Apr 2019 21:15:09.329 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 139 | 1:S 15 Apr 2019 21:15:09.334 # Cluster state changed: ok 140 | 1:S 15 Apr 2019 21:15:10.355 * Connecting to MASTER 172.16.238.13:6379 141 | 1:S 15 Apr 2019 21:15:10.367 * MASTER <-> REPLICA sync started 142 | 1:S 15 Apr 2019 21:15:10.370 * Non blocking connect for SYNC fired the event. 143 | 1:S 15 Apr 2019 21:15:10.374 * Master replied to PING, replication can continue... 144 | 1:S 15 Apr 2019 21:15:10.377 * Trying a partial resynchronization (request 27c51198fed1e74d3b53faa858f6052978a4f10b:1). 145 | 1:S 15 Apr 2019 21:15:10.389 * Full resync from master: 41e47b9073d6db3471cf74dc5954b554bc457c02:0 146 | 1:S 15 Apr 2019 21:15:10.392 * Discarding previously cached master state. 147 | 1:S 15 Apr 2019 21:15:10.485 * MASTER <-> REPLICA sync: receiving 175 bytes from master 148 | 1:S 15 Apr 2019 21:15:10.490 * MASTER <-> REPLICA sync: Flushing old data 149 | 1:S 15 Apr 2019 21:15:10.493 * MASTER <-> REPLICA sync: Loading DB in memory 150 | 1:S 15 Apr 2019 21:15:10.497 * MASTER <-> REPLICA sync: Finished with success 151 | 1:S 15 Apr 2019 21:15:10.500 * Background append only file rewriting started by pid 18 152 | 1:S 15 Apr 2019 21:15:10.534 * AOF rewrite child asks to stop sending diffs. 153 | 18:C 15 Apr 2019 21:15:10.537 * Parent agreed to stop sending diffs. Finalizing AOF... 154 | 18:C 15 Apr 2019 21:15:10.540 * Concatenating 0.00 MB of AOF diff received from parent. 155 | 18:C 15 Apr 2019 21:15:10.543 * SYNC append only file rewrite performed 156 | 18:C 15 Apr 2019 21:15:10.545 * AOF rewrite: 0 MB of memory used by copy-on-write 157 | 1:S 15 Apr 2019 21:15:10.576 * Background AOF rewrite terminated with success 158 | 1:S 15 Apr 2019 21:15:10.581 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 159 | 1:S 15 Apr 2019 21:15:10.586 * Background AOF rewrite finished successfully 160 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 161 | 1:S 15 Apr 2019 21:19:05.612 # User requested shutdown... 162 | 1:S 15 Apr 2019 21:19:05.619 * Calling fsync() on the AOF file. 163 | 1:S 15 Apr 2019 21:19:05.624 * Saving the final RDB snapshot before exiting. 164 | 1:S 15 Apr 2019 21:19:05.639 * DB saved on disk 165 | 1:S 15 Apr 2019 21:19:05.644 * Removing the pid file. 166 | 1:S 15 Apr 2019 21:19:05.650 # Redis is now ready to exit, bye bye... 167 | 1:C 15 Apr 2019 21:19:16.973 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 168 | 1:C 15 Apr 2019 21:19:16.974 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 169 | 1:C 15 Apr 2019 21:19:16.977 # Configuration loaded 170 | 1:M 15 Apr 2019 21:19:16.987 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 171 | _._ 172 | _.-``__ ''-._ 173 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 174 | .-`` .-```. ```\/ _.,_ ''-._ 175 | ( ' , .-` | `, ) Running in cluster mode 176 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 177 | | `-._ `._ / _.-' | PID: 1 178 | `-._ `-._ `-./ _.-' _.-' 179 | |`-._`-._ `-.__.-' _.-'_.-'| 180 | | `-._`-._ _.-'_.-' | http://redis.io 181 | `-._ `-._`-.__.-'_.-' _.-' 182 | |`-._`-._ `-.__.-' _.-'_.-'| 183 | | `-._`-._ _.-'_.-' | 184 | `-._ `-._`-.__.-'_.-' _.-' 185 | `-._ `-.__.-' _.-' 186 | `-._ _.-' 187 | `-.__.-' 188 | 189 | 1:M 15 Apr 2019 21:19:16.993 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 190 | 1:M 15 Apr 2019 21:19:16.995 # Server initialized 191 | 1:M 15 Apr 2019 21:19:16.998 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 192 | 1:M 15 Apr 2019 21:19:17.003 * Reading RDB preamble from AOF file... 193 | 1:M 15 Apr 2019 21:19:17.005 * Reading the remaining AOF tail... 194 | 1:M 15 Apr 2019 21:19:17.008 * DB loaded from append only file: 0.007 seconds 195 | 1:M 15 Apr 2019 21:19:17.010 * Ready to accept connections 196 | 1:S 15 Apr 2019 21:19:17.013 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 197 | 1:S 15 Apr 2019 21:19:17.016 # Cluster state changed: ok 198 | 1:S 15 Apr 2019 21:19:18.033 * Connecting to MASTER 172.16.238.13:6379 199 | 1:S 15 Apr 2019 21:19:18.036 * MASTER <-> REPLICA sync started 200 | 1:S 15 Apr 2019 21:19:18.039 * Non blocking connect for SYNC fired the event. 201 | 1:S 15 Apr 2019 21:19:18.042 * Master replied to PING, replication can continue... 202 | 1:S 15 Apr 2019 21:19:18.047 * Trying a partial resynchronization (request 9b66904201b35d6c116e2b8059a9582175284b91:1). 203 | 1:S 15 Apr 2019 21:19:18.061 * Full resync from master: f1c5a43fe587e757fd443304d3408f07a30a5139:0 204 | 1:S 15 Apr 2019 21:19:18.064 * Discarding previously cached master state. 205 | 1:S 15 Apr 2019 21:19:18.079 * MASTER <-> REPLICA sync: receiving 175 bytes from master 206 | 1:S 15 Apr 2019 21:19:18.084 * MASTER <-> REPLICA sync: Flushing old data 207 | 1:S 15 Apr 2019 21:19:18.086 * MASTER <-> REPLICA sync: Loading DB in memory 208 | 1:S 15 Apr 2019 21:19:18.090 * MASTER <-> REPLICA sync: Finished with success 209 | 1:S 15 Apr 2019 21:19:18.093 * Background append only file rewriting started by pid 17 210 | 1:S 15 Apr 2019 21:19:18.128 * AOF rewrite child asks to stop sending diffs. 211 | 17:C 15 Apr 2019 21:19:18.131 * Parent agreed to stop sending diffs. Finalizing AOF... 212 | 17:C 15 Apr 2019 21:19:18.134 * Concatenating 0.00 MB of AOF diff received from parent. 213 | 17:C 15 Apr 2019 21:19:18.137 * SYNC append only file rewrite performed 214 | 17:C 15 Apr 2019 21:19:18.140 * AOF rewrite: 0 MB of memory used by copy-on-write 215 | 1:S 15 Apr 2019 21:19:18.241 * Background AOF rewrite terminated with success 216 | 1:S 15 Apr 2019 21:19:18.244 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 217 | 1:S 15 Apr 2019 21:19:18.247 * Background AOF rewrite finished successfully 218 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 219 | 1:S 15 Apr 2019 21:21:49.708 # User requested shutdown... 220 | 1:S 15 Apr 2019 21:21:49.712 * Calling fsync() on the AOF file. 221 | 1:S 15 Apr 2019 21:21:49.716 * Saving the final RDB snapshot before exiting. 222 | 1:S 15 Apr 2019 21:21:49.725 * DB saved on disk 223 | 1:S 15 Apr 2019 21:21:49.728 * Removing the pid file. 224 | 1:S 15 Apr 2019 21:21:49.731 # Redis is now ready to exit, bye bye... 225 | 1:C 15 Apr 2019 21:22:00.117 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 226 | 1:C 15 Apr 2019 21:22:00.123 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 227 | 1:C 15 Apr 2019 21:22:00.130 # Configuration loaded 228 | 1:M 15 Apr 2019 21:22:00.148 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 229 | _._ 230 | _.-``__ ''-._ 231 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 232 | .-`` .-```. ```\/ _.,_ ''-._ 233 | ( ' , .-` | `, ) Running in cluster mode 234 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 235 | | `-._ `._ / _.-' | PID: 1 236 | `-._ `-._ `-./ _.-' _.-' 237 | |`-._`-._ `-.__.-' _.-'_.-'| 238 | | `-._`-._ _.-'_.-' | http://redis.io 239 | `-._ `-._`-.__.-'_.-' _.-' 240 | |`-._`-._ `-.__.-' _.-'_.-'| 241 | | `-._`-._ _.-'_.-' | 242 | `-._ `-._`-.__.-'_.-' _.-' 243 | `-._ `-.__.-' _.-' 244 | `-._ _.-' 245 | `-.__.-' 246 | 247 | 1:M 15 Apr 2019 21:22:00.156 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 248 | 1:M 15 Apr 2019 21:22:00.159 # Server initialized 249 | 1:M 15 Apr 2019 21:22:00.162 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 250 | 1:M 15 Apr 2019 21:22:00.169 * Reading RDB preamble from AOF file... 251 | 1:M 15 Apr 2019 21:22:00.172 * Reading the remaining AOF tail... 252 | 1:M 15 Apr 2019 21:22:00.182 * DB loaded from append only file: 0.017 seconds 253 | 1:M 15 Apr 2019 21:22:00.188 * Ready to accept connections 254 | 1:S 15 Apr 2019 21:22:00.193 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 255 | 1:S 15 Apr 2019 21:22:00.196 # Cluster state changed: ok 256 | 1:S 15 Apr 2019 21:22:01.214 * Connecting to MASTER 172.16.238.13:6379 257 | 1:S 15 Apr 2019 21:22:01.217 * MASTER <-> REPLICA sync started 258 | 1:S 15 Apr 2019 21:22:01.219 * Non blocking connect for SYNC fired the event. 259 | 1:S 15 Apr 2019 21:22:01.221 * Master replied to PING, replication can continue... 260 | 1:S 15 Apr 2019 21:22:01.224 * Trying a partial resynchronization (request 18025f235085013193eca0e3e05aecb0c73b80f6:1). 261 | 1:S 15 Apr 2019 21:22:01.237 * Full resync from master: fc90514776f4de50f64a3fb053eb75cc75c6cd93:0 262 | 1:S 15 Apr 2019 21:22:01.239 * Discarding previously cached master state. 263 | 1:S 15 Apr 2019 21:22:01.298 * MASTER <-> REPLICA sync: receiving 175 bytes from master 264 | 1:S 15 Apr 2019 21:22:01.302 * MASTER <-> REPLICA sync: Flushing old data 265 | 1:S 15 Apr 2019 21:22:01.304 * MASTER <-> REPLICA sync: Loading DB in memory 266 | 1:S 15 Apr 2019 21:22:01.310 * MASTER <-> REPLICA sync: Finished with success 267 | 1:S 15 Apr 2019 21:22:01.313 * Background append only file rewriting started by pid 18 268 | 1:S 15 Apr 2019 21:22:01.347 * AOF rewrite child asks to stop sending diffs. 269 | 18:C 15 Apr 2019 21:22:01.350 * Parent agreed to stop sending diffs. Finalizing AOF... 270 | 18:C 15 Apr 2019 21:22:01.352 * Concatenating 0.00 MB of AOF diff received from parent. 271 | 18:C 15 Apr 2019 21:22:01.355 * SYNC append only file rewrite performed 272 | 18:C 15 Apr 2019 21:22:01.357 * AOF rewrite: 0 MB of memory used by copy-on-write 273 | 1:S 15 Apr 2019 21:22:01.424 * Background AOF rewrite terminated with success 274 | 1:S 15 Apr 2019 21:22:01.429 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 275 | 1:S 15 Apr 2019 21:22:01.433 * Background AOF rewrite finished successfully 276 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 277 | 1:S 15 Apr 2019 21:28:39.570 # User requested shutdown... 278 | 1:S 15 Apr 2019 21:28:39.572 * Calling fsync() on the AOF file. 279 | 1:S 15 Apr 2019 21:28:39.582 * Saving the final RDB snapshot before exiting. 280 | 1:S 15 Apr 2019 21:28:39.593 * DB saved on disk 281 | 1:S 15 Apr 2019 21:28:39.597 * Removing the pid file. 282 | 1:S 15 Apr 2019 21:28:39.599 # Redis is now ready to exit, bye bye... 283 | 1:C 15 Apr 2019 21:29:09.515 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 284 | 1:C 15 Apr 2019 21:29:09.521 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 285 | 1:C 15 Apr 2019 21:29:09.529 # Configuration loaded 286 | 1:M 15 Apr 2019 21:29:09.551 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 287 | _._ 288 | _.-``__ ''-._ 289 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 290 | .-`` .-```. ```\/ _.,_ ''-._ 291 | ( ' , .-` | `, ) Running in cluster mode 292 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 293 | | `-._ `._ / _.-' | PID: 1 294 | `-._ `-._ `-./ _.-' _.-' 295 | |`-._`-._ `-.__.-' _.-'_.-'| 296 | | `-._`-._ _.-'_.-' | http://redis.io 297 | `-._ `-._`-.__.-'_.-' _.-' 298 | |`-._`-._ `-.__.-' _.-'_.-'| 299 | | `-._`-._ _.-'_.-' | 300 | `-._ `-._`-.__.-'_.-' _.-' 301 | `-._ `-.__.-' _.-' 302 | `-._ _.-' 303 | `-.__.-' 304 | 305 | 1:M 15 Apr 2019 21:29:09.559 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 306 | 1:M 15 Apr 2019 21:29:09.564 # Server initialized 307 | 1:M 15 Apr 2019 21:29:09.566 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 308 | 1:M 15 Apr 2019 21:29:09.573 * Reading RDB preamble from AOF file... 309 | 1:M 15 Apr 2019 21:29:09.577 * Reading the remaining AOF tail... 310 | 1:M 15 Apr 2019 21:29:09.580 * DB loaded from append only file: 0.011 seconds 311 | 1:M 15 Apr 2019 21:29:09.583 * Ready to accept connections 312 | 1:S 15 Apr 2019 21:29:09.587 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 313 | 1:S 15 Apr 2019 21:29:09.592 # Cluster state changed: ok 314 | 1:S 15 Apr 2019 21:29:10.608 * Connecting to MASTER 172.16.238.13:6379 315 | 1:S 15 Apr 2019 21:29:10.612 * MASTER <-> REPLICA sync started 316 | 1:S 15 Apr 2019 21:29:10.615 * Non blocking connect for SYNC fired the event. 317 | 1:S 15 Apr 2019 21:29:10.618 * Master replied to PING, replication can continue... 318 | 1:S 15 Apr 2019 21:29:10.623 * Trying a partial resynchronization (request 0cffa857f4ad0d1b75500f061ef6872ca438a537:1). 319 | 1:S 15 Apr 2019 21:29:10.634 * Full resync from master: a06dc4cf5e6af0d6a19825427e329159b48619da:0 320 | 1:S 15 Apr 2019 21:29:10.637 * Discarding previously cached master state. 321 | 1:S 15 Apr 2019 21:29:10.715 * MASTER <-> REPLICA sync: receiving 175 bytes from master 322 | 1:S 15 Apr 2019 21:29:10.720 * MASTER <-> REPLICA sync: Flushing old data 323 | 1:S 15 Apr 2019 21:29:10.722 * MASTER <-> REPLICA sync: Loading DB in memory 324 | 1:S 15 Apr 2019 21:29:10.727 * MASTER <-> REPLICA sync: Finished with success 325 | 1:S 15 Apr 2019 21:29:10.730 * Background append only file rewriting started by pid 19 326 | 1:S 15 Apr 2019 21:29:10.765 * AOF rewrite child asks to stop sending diffs. 327 | 19:C 15 Apr 2019 21:29:10.768 * Parent agreed to stop sending diffs. Finalizing AOF... 328 | 19:C 15 Apr 2019 21:29:10.770 * Concatenating 0.00 MB of AOF diff received from parent. 329 | 19:C 15 Apr 2019 21:29:10.775 * SYNC append only file rewrite performed 330 | 19:C 15 Apr 2019 21:29:10.777 * AOF rewrite: 0 MB of memory used by copy-on-write 331 | 1:S 15 Apr 2019 21:29:10.821 * Background AOF rewrite terminated with success 332 | 1:S 15 Apr 2019 21:29:10.826 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 333 | 1:S 15 Apr 2019 21:29:10.831 * Background AOF rewrite finished successfully 334 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 335 | 1:S 15 Apr 2019 21:29:54.079 # User requested shutdown... 336 | 1:S 15 Apr 2019 21:29:54.084 * Calling fsync() on the AOF file. 337 | 1:S 15 Apr 2019 21:29:54.089 * Saving the final RDB snapshot before exiting. 338 | 1:S 15 Apr 2019 21:29:54.100 * DB saved on disk 339 | 1:S 15 Apr 2019 21:29:54.104 * Removing the pid file. 340 | 1:S 15 Apr 2019 21:29:54.108 # Redis is now ready to exit, bye bye... 341 | 1:C 15 Apr 2019 21:30:03.412 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 342 | 1:C 15 Apr 2019 21:30:03.413 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 343 | 1:C 15 Apr 2019 21:30:03.415 # Configuration loaded 344 | 1:M 15 Apr 2019 21:30:03.422 * Node configuration loaded, I'm 9f532054be984d94718d0a203208c66a16a7fde7 345 | _._ 346 | _.-``__ ''-._ 347 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 348 | .-`` .-```. ```\/ _.,_ ''-._ 349 | ( ' , .-` | `, ) Running in cluster mode 350 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 351 | | `-._ `._ / _.-' | PID: 1 352 | `-._ `-._ `-./ _.-' _.-' 353 | |`-._`-._ `-.__.-' _.-'_.-'| 354 | | `-._`-._ _.-'_.-' | http://redis.io 355 | `-._ `-._`-.__.-'_.-' _.-' 356 | |`-._`-._ `-.__.-' _.-'_.-'| 357 | | `-._`-._ _.-'_.-' | 358 | `-._ `-._`-.__.-'_.-' _.-' 359 | `-._ `-.__.-' _.-' 360 | `-._ _.-' 361 | `-.__.-' 362 | 363 | 1:M 15 Apr 2019 21:30:03.427 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 364 | 1:M 15 Apr 2019 21:30:03.429 # Server initialized 365 | 1:M 15 Apr 2019 21:30:03.430 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 366 | 1:M 15 Apr 2019 21:30:03.434 * Reading RDB preamble from AOF file... 367 | 1:M 15 Apr 2019 21:30:03.436 * Reading the remaining AOF tail... 368 | 1:M 15 Apr 2019 21:30:03.438 * DB loaded from append only file: 0.007 seconds 369 | 1:M 15 Apr 2019 21:30:03.443 * Ready to accept connections 370 | 1:S 15 Apr 2019 21:30:03.447 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 371 | 1:S 15 Apr 2019 21:30:03.449 # Cluster state changed: ok 372 | 1:S 15 Apr 2019 21:30:04.476 * Connecting to MASTER 172.16.238.13:6379 373 | 1:S 15 Apr 2019 21:30:04.480 * MASTER <-> REPLICA sync started 374 | 1:S 15 Apr 2019 21:30:04.483 * Non blocking connect for SYNC fired the event. 375 | 1:S 15 Apr 2019 21:30:04.486 * Master replied to PING, replication can continue... 376 | 1:S 15 Apr 2019 21:30:04.489 * Trying a partial resynchronization (request 1fd1df4c0759b1621cb49541e95fdf7645f5df29:1). 377 | 1:S 15 Apr 2019 21:30:04.501 * Full resync from master: 3bcab756c4cf6d13df6d50242fde286854b684c8:0 378 | 1:S 15 Apr 2019 21:30:04.504 * Discarding previously cached master state. 379 | 1:S 15 Apr 2019 21:30:04.590 * MASTER <-> REPLICA sync: receiving 175 bytes from master 380 | 1:S 15 Apr 2019 21:30:04.595 * MASTER <-> REPLICA sync: Flushing old data 381 | 1:S 15 Apr 2019 21:30:04.598 * MASTER <-> REPLICA sync: Loading DB in memory 382 | 1:S 15 Apr 2019 21:30:04.602 * MASTER <-> REPLICA sync: Finished with success 383 | 1:S 15 Apr 2019 21:30:04.606 * Background append only file rewriting started by pid 18 384 | 1:S 15 Apr 2019 21:30:04.639 * AOF rewrite child asks to stop sending diffs. 385 | 18:C 15 Apr 2019 21:30:04.643 * Parent agreed to stop sending diffs. Finalizing AOF... 386 | 18:C 15 Apr 2019 21:30:04.645 * Concatenating 0.00 MB of AOF diff received from parent. 387 | 18:C 15 Apr 2019 21:30:04.649 * SYNC append only file rewrite performed 388 | 18:C 15 Apr 2019 21:30:04.651 * AOF rewrite: 0 MB of memory used by copy-on-write 389 | 1:S 15 Apr 2019 21:30:04.685 * Background AOF rewrite terminated with success 390 | 1:S 15 Apr 2019 21:30:04.689 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 391 | 1:S 15 Apr 2019 21:30:04.694 * Background AOF rewrite finished successfully 392 | -------------------------------------------------------------------------------- /node-6382/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6382/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6383/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 master - 0 1555092446000 2 connected 5461-10922 2 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 myself,slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092445000 5 connected 3 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 master - 0 1555092445554 1 connected 0-5460 4 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092448000 6 connected 5 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 master - 0 1555092447000 3 connected 10923-16383 6 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092448600 4 connected 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6383/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6383/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6383/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 02:06:59.228 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 02:06:59.230 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 02:06:59.232 # Configuration loaded 4 | 1:M 13 Apr 2019 02:06:59.243 * No cluster configuration found, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 02:06:59.252 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 02:06:59.256 # Server initialized 25 | 1:M 13 Apr 2019 02:06:59.258 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 02:06:59.264 * Ready to accept connections 27 | 1:M 13 Apr 2019 02:07:21.934 # configEpoch set to 5 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 02:07:22.060 # IP address for this node updated to 172.16.238.15 29 | 1:M 13 Apr 2019 02:07:27.077 # Cluster state changed: ok 30 | 1:S 13 Apr 2019 02:07:27.983 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 31 | 1:S 13 Apr 2019 02:07:28.699 * Connecting to MASTER 172.16.238.11:6379 32 | 1:S 13 Apr 2019 02:07:28.702 * MASTER <-> REPLICA sync started 33 | 1:S 13 Apr 2019 02:07:28.704 * Non blocking connect for SYNC fired the event. 34 | 1:S 13 Apr 2019 02:07:28.706 * Master replied to PING, replication can continue... 35 | 1:S 13 Apr 2019 02:07:28.709 * Trying a partial resynchronization (request f1f091700f32389f9cec71cffe5167e90f7fcc4e:1). 36 | 1:S 13 Apr 2019 02:07:28.718 * Full resync from master: e66b7545f0bfa5a7408db4a3f83c21379b40cf05:0 37 | 1:S 13 Apr 2019 02:07:28.719 * Discarding previously cached master state. 38 | 1:S 13 Apr 2019 02:07:28.777 * MASTER <-> REPLICA sync: receiving 175 bytes from master 39 | 1:S 13 Apr 2019 02:07:28.780 * MASTER <-> REPLICA sync: Flushing old data 40 | 1:S 13 Apr 2019 02:07:28.782 * MASTER <-> REPLICA sync: Loading DB in memory 41 | 1:S 13 Apr 2019 02:07:28.785 * MASTER <-> REPLICA sync: Finished with success 42 | 1:S 13 Apr 2019 02:07:28.788 * Background append only file rewriting started by pid 18 43 | 1:S 13 Apr 2019 02:07:28.821 * AOF rewrite child asks to stop sending diffs. 44 | 18:C 13 Apr 2019 02:07:28.823 * Parent agreed to stop sending diffs. Finalizing AOF... 45 | 18:C 13 Apr 2019 02:07:28.825 * Concatenating 0.00 MB of AOF diff received from parent. 46 | 18:C 13 Apr 2019 02:07:28.828 * SYNC append only file rewrite performed 47 | 18:C 13 Apr 2019 02:07:28.830 * AOF rewrite: 0 MB of memory used by copy-on-write 48 | 1:S 13 Apr 2019 02:07:28.908 * Background AOF rewrite terminated with success 49 | 1:S 13 Apr 2019 02:07:28.912 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 50 | 1:S 13 Apr 2019 02:07:28.916 * Background AOF rewrite finished successfully 51 | 1:C 15 Apr 2019 21:11:10.352 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 52 | 1:C 15 Apr 2019 21:11:10.354 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 53 | 1:C 15 Apr 2019 21:11:10.357 # Configuration loaded 54 | 1:M 15 Apr 2019 21:11:10.385 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 55 | _._ 56 | _.-``__ ''-._ 57 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 58 | .-`` .-```. ```\/ _.,_ ''-._ 59 | ( ' , .-` | `, ) Running in cluster mode 60 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 61 | | `-._ `._ / _.-' | PID: 1 62 | `-._ `-._ `-./ _.-' _.-' 63 | |`-._`-._ `-.__.-' _.-'_.-'| 64 | | `-._`-._ _.-'_.-' | http://redis.io 65 | `-._ `-._`-.__.-'_.-' _.-' 66 | |`-._`-._ `-.__.-' _.-'_.-'| 67 | | `-._`-._ _.-'_.-' | 68 | `-._ `-._`-.__.-'_.-' _.-' 69 | `-._ `-.__.-' _.-' 70 | `-._ _.-' 71 | `-.__.-' 72 | 73 | 1:M 15 Apr 2019 21:11:10.396 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 74 | 1:M 15 Apr 2019 21:11:10.399 # Server initialized 75 | 1:M 15 Apr 2019 21:11:10.402 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 76 | 1:M 15 Apr 2019 21:11:10.407 * Reading RDB preamble from AOF file... 77 | 1:M 15 Apr 2019 21:11:10.410 * Reading the remaining AOF tail... 78 | 1:M 15 Apr 2019 21:11:10.414 * DB loaded from append only file: 0.011 seconds 79 | 1:M 15 Apr 2019 21:11:10.417 * Ready to accept connections 80 | 1:S 15 Apr 2019 21:11:10.423 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 81 | 1:S 15 Apr 2019 21:11:10.425 # Cluster state changed: ok 82 | 1:S 15 Apr 2019 21:11:11.437 * Connecting to MASTER 172.16.238.11:6379 83 | 1:S 15 Apr 2019 21:11:11.441 * MASTER <-> REPLICA sync started 84 | 1:S 15 Apr 2019 21:11:11.968 * Non blocking connect for SYNC fired the event. 85 | 1:S 15 Apr 2019 21:11:11.970 * Master replied to PING, replication can continue... 86 | 1:S 15 Apr 2019 21:11:11.973 * Trying a partial resynchronization (request 4a57245139be0eb4c904b37eb9e6e34d9c9d01a1:1). 87 | 1:S 15 Apr 2019 21:11:11.985 * Full resync from master: faf84196c461c1af75ff183ff3a6a348de11eb0f:0 88 | 1:S 15 Apr 2019 21:11:11.987 * Discarding previously cached master state. 89 | 1:S 15 Apr 2019 21:11:12.073 * MASTER <-> REPLICA sync: receiving 175 bytes from master 90 | 1:S 15 Apr 2019 21:11:12.079 * MASTER <-> REPLICA sync: Flushing old data 91 | 1:S 15 Apr 2019 21:11:12.083 * MASTER <-> REPLICA sync: Loading DB in memory 92 | 1:S 15 Apr 2019 21:11:12.092 * MASTER <-> REPLICA sync: Finished with success 93 | 1:S 15 Apr 2019 21:11:12.102 * Background append only file rewriting started by pid 19 94 | 1:S 15 Apr 2019 21:11:12.137 * AOF rewrite child asks to stop sending diffs. 95 | 19:C 15 Apr 2019 21:11:12.140 * Parent agreed to stop sending diffs. Finalizing AOF... 96 | 19:C 15 Apr 2019 21:11:12.142 * Concatenating 0.00 MB of AOF diff received from parent. 97 | 19:C 15 Apr 2019 21:11:12.146 * SYNC append only file rewrite performed 98 | 19:C 15 Apr 2019 21:11:12.148 * AOF rewrite: 0 MB of memory used by copy-on-write 99 | 1:S 15 Apr 2019 21:11:12.250 * Background AOF rewrite terminated with success 100 | 1:S 15 Apr 2019 21:11:12.254 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 101 | 1:S 15 Apr 2019 21:11:12.258 * Background AOF rewrite finished successfully 102 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 103 | 1:S 15 Apr 2019 21:14:43.731 # User requested shutdown... 104 | 1:S 15 Apr 2019 21:14:43.737 * Calling fsync() on the AOF file. 105 | 1:S 15 Apr 2019 21:14:43.744 * Saving the final RDB snapshot before exiting. 106 | 1:S 15 Apr 2019 21:14:43.757 * DB saved on disk 107 | 1:S 15 Apr 2019 21:14:43.763 * Removing the pid file. 108 | 1:S 15 Apr 2019 21:14:43.767 # Redis is now ready to exit, bye bye... 109 | 1:C 15 Apr 2019 21:15:08.234 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 110 | 1:C 15 Apr 2019 21:15:08.236 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 111 | 1:C 15 Apr 2019 21:15:08.239 # Configuration loaded 112 | 1:M 15 Apr 2019 21:15:08.251 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 113 | _._ 114 | _.-``__ ''-._ 115 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 116 | .-`` .-```. ```\/ _.,_ ''-._ 117 | ( ' , .-` | `, ) Running in cluster mode 118 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 119 | | `-._ `._ / _.-' | PID: 1 120 | `-._ `-._ `-./ _.-' _.-' 121 | |`-._`-._ `-.__.-' _.-'_.-'| 122 | | `-._`-._ _.-'_.-' | http://redis.io 123 | `-._ `-._`-.__.-'_.-' _.-' 124 | |`-._`-._ `-.__.-' _.-'_.-'| 125 | | `-._`-._ _.-'_.-' | 126 | `-._ `-._`-.__.-'_.-' _.-' 127 | `-._ `-.__.-' _.-' 128 | `-._ _.-' 129 | `-.__.-' 130 | 131 | 1:M 15 Apr 2019 21:15:08.257 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 132 | 1:M 15 Apr 2019 21:15:08.259 # Server initialized 133 | 1:M 15 Apr 2019 21:15:08.261 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 134 | 1:M 15 Apr 2019 21:15:08.268 * Reading RDB preamble from AOF file... 135 | 1:M 15 Apr 2019 21:15:08.271 * Reading the remaining AOF tail... 136 | 1:M 15 Apr 2019 21:15:08.275 * DB loaded from append only file: 0.011 seconds 137 | 1:M 15 Apr 2019 21:15:08.277 * Ready to accept connections 138 | 1:S 15 Apr 2019 21:15:08.283 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 139 | 1:S 15 Apr 2019 21:15:08.287 # Cluster state changed: ok 140 | 1:S 15 Apr 2019 21:15:09.296 * Connecting to MASTER 172.16.238.11:6379 141 | 1:S 15 Apr 2019 21:15:09.300 * MASTER <-> REPLICA sync started 142 | 1:S 15 Apr 2019 21:15:09.306 * Non blocking connect for SYNC fired the event. 143 | 1:S 15 Apr 2019 21:15:09.313 * Master replied to PING, replication can continue... 144 | 1:S 15 Apr 2019 21:15:09.317 * Trying a partial resynchronization (request 92a4798dfaa6b2240f34eb52dc04338bf80853b3:1). 145 | 1:S 15 Apr 2019 21:15:09.332 * Full resync from master: a381cf4aa761d40032fb2224ac0e38e7c9a1dbd8:0 146 | 1:S 15 Apr 2019 21:15:09.338 * Discarding previously cached master state. 147 | 1:S 15 Apr 2019 21:15:09.447 * MASTER <-> REPLICA sync: receiving 175 bytes from master 148 | 1:S 15 Apr 2019 21:15:09.451 * MASTER <-> REPLICA sync: Flushing old data 149 | 1:S 15 Apr 2019 21:15:09.454 * MASTER <-> REPLICA sync: Loading DB in memory 150 | 1:S 15 Apr 2019 21:15:09.461 * MASTER <-> REPLICA sync: Finished with success 151 | 1:S 15 Apr 2019 21:15:09.465 * Background append only file rewriting started by pid 17 152 | 1:S 15 Apr 2019 21:15:09.494 * AOF rewrite child asks to stop sending diffs. 153 | 17:C 15 Apr 2019 21:15:09.496 * Parent agreed to stop sending diffs. Finalizing AOF... 154 | 17:C 15 Apr 2019 21:15:09.498 * Concatenating 0.00 MB of AOF diff received from parent. 155 | 17:C 15 Apr 2019 21:15:09.502 * SYNC append only file rewrite performed 156 | 17:C 15 Apr 2019 21:15:09.504 * AOF rewrite: 0 MB of memory used by copy-on-write 157 | 1:S 15 Apr 2019 21:15:09.609 * Background AOF rewrite terminated with success 158 | 1:S 15 Apr 2019 21:15:09.611 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 159 | 1:S 15 Apr 2019 21:15:09.615 * Background AOF rewrite finished successfully 160 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 161 | 1:S 15 Apr 2019 21:19:05.613 # User requested shutdown... 162 | 1:S 15 Apr 2019 21:19:05.620 * Calling fsync() on the AOF file. 163 | 1:S 15 Apr 2019 21:19:05.625 * Saving the final RDB snapshot before exiting. 164 | 1:S 15 Apr 2019 21:19:05.640 * DB saved on disk 165 | 1:S 15 Apr 2019 21:19:05.645 * Removing the pid file. 166 | 1:S 15 Apr 2019 21:19:05.651 # Redis is now ready to exit, bye bye... 167 | 1:C 15 Apr 2019 21:19:16.918 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 168 | 1:C 15 Apr 2019 21:19:16.924 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 169 | 1:C 15 Apr 2019 21:19:16.928 # Configuration loaded 170 | 1:M 15 Apr 2019 21:19:16.946 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 171 | _._ 172 | _.-``__ ''-._ 173 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 174 | .-`` .-```. ```\/ _.,_ ''-._ 175 | ( ' , .-` | `, ) Running in cluster mode 176 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 177 | | `-._ `._ / _.-' | PID: 1 178 | `-._ `-._ `-./ _.-' _.-' 179 | |`-._`-._ `-.__.-' _.-'_.-'| 180 | | `-._`-._ _.-'_.-' | http://redis.io 181 | `-._ `-._`-.__.-'_.-' _.-' 182 | |`-._`-._ `-.__.-' _.-'_.-'| 183 | | `-._`-._ _.-'_.-' | 184 | `-._ `-._`-.__.-'_.-' _.-' 185 | `-._ `-.__.-' _.-' 186 | `-._ _.-' 187 | `-.__.-' 188 | 189 | 1:M 15 Apr 2019 21:19:16.964 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 190 | 1:M 15 Apr 2019 21:19:16.970 # Server initialized 191 | 1:M 15 Apr 2019 21:19:16.972 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 192 | 1:M 15 Apr 2019 21:19:16.978 * Reading RDB preamble from AOF file... 193 | 1:M 15 Apr 2019 21:19:16.982 * Reading the remaining AOF tail... 194 | 1:M 15 Apr 2019 21:19:16.988 * DB loaded from append only file: 0.014 seconds 195 | 1:M 15 Apr 2019 21:19:16.990 * Ready to accept connections 196 | 1:S 15 Apr 2019 21:19:16.996 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 197 | 1:S 15 Apr 2019 21:19:17.000 # Cluster state changed: ok 198 | 1:S 15 Apr 2019 21:19:18.018 * Connecting to MASTER 172.16.238.11:6379 199 | 1:S 15 Apr 2019 21:19:18.021 * MASTER <-> REPLICA sync started 200 | 1:S 15 Apr 2019 21:19:18.024 * Non blocking connect for SYNC fired the event. 201 | 1:S 15 Apr 2019 21:19:18.027 * Master replied to PING, replication can continue... 202 | 1:S 15 Apr 2019 21:19:18.030 * Trying a partial resynchronization (request 897cc3e3939c88d873eb30b1e27ec48cd6e40aec:1). 203 | 1:S 15 Apr 2019 21:19:18.049 * Full resync from master: 9379a4f4a15d19f464f03dd086fb3e34f8f3dab1:0 204 | 1:S 15 Apr 2019 21:19:18.052 * Discarding previously cached master state. 205 | 1:S 15 Apr 2019 21:19:18.162 * MASTER <-> REPLICA sync: receiving 175 bytes from master 206 | 1:S 15 Apr 2019 21:19:18.167 * MASTER <-> REPLICA sync: Flushing old data 207 | 1:S 15 Apr 2019 21:19:18.169 * MASTER <-> REPLICA sync: Loading DB in memory 208 | 1:S 15 Apr 2019 21:19:18.173 * MASTER <-> REPLICA sync: Finished with success 209 | 1:S 15 Apr 2019 21:19:18.176 * Background append only file rewriting started by pid 18 210 | 1:S 15 Apr 2019 21:19:18.210 * AOF rewrite child asks to stop sending diffs. 211 | 18:C 15 Apr 2019 21:19:18.212 * Parent agreed to stop sending diffs. Finalizing AOF... 212 | 18:C 15 Apr 2019 21:19:18.214 * Concatenating 0.00 MB of AOF diff received from parent. 213 | 18:C 15 Apr 2019 21:19:18.218 * SYNC append only file rewrite performed 214 | 18:C 15 Apr 2019 21:19:18.220 * AOF rewrite: 0 MB of memory used by copy-on-write 215 | 1:S 15 Apr 2019 21:19:18.228 * Background AOF rewrite terminated with success 216 | 1:S 15 Apr 2019 21:19:18.232 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 217 | 1:S 15 Apr 2019 21:19:18.235 * Background AOF rewrite finished successfully 218 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 219 | 1:S 15 Apr 2019 21:21:49.707 # User requested shutdown... 220 | 1:S 15 Apr 2019 21:21:49.712 * Calling fsync() on the AOF file. 221 | 1:S 15 Apr 2019 21:21:49.715 * Saving the final RDB snapshot before exiting. 222 | 1:S 15 Apr 2019 21:21:49.724 * DB saved on disk 223 | 1:S 15 Apr 2019 21:21:49.727 * Removing the pid file. 224 | 1:S 15 Apr 2019 21:21:49.731 # Redis is now ready to exit, bye bye... 225 | 1:C 15 Apr 2019 21:21:59.679 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 226 | 1:C 15 Apr 2019 21:21:59.681 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 227 | 1:C 15 Apr 2019 21:21:59.683 # Configuration loaded 228 | 1:M 15 Apr 2019 21:21:59.690 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 229 | _._ 230 | _.-``__ ''-._ 231 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 232 | .-`` .-```. ```\/ _.,_ ''-._ 233 | ( ' , .-` | `, ) Running in cluster mode 234 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 235 | | `-._ `._ / _.-' | PID: 1 236 | `-._ `-._ `-./ _.-' _.-' 237 | |`-._`-._ `-.__.-' _.-'_.-'| 238 | | `-._`-._ _.-'_.-' | http://redis.io 239 | `-._ `-._`-.__.-'_.-' _.-' 240 | |`-._`-._ `-.__.-' _.-'_.-'| 241 | | `-._`-._ _.-'_.-' | 242 | `-._ `-._`-.__.-'_.-' _.-' 243 | `-._ `-.__.-' _.-' 244 | `-._ _.-' 245 | `-.__.-' 246 | 247 | 1:M 15 Apr 2019 21:21:59.694 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 248 | 1:M 15 Apr 2019 21:21:59.696 # Server initialized 249 | 1:M 15 Apr 2019 21:21:59.698 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 250 | 1:M 15 Apr 2019 21:21:59.702 * Reading RDB preamble from AOF file... 251 | 1:M 15 Apr 2019 21:21:59.705 * Reading the remaining AOF tail... 252 | 1:M 15 Apr 2019 21:21:59.708 * DB loaded from append only file: 0.008 seconds 253 | 1:M 15 Apr 2019 21:21:59.710 * Ready to accept connections 254 | 1:S 15 Apr 2019 21:21:59.714 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 255 | 1:S 15 Apr 2019 21:21:59.716 # Cluster state changed: ok 256 | 1:S 15 Apr 2019 21:22:00.730 * Connecting to MASTER 172.16.238.11:6379 257 | 1:S 15 Apr 2019 21:22:00.734 * MASTER <-> REPLICA sync started 258 | 1:S 15 Apr 2019 21:22:00.737 * Non blocking connect for SYNC fired the event. 259 | 1:S 15 Apr 2019 21:22:00.740 * Master replied to PING, replication can continue... 260 | 1:S 15 Apr 2019 21:22:00.743 * Trying a partial resynchronization (request 0d69586b2f337f46fe577d643cd876ca72b14dba:1). 261 | 1:S 15 Apr 2019 21:22:00.754 * Full resync from master: a034e93eec8be0e52ff51bc6b97968ba0462165e:0 262 | 1:S 15 Apr 2019 21:22:00.756 * Discarding previously cached master state. 263 | 1:S 15 Apr 2019 21:22:00.803 * MASTER <-> REPLICA sync: receiving 175 bytes from master 264 | 1:S 15 Apr 2019 21:22:00.807 * MASTER <-> REPLICA sync: Flushing old data 265 | 1:S 15 Apr 2019 21:22:00.810 * MASTER <-> REPLICA sync: Loading DB in memory 266 | 1:S 15 Apr 2019 21:22:00.814 * MASTER <-> REPLICA sync: Finished with success 267 | 1:S 15 Apr 2019 21:22:00.817 * Background append only file rewriting started by pid 18 268 | 1:S 15 Apr 2019 21:22:00.851 * AOF rewrite child asks to stop sending diffs. 269 | 18:C 15 Apr 2019 21:22:00.854 * Parent agreed to stop sending diffs. Finalizing AOF... 270 | 18:C 15 Apr 2019 21:22:00.857 * Concatenating 0.00 MB of AOF diff received from parent. 271 | 18:C 15 Apr 2019 21:22:00.860 * SYNC append only file rewrite performed 272 | 18:C 15 Apr 2019 21:22:00.863 * AOF rewrite: 0 MB of memory used by copy-on-write 273 | 1:S 15 Apr 2019 21:22:00.942 * Background AOF rewrite terminated with success 274 | 1:S 15 Apr 2019 21:22:00.948 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 275 | 1:S 15 Apr 2019 21:22:00.967 * Background AOF rewrite finished successfully 276 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 277 | 1:S 15 Apr 2019 21:28:39.467 # User requested shutdown... 278 | 1:S 15 Apr 2019 21:28:39.471 * Calling fsync() on the AOF file. 279 | 1:S 15 Apr 2019 21:28:39.474 * Saving the final RDB snapshot before exiting. 280 | 1:S 15 Apr 2019 21:28:39.483 * DB saved on disk 281 | 1:S 15 Apr 2019 21:28:39.491 * Removing the pid file. 282 | 1:S 15 Apr 2019 21:28:39.495 # Redis is now ready to exit, bye bye... 283 | 1:C 15 Apr 2019 21:29:08.421 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 284 | 1:C 15 Apr 2019 21:29:08.424 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 285 | 1:C 15 Apr 2019 21:29:08.426 # Configuration loaded 286 | 1:M 15 Apr 2019 21:29:08.437 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 287 | _._ 288 | _.-``__ ''-._ 289 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 290 | .-`` .-```. ```\/ _.,_ ''-._ 291 | ( ' , .-` | `, ) Running in cluster mode 292 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 293 | | `-._ `._ / _.-' | PID: 1 294 | `-._ `-._ `-./ _.-' _.-' 295 | |`-._`-._ `-.__.-' _.-'_.-'| 296 | | `-._`-._ _.-'_.-' | http://redis.io 297 | `-._ `-._`-.__.-'_.-' _.-' 298 | |`-._`-._ `-.__.-' _.-'_.-'| 299 | | `-._`-._ _.-'_.-' | 300 | `-._ `-._`-.__.-'_.-' _.-' 301 | `-._ `-.__.-' _.-' 302 | `-._ _.-' 303 | `-.__.-' 304 | 305 | 1:M 15 Apr 2019 21:29:08.443 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 306 | 1:M 15 Apr 2019 21:29:08.447 # Server initialized 307 | 1:M 15 Apr 2019 21:29:08.449 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 308 | 1:M 15 Apr 2019 21:29:08.456 * Reading RDB preamble from AOF file... 309 | 1:M 15 Apr 2019 21:29:08.459 * Reading the remaining AOF tail... 310 | 1:M 15 Apr 2019 21:29:08.464 * DB loaded from append only file: 0.013 seconds 311 | 1:M 15 Apr 2019 21:29:08.467 * Ready to accept connections 312 | 1:S 15 Apr 2019 21:29:08.475 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 313 | 1:S 15 Apr 2019 21:29:08.479 # Cluster state changed: ok 314 | 1:S 15 Apr 2019 21:29:09.487 * Connecting to MASTER 172.16.238.11:6379 315 | 1:S 15 Apr 2019 21:29:09.491 * MASTER <-> REPLICA sync started 316 | 1:S 15 Apr 2019 21:29:09.498 * Non blocking connect for SYNC fired the event. 317 | 1:S 15 Apr 2019 21:29:09.507 * Master replied to PING, replication can continue... 318 | 1:S 15 Apr 2019 21:29:09.512 * Trying a partial resynchronization (request cb1081a46f150006ce5ebcb71f74ae7b5260536f:1). 319 | 1:S 15 Apr 2019 21:29:09.550 * Full resync from master: 98700eeb42a98e3cbce8ed89be38a5350e1ec826:0 320 | 1:S 15 Apr 2019 21:29:09.556 * Discarding previously cached master state. 321 | 1:S 15 Apr 2019 21:29:09.670 * MASTER <-> REPLICA sync: receiving 175 bytes from master 322 | 1:S 15 Apr 2019 21:29:09.674 * MASTER <-> REPLICA sync: Flushing old data 323 | 1:S 15 Apr 2019 21:29:09.675 * MASTER <-> REPLICA sync: Loading DB in memory 324 | 1:S 15 Apr 2019 21:29:09.679 * MASTER <-> REPLICA sync: Finished with success 325 | 1:S 15 Apr 2019 21:29:09.682 * Background append only file rewriting started by pid 17 326 | 1:S 15 Apr 2019 21:29:09.713 * AOF rewrite child asks to stop sending diffs. 327 | 17:C 15 Apr 2019 21:29:09.715 * Parent agreed to stop sending diffs. Finalizing AOF... 328 | 17:C 15 Apr 2019 21:29:09.717 * Concatenating 0.00 MB of AOF diff received from parent. 329 | 17:C 15 Apr 2019 21:29:09.720 * SYNC append only file rewrite performed 330 | 17:C 15 Apr 2019 21:29:09.722 * AOF rewrite: 0 MB of memory used by copy-on-write 331 | 1:S 15 Apr 2019 21:29:09.797 * Background AOF rewrite terminated with success 332 | 1:S 15 Apr 2019 21:29:09.800 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 333 | 1:S 15 Apr 2019 21:29:09.804 * Background AOF rewrite finished successfully 334 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 335 | 1:S 15 Apr 2019 21:29:54.080 # User requested shutdown... 336 | 1:S 15 Apr 2019 21:29:54.085 * Calling fsync() on the AOF file. 337 | 1:S 15 Apr 2019 21:29:54.090 * Saving the final RDB snapshot before exiting. 338 | 1:S 15 Apr 2019 21:29:54.101 * DB saved on disk 339 | 1:S 15 Apr 2019 21:29:54.105 * Removing the pid file. 340 | 1:S 15 Apr 2019 21:29:54.109 # Redis is now ready to exit, bye bye... 341 | 1:C 15 Apr 2019 21:30:03.070 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 342 | 1:C 15 Apr 2019 21:30:03.078 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 343 | 1:C 15 Apr 2019 21:30:03.084 # Configuration loaded 344 | 1:M 15 Apr 2019 21:30:03.096 * Node configuration loaded, I'm e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 345 | _._ 346 | _.-``__ ''-._ 347 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 348 | .-`` .-```. ```\/ _.,_ ''-._ 349 | ( ' , .-` | `, ) Running in cluster mode 350 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 351 | | `-._ `._ / _.-' | PID: 1 352 | `-._ `-._ `-./ _.-' _.-' 353 | |`-._`-._ `-.__.-' _.-'_.-'| 354 | | `-._`-._ _.-'_.-' | http://redis.io 355 | `-._ `-._`-.__.-'_.-' _.-' 356 | |`-._`-._ `-.__.-' _.-'_.-'| 357 | | `-._`-._ _.-'_.-' | 358 | `-._ `-._`-.__.-'_.-' _.-' 359 | `-._ `-.__.-' _.-' 360 | `-._ _.-' 361 | `-.__.-' 362 | 363 | 1:M 15 Apr 2019 21:30:03.101 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 364 | 1:M 15 Apr 2019 21:30:03.103 # Server initialized 365 | 1:M 15 Apr 2019 21:30:03.105 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 366 | 1:M 15 Apr 2019 21:30:03.110 * Reading RDB preamble from AOF file... 367 | 1:M 15 Apr 2019 21:30:03.113 * Reading the remaining AOF tail... 368 | 1:M 15 Apr 2019 21:30:03.116 * DB loaded from append only file: 0.009 seconds 369 | 1:M 15 Apr 2019 21:30:03.118 * Ready to accept connections 370 | 1:S 15 Apr 2019 21:30:03.122 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 371 | 1:S 15 Apr 2019 21:30:03.124 # Cluster state changed: ok 372 | 1:S 15 Apr 2019 21:30:04.138 * Connecting to MASTER 172.16.238.11:6379 373 | 1:S 15 Apr 2019 21:30:04.141 * MASTER <-> REPLICA sync started 374 | 1:S 15 Apr 2019 21:30:04.144 * Non blocking connect for SYNC fired the event. 375 | 1:S 15 Apr 2019 21:30:04.147 * Master replied to PING, replication can continue... 376 | 1:S 15 Apr 2019 21:30:04.150 * Trying a partial resynchronization (request 3f40a01e85053e12ea24e71430a7fa5818a596ce:1). 377 | 1:S 15 Apr 2019 21:30:04.164 * Full resync from master: 8d0f204f6cf548452bbd81b8dfdb8aa010bc9b3a:0 378 | 1:S 15 Apr 2019 21:30:04.166 * Discarding previously cached master state. 379 | 1:S 15 Apr 2019 21:30:04.246 * MASTER <-> REPLICA sync: receiving 175 bytes from master 380 | 1:S 15 Apr 2019 21:30:04.251 * MASTER <-> REPLICA sync: Flushing old data 381 | 1:S 15 Apr 2019 21:30:04.253 * MASTER <-> REPLICA sync: Loading DB in memory 382 | 1:S 15 Apr 2019 21:30:04.259 * MASTER <-> REPLICA sync: Finished with success 383 | 1:S 15 Apr 2019 21:30:04.262 * Background append only file rewriting started by pid 18 384 | 1:S 15 Apr 2019 21:30:04.295 * AOF rewrite child asks to stop sending diffs. 385 | 18:C 15 Apr 2019 21:30:04.298 * Parent agreed to stop sending diffs. Finalizing AOF... 386 | 18:C 15 Apr 2019 21:30:04.300 * Concatenating 0.00 MB of AOF diff received from parent. 387 | 18:C 15 Apr 2019 21:30:04.303 * SYNC append only file rewrite performed 388 | 18:C 15 Apr 2019 21:30:04.305 * AOF rewrite: 0 MB of memory used by copy-on-write 389 | 1:S 15 Apr 2019 21:30:04.347 * Background AOF rewrite terminated with success 390 | 1:S 15 Apr 2019 21:30:04.351 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 391 | 1:S 15 Apr 2019 21:30:04.355 * Background AOF rewrite finished successfully 392 | -------------------------------------------------------------------------------- /node-6383/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6383/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6384/data/nodes-6379.conf: -------------------------------------------------------------------------------- 1 | 2663045d703eb1f6a38c6282de34114a8de38423 172.16.238.13:6379@16379 master - 0 1555092447075 3 connected 10923-16383 2 | e53bcf6abddab7bac5bd400bbc278b0299cfe4cc 172.16.238.15:6379@16379 slave e6522deb3da3f844c74ade1177f0fa921765cc54 0 1555092448096 5 connected 3 | be819c89c86d958438658b6eb9fd896a986b1d03 172.16.238.12:6379@16379 master - 0 1555092446066 2 connected 5461-10922 4 | e6522deb3da3f844c74ade1177f0fa921765cc54 172.16.238.11:6379@16379 master - 0 1555092445000 1 connected 0-5460 5 | ebf1e481e566b29699ff35bd2934fd4fb257e8c5 172.16.238.16:6379@16379 myself,slave be819c89c86d958438658b6eb9fd896a986b1d03 0 1555092446000 6 connected 6 | 9f532054be984d94718d0a203208c66a16a7fde7 172.16.238.14:6379@16379 slave 2663045d703eb1f6a38c6282de34114a8de38423 0 1555092446000 4 connected 7 | vars currentEpoch 6 lastVoteEpoch 0 8 | -------------------------------------------------------------------------------- /node-6384/data/redis-6379.aof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6384/data/redis-6379.aof -------------------------------------------------------------------------------- /node-6384/data/redis-6379.log: -------------------------------------------------------------------------------- 1 | 1:C 13 Apr 2019 02:06:58.760 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:C 13 Apr 2019 02:06:58.762 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:C 13 Apr 2019 02:06:58.764 # Configuration loaded 4 | 1:M 13 Apr 2019 02:06:58.772 * No cluster configuration found, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 5 | _._ 6 | _.-``__ ''-._ 7 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 8 | .-`` .-```. ```\/ _.,_ ''-._ 9 | ( ' , .-` | `, ) Running in cluster mode 10 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 11 | | `-._ `._ / _.-' | PID: 1 12 | `-._ `-._ `-./ _.-' _.-' 13 | |`-._`-._ `-.__.-' _.-'_.-'| 14 | | `-._`-._ _.-'_.-' | http://redis.io 15 | `-._ `-._`-.__.-'_.-' _.-' 16 | |`-._`-._ `-.__.-' _.-'_.-'| 17 | | `-._`-._ _.-'_.-' | 18 | `-._ `-._`-.__.-'_.-' _.-' 19 | `-._ `-.__.-' _.-' 20 | `-._ _.-' 21 | `-.__.-' 22 | 23 | 1:M 13 Apr 2019 02:06:58.783 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 24 | 1:M 13 Apr 2019 02:06:58.784 # Server initialized 25 | 1:M 13 Apr 2019 02:06:58.786 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 26 | 1:M 13 Apr 2019 02:06:58.789 * Ready to accept connections 27 | 1:M 13 Apr 2019 02:07:21.938 # configEpoch set to 6 via CLUSTER SET-CONFIG-EPOCH 28 | 1:M 13 Apr 2019 02:07:22.059 # IP address for this node updated to 172.16.238.16 29 | 1:M 13 Apr 2019 02:07:27.078 # Cluster state changed: ok 30 | 1:S 13 Apr 2019 02:07:27.987 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 31 | 1:S 13 Apr 2019 02:07:28.194 * Connecting to MASTER 172.16.238.12:6379 32 | 1:S 13 Apr 2019 02:07:28.197 * MASTER <-> REPLICA sync started 33 | 1:S 13 Apr 2019 02:07:28.200 * Non blocking connect for SYNC fired the event. 34 | 1:S 13 Apr 2019 02:07:28.202 * Master replied to PING, replication can continue... 35 | 1:S 13 Apr 2019 02:07:28.204 * Trying a partial resynchronization (request 9cec3768fa1609638ba91df016698dbe28dcb995:1). 36 | 1:S 13 Apr 2019 02:07:28.214 * Full resync from master: bc5286e5f93b03e451a96af762bdc12370aa99ad:0 37 | 1:S 13 Apr 2019 02:07:28.215 * Discarding previously cached master state. 38 | 1:S 13 Apr 2019 02:07:28.299 * MASTER <-> REPLICA sync: receiving 175 bytes from master 39 | 1:S 13 Apr 2019 02:07:28.303 * MASTER <-> REPLICA sync: Flushing old data 40 | 1:S 13 Apr 2019 02:07:28.305 * MASTER <-> REPLICA sync: Loading DB in memory 41 | 1:S 13 Apr 2019 02:07:28.308 * MASTER <-> REPLICA sync: Finished with success 42 | 1:S 13 Apr 2019 02:07:28.311 * Background append only file rewriting started by pid 19 43 | 1:S 13 Apr 2019 02:07:28.345 * AOF rewrite child asks to stop sending diffs. 44 | 19:C 13 Apr 2019 02:07:28.347 * Parent agreed to stop sending diffs. Finalizing AOF... 45 | 19:C 13 Apr 2019 02:07:28.349 * Concatenating 0.00 MB of AOF diff received from parent. 46 | 19:C 13 Apr 2019 02:07:28.352 * SYNC append only file rewrite performed 47 | 19:C 13 Apr 2019 02:07:28.354 * AOF rewrite: 0 MB of memory used by copy-on-write 48 | 1:S 13 Apr 2019 02:07:28.403 * Background AOF rewrite terminated with success 49 | 1:S 13 Apr 2019 02:07:28.405 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 50 | 1:S 13 Apr 2019 02:07:28.408 * Background AOF rewrite finished successfully 51 | 1:C 15 Apr 2019 21:11:10.982 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 52 | 1:C 15 Apr 2019 21:11:10.985 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 53 | 1:C 15 Apr 2019 21:11:10.988 # Configuration loaded 54 | 1:M 15 Apr 2019 21:11:11.000 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 55 | _._ 56 | _.-``__ ''-._ 57 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 58 | .-`` .-```. ```\/ _.,_ ''-._ 59 | ( ' , .-` | `, ) Running in cluster mode 60 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 61 | | `-._ `._ / _.-' | PID: 1 62 | `-._ `-._ `-./ _.-' _.-' 63 | |`-._`-._ `-.__.-' _.-'_.-'| 64 | | `-._`-._ _.-'_.-' | http://redis.io 65 | `-._ `-._`-.__.-'_.-' _.-' 66 | |`-._`-._ `-.__.-' _.-'_.-'| 67 | | `-._`-._ _.-'_.-' | 68 | `-._ `-._`-.__.-'_.-' _.-' 69 | `-._ `-.__.-' _.-' 70 | `-._ _.-' 71 | `-.__.-' 72 | 73 | 1:M 15 Apr 2019 21:11:11.007 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 74 | 1:M 15 Apr 2019 21:11:11.015 # Server initialized 75 | 1:M 15 Apr 2019 21:11:11.017 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 76 | 1:M 15 Apr 2019 21:11:11.024 * Reading RDB preamble from AOF file... 77 | 1:M 15 Apr 2019 21:11:11.027 * Reading the remaining AOF tail... 78 | 1:M 15 Apr 2019 21:11:11.032 * DB loaded from append only file: 0.012 seconds 79 | 1:M 15 Apr 2019 21:11:11.034 * Ready to accept connections 80 | 1:S 15 Apr 2019 21:11:11.038 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 81 | 1:S 15 Apr 2019 21:11:11.041 # Cluster state changed: ok 82 | 1:S 15 Apr 2019 21:11:12.055 * Connecting to MASTER 172.16.238.12:6379 83 | 1:S 15 Apr 2019 21:11:12.059 * MASTER <-> REPLICA sync started 84 | 1:S 15 Apr 2019 21:11:12.062 * Non blocking connect for SYNC fired the event. 85 | 1:S 15 Apr 2019 21:11:12.065 * Master replied to PING, replication can continue... 86 | 1:S 15 Apr 2019 21:11:12.068 * Trying a partial resynchronization (request bf6068ae64e83eaeb16a0e4fbe3a821b9bc325ff:1). 87 | 1:S 15 Apr 2019 21:11:12.087 * Full resync from master: f1817af74fddfa6ad91e4210d2164f9668af5207:0 88 | 1:S 15 Apr 2019 21:11:12.091 * Discarding previously cached master state. 89 | 1:S 15 Apr 2019 21:11:12.195 * MASTER <-> REPLICA sync: receiving 175 bytes from master 90 | 1:S 15 Apr 2019 21:11:12.200 * MASTER <-> REPLICA sync: Flushing old data 91 | 1:S 15 Apr 2019 21:11:12.202 * MASTER <-> REPLICA sync: Loading DB in memory 92 | 1:S 15 Apr 2019 21:11:12.206 * MASTER <-> REPLICA sync: Finished with success 93 | 1:S 15 Apr 2019 21:11:12.211 * Background append only file rewriting started by pid 18 94 | 1:S 15 Apr 2019 21:11:12.244 * AOF rewrite child asks to stop sending diffs. 95 | 18:C 15 Apr 2019 21:11:12.247 * Parent agreed to stop sending diffs. Finalizing AOF... 96 | 18:C 15 Apr 2019 21:11:12.250 * Concatenating 0.00 MB of AOF diff received from parent. 97 | 18:C 15 Apr 2019 21:11:12.254 * SYNC append only file rewrite performed 98 | 18:C 15 Apr 2019 21:11:12.256 * AOF rewrite: 0 MB of memory used by copy-on-write 99 | 1:S 15 Apr 2019 21:11:12.265 * Background AOF rewrite terminated with success 100 | 1:S 15 Apr 2019 21:11:12.268 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 101 | 1:S 15 Apr 2019 21:11:12.273 * Background AOF rewrite finished successfully 102 | 1:signal-handler (1555334083) Received SIGTERM scheduling shutdown... 103 | 1:S 15 Apr 2019 21:14:43.732 # User requested shutdown... 104 | 1:S 15 Apr 2019 21:14:43.738 * Calling fsync() on the AOF file. 105 | 1:S 15 Apr 2019 21:14:43.743 * Saving the final RDB snapshot before exiting. 106 | 1:S 15 Apr 2019 21:14:43.755 * DB saved on disk 107 | 1:S 15 Apr 2019 21:14:43.761 * Removing the pid file. 108 | 1:S 15 Apr 2019 21:14:43.766 # Redis is now ready to exit, bye bye... 109 | 1:C 15 Apr 2019 21:15:09.548 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 110 | 1:C 15 Apr 2019 21:15:09.550 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 111 | 1:C 15 Apr 2019 21:15:09.553 # Configuration loaded 112 | 1:M 15 Apr 2019 21:15:09.561 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 113 | _._ 114 | _.-``__ ''-._ 115 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 116 | .-`` .-```. ```\/ _.,_ ''-._ 117 | ( ' , .-` | `, ) Running in cluster mode 118 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 119 | | `-._ `._ / _.-' | PID: 1 120 | `-._ `-._ `-./ _.-' _.-' 121 | |`-._`-._ `-.__.-' _.-'_.-'| 122 | | `-._`-._ _.-'_.-' | http://redis.io 123 | `-._ `-._`-.__.-'_.-' _.-' 124 | |`-._`-._ `-.__.-' _.-'_.-'| 125 | | `-._`-._ _.-'_.-' | 126 | `-._ `-._`-.__.-'_.-' _.-' 127 | `-._ `-.__.-' _.-' 128 | `-._ _.-' 129 | `-.__.-' 130 | 131 | 1:M 15 Apr 2019 21:15:09.567 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 132 | 1:M 15 Apr 2019 21:15:09.569 # Server initialized 133 | 1:M 15 Apr 2019 21:15:09.571 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 134 | 1:M 15 Apr 2019 21:15:09.577 * Reading RDB preamble from AOF file... 135 | 1:M 15 Apr 2019 21:15:09.580 * Reading the remaining AOF tail... 136 | 1:M 15 Apr 2019 21:15:09.588 * DB loaded from append only file: 0.012 seconds 137 | 1:M 15 Apr 2019 21:15:09.593 * Ready to accept connections 138 | 1:S 15 Apr 2019 21:15:09.599 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 139 | 1:S 15 Apr 2019 21:15:09.601 # Cluster state changed: ok 140 | 1:S 15 Apr 2019 21:15:10.618 * Connecting to MASTER 172.16.238.12:6379 141 | 1:S 15 Apr 2019 21:15:10.621 * MASTER <-> REPLICA sync started 142 | 1:S 15 Apr 2019 21:15:10.624 * Non blocking connect for SYNC fired the event. 143 | 1:S 15 Apr 2019 21:15:10.626 * Master replied to PING, replication can continue... 144 | 1:S 15 Apr 2019 21:15:10.629 * Trying a partial resynchronization (request 0309cb0a39ff505e4c1764fec95997eacaebe640:1). 145 | 1:S 15 Apr 2019 21:15:10.641 * Full resync from master: e16599e94441eee986a8bf42e96dadd615858804:0 146 | 1:S 15 Apr 2019 21:15:10.643 * Discarding previously cached master state. 147 | 1:S 15 Apr 2019 21:15:10.726 * MASTER <-> REPLICA sync: receiving 175 bytes from master 148 | 1:S 15 Apr 2019 21:15:10.732 * MASTER <-> REPLICA sync: Flushing old data 149 | 1:S 15 Apr 2019 21:15:10.734 * MASTER <-> REPLICA sync: Loading DB in memory 150 | 1:S 15 Apr 2019 21:15:10.738 * MASTER <-> REPLICA sync: Finished with success 151 | 1:S 15 Apr 2019 21:15:10.741 * Background append only file rewriting started by pid 17 152 | 1:S 15 Apr 2019 21:15:10.775 * AOF rewrite child asks to stop sending diffs. 153 | 17:C 15 Apr 2019 21:15:10.778 * Parent agreed to stop sending diffs. Finalizing AOF... 154 | 17:C 15 Apr 2019 21:15:10.780 * Concatenating 0.00 MB of AOF diff received from parent. 155 | 17:C 15 Apr 2019 21:15:10.784 * SYNC append only file rewrite performed 156 | 17:C 15 Apr 2019 21:15:10.786 * AOF rewrite: 0 MB of memory used by copy-on-write 157 | 1:S 15 Apr 2019 21:15:10.827 * Background AOF rewrite terminated with success 158 | 1:S 15 Apr 2019 21:15:10.832 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 159 | 1:S 15 Apr 2019 21:15:10.835 * Background AOF rewrite finished successfully 160 | 1:signal-handler (1555334345) Received SIGTERM scheduling shutdown... 161 | 1:S 15 Apr 2019 21:19:05.613 # User requested shutdown... 162 | 1:S 15 Apr 2019 21:19:05.619 * Calling fsync() on the AOF file. 163 | 1:S 15 Apr 2019 21:19:05.624 * Saving the final RDB snapshot before exiting. 164 | 1:S 15 Apr 2019 21:19:05.639 * DB saved on disk 165 | 1:S 15 Apr 2019 21:19:05.644 * Removing the pid file. 166 | 1:S 15 Apr 2019 21:19:05.650 # Redis is now ready to exit, bye bye... 167 | 1:C 15 Apr 2019 21:19:16.226 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 168 | 1:C 15 Apr 2019 21:19:16.230 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 169 | 1:C 15 Apr 2019 21:19:16.232 # Configuration loaded 170 | 1:M 15 Apr 2019 21:19:16.239 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 171 | _._ 172 | _.-``__ ''-._ 173 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 174 | .-`` .-```. ```\/ _.,_ ''-._ 175 | ( ' , .-` | `, ) Running in cluster mode 176 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 177 | | `-._ `._ / _.-' | PID: 1 178 | `-._ `-._ `-./ _.-' _.-' 179 | |`-._`-._ `-.__.-' _.-'_.-'| 180 | | `-._`-._ _.-'_.-' | http://redis.io 181 | `-._ `-._`-.__.-'_.-' _.-' 182 | |`-._`-._ `-.__.-' _.-'_.-'| 183 | | `-._`-._ _.-'_.-' | 184 | `-._ `-._`-.__.-'_.-' _.-' 185 | `-._ `-.__.-' _.-' 186 | `-._ _.-' 187 | `-.__.-' 188 | 189 | 1:M 15 Apr 2019 21:19:16.243 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 190 | 1:M 15 Apr 2019 21:19:16.245 # Server initialized 191 | 1:M 15 Apr 2019 21:19:16.247 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 192 | 1:M 15 Apr 2019 21:19:16.250 * Reading RDB preamble from AOF file... 193 | 1:M 15 Apr 2019 21:19:16.252 * Reading the remaining AOF tail... 194 | 1:M 15 Apr 2019 21:19:16.254 * DB loaded from append only file: 0.006 seconds 195 | 1:M 15 Apr 2019 21:19:16.255 * Ready to accept connections 196 | 1:S 15 Apr 2019 21:19:16.257 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 197 | 1:S 15 Apr 2019 21:19:16.259 # Cluster state changed: ok 198 | 1:S 15 Apr 2019 21:19:17.276 * Connecting to MASTER 172.16.238.12:6379 199 | 1:S 15 Apr 2019 21:19:17.279 * MASTER <-> REPLICA sync started 200 | 1:S 15 Apr 2019 21:19:17.282 * Non blocking connect for SYNC fired the event. 201 | 1:S 15 Apr 2019 21:19:17.285 * Master replied to PING, replication can continue... 202 | 1:S 15 Apr 2019 21:19:17.289 * Trying a partial resynchronization (request cf3ef7205d88650f5d831f79e9c844942ab73575:1). 203 | 1:S 15 Apr 2019 21:19:17.303 * Full resync from master: 4c30212e112ffb0075d0561f62524f1ad420090f:0 204 | 1:S 15 Apr 2019 21:19:17.306 * Discarding previously cached master state. 205 | 1:S 15 Apr 2019 21:19:17.319 * MASTER <-> REPLICA sync: receiving 175 bytes from master 206 | 1:S 15 Apr 2019 21:19:17.323 * MASTER <-> REPLICA sync: Flushing old data 207 | 1:S 15 Apr 2019 21:19:17.326 * MASTER <-> REPLICA sync: Loading DB in memory 208 | 1:S 15 Apr 2019 21:19:17.331 * MASTER <-> REPLICA sync: Finished with success 209 | 1:S 15 Apr 2019 21:19:17.335 * Background append only file rewriting started by pid 19 210 | 1:S 15 Apr 2019 21:19:17.368 * AOF rewrite child asks to stop sending diffs. 211 | 19:C 15 Apr 2019 21:19:17.371 * Parent agreed to stop sending diffs. Finalizing AOF... 212 | 19:C 15 Apr 2019 21:19:17.373 * Concatenating 0.00 MB of AOF diff received from parent. 213 | 19:C 15 Apr 2019 21:19:17.376 * SYNC append only file rewrite performed 214 | 19:C 15 Apr 2019 21:19:17.378 * AOF rewrite: 0 MB of memory used by copy-on-write 215 | 1:S 15 Apr 2019 21:19:17.383 * Background AOF rewrite terminated with success 216 | 1:S 15 Apr 2019 21:19:17.386 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 217 | 1:S 15 Apr 2019 21:19:17.389 * Background AOF rewrite finished successfully 218 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 219 | 1:S 15 Apr 2019 21:21:49.710 # User requested shutdown... 220 | 1:S 15 Apr 2019 21:21:49.715 * Calling fsync() on the AOF file. 221 | 1:S 15 Apr 2019 21:21:49.718 * Saving the final RDB snapshot before exiting. 222 | 1:S 15 Apr 2019 21:21:49.727 * DB saved on disk 223 | 1:S 15 Apr 2019 21:21:49.730 * Removing the pid file. 224 | 1:S 15 Apr 2019 21:21:49.733 # Redis is now ready to exit, bye bye... 225 | 1:C 15 Apr 2019 21:21:59.450 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 226 | 1:C 15 Apr 2019 21:21:59.452 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 227 | 1:C 15 Apr 2019 21:21:59.453 # Configuration loaded 228 | 1:M 15 Apr 2019 21:21:59.463 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 229 | _._ 230 | _.-``__ ''-._ 231 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 232 | .-`` .-```. ```\/ _.,_ ''-._ 233 | ( ' , .-` | `, ) Running in cluster mode 234 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 235 | | `-._ `._ / _.-' | PID: 1 236 | `-._ `-._ `-./ _.-' _.-' 237 | |`-._`-._ `-.__.-' _.-'_.-'| 238 | | `-._`-._ _.-'_.-' | http://redis.io 239 | `-._ `-._`-.__.-'_.-' _.-' 240 | |`-._`-._ `-.__.-' _.-'_.-'| 241 | | `-._`-._ _.-'_.-' | 242 | `-._ `-._`-.__.-'_.-' _.-' 243 | `-._ `-.__.-' _.-' 244 | `-._ _.-' 245 | `-.__.-' 246 | 247 | 1:M 15 Apr 2019 21:21:59.471 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 248 | 1:M 15 Apr 2019 21:21:59.473 # Server initialized 249 | 1:M 15 Apr 2019 21:21:59.475 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 250 | 1:M 15 Apr 2019 21:21:59.481 * Reading RDB preamble from AOF file... 251 | 1:M 15 Apr 2019 21:21:59.484 * Reading the remaining AOF tail... 252 | 1:M 15 Apr 2019 21:21:59.487 * DB loaded from append only file: 0.010 seconds 253 | 1:M 15 Apr 2019 21:21:59.490 * Ready to accept connections 254 | 1:S 15 Apr 2019 21:21:59.493 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 255 | 1:S 15 Apr 2019 21:21:59.495 # Cluster state changed: ok 256 | 1:S 15 Apr 2019 21:22:00.522 * Connecting to MASTER 172.16.238.12:6379 257 | 1:S 15 Apr 2019 21:22:00.526 * MASTER <-> REPLICA sync started 258 | 1:S 15 Apr 2019 21:22:00.529 * Non blocking connect for SYNC fired the event. 259 | 1:S 15 Apr 2019 21:22:00.531 * Master replied to PING, replication can continue... 260 | 1:S 15 Apr 2019 21:22:00.534 * Trying a partial resynchronization (request 261e2ad09397e52a625c6545d0ae4aba34fd0cc6:1). 261 | 1:S 15 Apr 2019 21:22:00.549 * Full resync from master: e038d502f7ff0ecd849793114d4a1018b7e9d550:0 262 | 1:S 15 Apr 2019 21:22:00.552 * Discarding previously cached master state. 263 | 1:S 15 Apr 2019 21:22:00.619 * MASTER <-> REPLICA sync: receiving 175 bytes from master 264 | 1:S 15 Apr 2019 21:22:00.622 * MASTER <-> REPLICA sync: Flushing old data 265 | 1:S 15 Apr 2019 21:22:00.624 * MASTER <-> REPLICA sync: Loading DB in memory 266 | 1:S 15 Apr 2019 21:22:00.629 * MASTER <-> REPLICA sync: Finished with success 267 | 1:S 15 Apr 2019 21:22:00.632 * Background append only file rewriting started by pid 19 268 | 1:S 15 Apr 2019 21:22:00.666 * AOF rewrite child asks to stop sending diffs. 269 | 19:C 15 Apr 2019 21:22:00.668 * Parent agreed to stop sending diffs. Finalizing AOF... 270 | 19:C 15 Apr 2019 21:22:00.671 * Concatenating 0.00 MB of AOF diff received from parent. 271 | 19:C 15 Apr 2019 21:22:00.675 * SYNC append only file rewrite performed 272 | 19:C 15 Apr 2019 21:22:00.677 * AOF rewrite: 0 MB of memory used by copy-on-write 273 | 1:S 15 Apr 2019 21:22:00.735 * Background AOF rewrite terminated with success 274 | 1:S 15 Apr 2019 21:22:00.738 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 275 | 1:S 15 Apr 2019 21:22:00.742 * Background AOF rewrite finished successfully 276 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 277 | 1:S 15 Apr 2019 21:28:39.466 # User requested shutdown... 278 | 1:S 15 Apr 2019 21:28:39.470 * Calling fsync() on the AOF file. 279 | 1:S 15 Apr 2019 21:28:39.474 * Saving the final RDB snapshot before exiting. 280 | 1:S 15 Apr 2019 21:28:39.482 * DB saved on disk 281 | 1:S 15 Apr 2019 21:28:39.490 * Removing the pid file. 282 | 1:S 15 Apr 2019 21:28:39.495 # Redis is now ready to exit, bye bye... 283 | 1:C 15 Apr 2019 21:29:08.859 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 284 | 1:C 15 Apr 2019 21:29:08.862 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 285 | 1:C 15 Apr 2019 21:29:08.865 # Configuration loaded 286 | 1:M 15 Apr 2019 21:29:08.878 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 287 | _._ 288 | _.-``__ ''-._ 289 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 290 | .-`` .-```. ```\/ _.,_ ''-._ 291 | ( ' , .-` | `, ) Running in cluster mode 292 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 293 | | `-._ `._ / _.-' | PID: 1 294 | `-._ `-._ `-./ _.-' _.-' 295 | |`-._`-._ `-.__.-' _.-'_.-'| 296 | | `-._`-._ _.-'_.-' | http://redis.io 297 | `-._ `-._`-.__.-'_.-' _.-' 298 | |`-._`-._ `-.__.-' _.-'_.-'| 299 | | `-._`-._ _.-'_.-' | 300 | `-._ `-._`-.__.-'_.-' _.-' 301 | `-._ `-.__.-' _.-' 302 | `-._ _.-' 303 | `-.__.-' 304 | 305 | 1:M 15 Apr 2019 21:29:08.883 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 306 | 1:M 15 Apr 2019 21:29:08.885 # Server initialized 307 | 1:M 15 Apr 2019 21:29:08.892 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 308 | 1:M 15 Apr 2019 21:29:08.898 * Reading RDB preamble from AOF file... 309 | 1:M 15 Apr 2019 21:29:08.900 * Reading the remaining AOF tail... 310 | 1:M 15 Apr 2019 21:29:08.904 * DB loaded from append only file: 0.009 seconds 311 | 1:M 15 Apr 2019 21:29:08.905 * Ready to accept connections 312 | 1:S 15 Apr 2019 21:29:08.908 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 313 | 1:S 15 Apr 2019 21:29:08.910 # Cluster state changed: ok 314 | 1:S 15 Apr 2019 21:29:09.920 * Connecting to MASTER 172.16.238.12:6379 315 | 1:S 15 Apr 2019 21:29:09.924 * MASTER <-> REPLICA sync started 316 | 1:S 15 Apr 2019 21:29:09.927 * Non blocking connect for SYNC fired the event. 317 | 1:S 15 Apr 2019 21:29:09.929 * Master replied to PING, replication can continue... 318 | 1:S 15 Apr 2019 21:29:09.932 * Trying a partial resynchronization (request 87ec17418fb576eaa416c44ab58fea82c876315b:1). 319 | 1:S 15 Apr 2019 21:29:09.945 * Full resync from master: 053e96bccbdf99af0d9e1c896dee7d5c4ccd8d35:0 320 | 1:S 15 Apr 2019 21:29:09.947 * Discarding previously cached master state. 321 | 1:S 15 Apr 2019 21:29:09.963 * MASTER <-> REPLICA sync: receiving 175 bytes from master 322 | 1:S 15 Apr 2019 21:29:09.967 * MASTER <-> REPLICA sync: Flushing old data 323 | 1:S 15 Apr 2019 21:29:09.970 * MASTER <-> REPLICA sync: Loading DB in memory 324 | 1:S 15 Apr 2019 21:29:09.974 * MASTER <-> REPLICA sync: Finished with success 325 | 1:S 15 Apr 2019 21:29:09.977 * Background append only file rewriting started by pid 17 326 | 1:S 15 Apr 2019 21:29:10.006 * AOF rewrite child asks to stop sending diffs. 327 | 17:C 15 Apr 2019 21:29:10.008 * Parent agreed to stop sending diffs. Finalizing AOF... 328 | 17:C 15 Apr 2019 21:29:10.010 * Concatenating 0.00 MB of AOF diff received from parent. 329 | 17:C 15 Apr 2019 21:29:10.013 * SYNC append only file rewrite performed 330 | 17:C 15 Apr 2019 21:29:10.016 * AOF rewrite: 0 MB of memory used by copy-on-write 331 | 1:S 15 Apr 2019 21:29:10.028 * Background AOF rewrite terminated with success 332 | 1:S 15 Apr 2019 21:29:10.031 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 333 | 1:S 15 Apr 2019 21:29:10.033 * Background AOF rewrite finished successfully 334 | 1:signal-handler (1555334994) Received SIGTERM scheduling shutdown... 335 | 1:S 15 Apr 2019 21:29:54.079 # User requested shutdown... 336 | 1:S 15 Apr 2019 21:29:54.085 * Calling fsync() on the AOF file. 337 | 1:S 15 Apr 2019 21:29:54.089 * Saving the final RDB snapshot before exiting. 338 | 1:S 15 Apr 2019 21:29:54.098 * DB saved on disk 339 | 1:S 15 Apr 2019 21:29:54.102 * Removing the pid file. 340 | 1:S 15 Apr 2019 21:29:54.106 # Redis is now ready to exit, bye bye... 341 | 1:C 15 Apr 2019 21:30:03.620 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 342 | 1:C 15 Apr 2019 21:30:03.622 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 343 | 1:C 15 Apr 2019 21:30:03.634 # Configuration loaded 344 | 1:M 15 Apr 2019 21:30:03.656 * Node configuration loaded, I'm ebf1e481e566b29699ff35bd2934fd4fb257e8c5 345 | _._ 346 | _.-``__ ''-._ 347 | _.-`` `. `_. ''-._ Redis 5.0.4 (00000000/0) 64 bit 348 | .-`` .-```. ```\/ _.,_ ''-._ 349 | ( ' , .-` | `, ) Running in cluster mode 350 | |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 351 | | `-._ `._ / _.-' | PID: 1 352 | `-._ `-._ `-./ _.-' _.-' 353 | |`-._`-._ `-.__.-' _.-'_.-'| 354 | | `-._`-._ _.-'_.-' | http://redis.io 355 | `-._ `-._`-.__.-'_.-' _.-' 356 | |`-._`-._ `-.__.-' _.-'_.-'| 357 | | `-._`-._ _.-'_.-' | 358 | `-._ `-._`-.__.-'_.-' _.-' 359 | `-._ `-.__.-' _.-' 360 | `-._ _.-' 361 | `-.__.-' 362 | 363 | 1:M 15 Apr 2019 21:30:03.671 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 364 | 1:M 15 Apr 2019 21:30:03.676 # Server initialized 365 | 1:M 15 Apr 2019 21:30:03.680 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. 366 | 1:M 15 Apr 2019 21:30:03.694 * Reading RDB preamble from AOF file... 367 | 1:M 15 Apr 2019 21:30:03.698 * Reading the remaining AOF tail... 368 | 1:M 15 Apr 2019 21:30:03.703 * DB loaded from append only file: 0.019 seconds 369 | 1:M 15 Apr 2019 21:30:03.708 * Ready to accept connections 370 | 1:S 15 Apr 2019 21:30:03.717 * Before turning into a replica, using my master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer. 371 | 1:S 15 Apr 2019 21:30:03.722 # Cluster state changed: ok 372 | 1:S 15 Apr 2019 21:30:04.738 * Connecting to MASTER 172.16.238.12:6379 373 | 1:S 15 Apr 2019 21:30:04.742 * MASTER <-> REPLICA sync started 374 | 1:S 15 Apr 2019 21:30:04.745 * Non blocking connect for SYNC fired the event. 375 | 1:S 15 Apr 2019 21:30:04.748 * Master replied to PING, replication can continue... 376 | 1:S 15 Apr 2019 21:30:04.750 * Trying a partial resynchronization (request 4e3431e17354efd15b72e105b4c4435516745a15:1). 377 | 1:S 15 Apr 2019 21:30:04.764 * Full resync from master: 8c65a047318450de30fefaaaea2ef421bb134eb0:0 378 | 1:S 15 Apr 2019 21:30:04.766 * Discarding previously cached master state. 379 | 1:S 15 Apr 2019 21:30:04.869 * MASTER <-> REPLICA sync: receiving 175 bytes from master 380 | 1:S 15 Apr 2019 21:30:04.873 * MASTER <-> REPLICA sync: Flushing old data 381 | 1:S 15 Apr 2019 21:30:04.875 * MASTER <-> REPLICA sync: Loading DB in memory 382 | 1:S 15 Apr 2019 21:30:04.879 * MASTER <-> REPLICA sync: Finished with success 383 | 1:S 15 Apr 2019 21:30:04.882 * Background append only file rewriting started by pid 17 384 | 1:S 15 Apr 2019 21:30:04.914 * AOF rewrite child asks to stop sending diffs. 385 | 17:C 15 Apr 2019 21:30:04.917 * Parent agreed to stop sending diffs. Finalizing AOF... 386 | 17:C 15 Apr 2019 21:30:04.920 * Concatenating 0.00 MB of AOF diff received from parent. 387 | 17:C 15 Apr 2019 21:30:04.923 * SYNC append only file rewrite performed 388 | 17:C 15 Apr 2019 21:30:04.926 * AOF rewrite: 0 MB of memory used by copy-on-write 389 | 1:S 15 Apr 2019 21:30:04.949 * Background AOF rewrite terminated with success 390 | 1:S 15 Apr 2019 21:30:04.952 * Residual parent diff successfully flushed to the rewritten AOF (0.00 MB) 391 | 1:S 15 Apr 2019 21:30:04.955 * Background AOF rewrite finished successfully 392 | -------------------------------------------------------------------------------- /node-6384/data/redis-6379.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g5niusx/redis-compose-cluster/3773bc32733bd0cf05c5a95e74a82a599ed4c066/node-6384/data/redis-6379.rdb -------------------------------------------------------------------------------- /node-6384/data/sentinel.log: -------------------------------------------------------------------------------- 1 | 1:X 15 Apr 2019 13:19:16.855 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 2 | 1:X 15 Apr 2019 13:19:16.870 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 3 | 1:X 15 Apr 2019 13:19:16.875 # Configuration loaded 4 | 1:X 15 Apr 2019 13:19:16.883 * Running mode=sentinel, port=26379. 5 | 1:X 15 Apr 2019 13:19:16.888 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 6 | 1:X 15 Apr 2019 13:19:16.904 # Sentinel ID is 268d9548efa46d17b7e89a2816bd2fb934531203 7 | 1:X 15 Apr 2019 13:19:16.908 # +monitor master node-5 172.16.238.15 6379 quorum 2 8 | 1:X 15 Apr 2019 13:19:16.916 # +monitor master node-2 172.16.238.12 6379 quorum 2 9 | 1:X 15 Apr 2019 13:19:16.922 # +monitor master node-6 172.16.238.16 6379 quorum 2 10 | 1:X 15 Apr 2019 13:19:16.927 # +monitor master node-4 172.16.238.14 6379 quorum 2 11 | 1:X 15 Apr 2019 13:19:16.932 # +monitor master node-1 172.16.238.11 6379 quorum 2 12 | 1:X 15 Apr 2019 13:19:16.935 # +monitor master node-3 172.16.238.13 6379 quorum 2 13 | 1:X 15 Apr 2019 13:19:26.979 * +slave slave 172.16.238.15:6379 172.16.238.15 6379 @ node-1 172.16.238.11 6379 14 | 1:X 15 Apr 2019 13:20:16.914 # +sdown master node-5 172.16.238.15 6379 15 | 1:X 15 Apr 2019 13:20:16.918 # +sdown master node-2 172.16.238.12 6379 16 | 1:X 15 Apr 2019 13:20:16.921 # +sdown master node-6 172.16.238.16 6379 17 | 1:X 15 Apr 2019 13:20:16.922 # +sdown master node-4 172.16.238.14 6379 18 | 1:X 15 Apr 2019 13:20:16.924 # +sdown master node-3 172.16.238.13 6379 19 | 1:signal-handler (1555334509) Received SIGTERM scheduling shutdown... 20 | 1:X 15 Apr 2019 13:21:49.702 # User requested shutdown... 21 | 1:X 15 Apr 2019 13:21:49.705 # Sentinel is now ready to exit, bye bye... 22 | -------------------------------------------------------------------------------- /sentinel-9001/data/sentinel.log: -------------------------------------------------------------------------------- 1 | 1:signal-handler (1555334919) Received SIGTERM scheduling shutdown... 2 | 1:X 15 Apr 2019 13:28:39.435 # User requested shutdown... 3 | 1:X 15 Apr 2019 13:28:39.439 # Sentinel is now ready to exit, bye bye... 4 | 1:X 15 Apr 2019 13:30:03.671 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 5 | 1:X 15 Apr 2019 13:30:03.675 # Redis version=5.0.4, bits=64, commit=00000000, modified=0, pid=1, just started 6 | 1:X 15 Apr 2019 13:30:03.679 # Configuration loaded 7 | 1:X 15 Apr 2019 13:30:03.688 * Running mode=sentinel, port=26379. 8 | 1:X 15 Apr 2019 13:30:03.692 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. 9 | 1:X 15 Apr 2019 13:30:03.712 # Sentinel ID is 992b1db04a9fb79ae7a8870cd381db8a7e307fcb 10 | 1:X 15 Apr 2019 13:30:03.723 # +monitor master master 172.16.238.11 6379 quorum 2 11 | 1:X 15 Apr 2019 13:30:13.761 * +slave slave 172.16.238.15:6379 172.16.238.15 6379 @ master 172.16.238.11 6379 12 | -------------------------------------------------------------------------------- /sentinel-9001/sentinel.conf: -------------------------------------------------------------------------------- 1 | port 26379 2 | # 日志文件 3 | logfile "/data/sentinel.log" 4 | # 数据目录 5 | dir "/data" 6 | # 监视 master 7 | sentinel myid 992b1db04a9fb79ae7a8870cd381db8a7e307fcb 8 | # 故障转移超时时间 9 | sentinel deny-scripts-reconfig yes 10 | # 在进行故障转移的时候,最多支持多少个从服务器进行同步数据 11 | sentinel monitor master 172.16.238.11 6379 2 12 | sentinel down-after-milliseconds master 60000 13 | # 判定服务器短线的毫秒数 14 | sentinel parallel-syncs master 5 15 | 16 | # Generated by CONFIG REWRITE 17 | sentinel auth-pass master redis 18 | sentinel config-epoch master 0 19 | sentinel leader-epoch master 0 20 | sentinel known-replica master 172.16.238.15 6379 21 | sentinel current-epoch 0 22 | --------------------------------------------------------------------------------