mirror of https://github.com/go-redis/redis.git
Change the testing infra to test against docker
This commit is contained in:
parent
8be51b79c5
commit
be8234df12
|
@ -34,6 +34,7 @@
|
||||||
- "7.4.1"
|
- "7.4.1"
|
||||||
- "7.2.6"
|
- "7.2.6"
|
||||||
- "6.2.16"
|
- "6.2.16"
|
||||||
|
- "8.0-M01"
|
||||||
go_version:
|
go_version:
|
||||||
- "1.19.x"
|
- "1.19.x"
|
||||||
- "1.20.x"
|
- "1.20.x"
|
|
@ -0,0 +1,140 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
services:
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.0-M01}
|
||||||
|
container_name: redis-standalone
|
||||||
|
environment:
|
||||||
|
- TLS_ENABLED=yes
|
||||||
|
- REDIS_CLUSTER=no
|
||||||
|
- PORT=6379
|
||||||
|
- TLS_PORT=6666
|
||||||
|
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --tls-auth-clients optional --save ""}
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
|
- 9123:6379 # Sentinel port
|
||||||
|
- 6666:6666 # TLS port
|
||||||
|
volumes:
|
||||||
|
- "./dockers/standalone:/redis/work"
|
||||||
|
profiles:
|
||||||
|
- standalone
|
||||||
|
- sentinel
|
||||||
|
- replica
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
replica:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-replica
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
command: redis-server --replicaof redis 6379 --protected-mode no --save ""
|
||||||
|
ports:
|
||||||
|
- 6380:6379
|
||||||
|
profiles:
|
||||||
|
- replica
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
cluster:
|
||||||
|
image: ${CLIENT_LIBS_TEST_IMAGE:-redislabs/client-libs-test:8.0-M01}
|
||||||
|
container_name: redis-cluster
|
||||||
|
environment:
|
||||||
|
- REDIS_CLUSTER=yes
|
||||||
|
- NODES=6
|
||||||
|
- REPLICAS=1
|
||||||
|
- TLS_ENABLED=yes
|
||||||
|
- PORT=16379
|
||||||
|
- TLS_PORT=27379
|
||||||
|
command: ${REDIS_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ""}
|
||||||
|
ports:
|
||||||
|
- "16379-16381:16379-16381"
|
||||||
|
volumes:
|
||||||
|
- "./dockers/cluster:/redis/work"
|
||||||
|
profiles:
|
||||||
|
- cluster
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
sentinel:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-sentinel1
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
entrypoint: "redis-sentinel /redis.conf --port 9123"
|
||||||
|
ports:
|
||||||
|
- 9126:9126
|
||||||
|
volumes:
|
||||||
|
- "./dockers/sentinel.conf:/redis.conf"
|
||||||
|
profiles:
|
||||||
|
- sentinel
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
sentinel2:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-sentinel2
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
entrypoint: "redis-sentinel /redis.conf --port 9124"
|
||||||
|
ports:
|
||||||
|
- 9127:9127
|
||||||
|
volumes:
|
||||||
|
- "./dockers/sentinel.conf:/redis.conf"
|
||||||
|
profiles:
|
||||||
|
- sentinel
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
sentinel3:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-sentinel3
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
entrypoint: "redis-sentinel /redis.conf --port 26381"
|
||||||
|
ports:
|
||||||
|
- 9128:9128
|
||||||
|
volumes:
|
||||||
|
- "./dockers/sentinel.conf:/redis.conf"
|
||||||
|
profiles:
|
||||||
|
- sentinel
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
sentinel-slave1:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-sentinel1-slave
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
command: redis-server --slaveof redis 9123 --protected-mode no --save ""
|
||||||
|
ports:
|
||||||
|
- 9124:9123
|
||||||
|
profiles:
|
||||||
|
- sentinel
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
sentinel-slave2:
|
||||||
|
image: ${REDIS_IMAGE:-redis:8.0-M01}
|
||||||
|
container_name: redis-sentinel2-slave
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
command: redis-server --slaveof redis 9123 --protected-mode no --save ""
|
||||||
|
ports:
|
||||||
|
- 9125:9123
|
||||||
|
profiles:
|
||||||
|
- sentinel
|
||||||
|
- all-stack
|
||||||
|
- all
|
||||||
|
|
||||||
|
redis-stack:
|
||||||
|
image: ${REDIS_STACK_IMAGE:-redis/redis-stack-server:edge}
|
||||||
|
container_name: redis-stack
|
||||||
|
ports:
|
||||||
|
- 6349:6379
|
||||||
|
environment:
|
||||||
|
- "REDIS_ARGS=${REDIS_STACK_EXTRA_ARGS:---enable-debug-command yes --enable-module-command yes --save ''}"
|
||||||
|
profiles:
|
||||||
|
- standalone
|
||||||
|
- all-stack
|
|
@ -0,0 +1 @@
|
||||||
|
node-0 node-1 node-2 node-3 node-4 node-5
|
|
@ -0,0 +1,7 @@
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 1734269951169 1734269951128 1 connected
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 1734269951203 2 connected
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 myself,master - 0 0 1 connected 0-5460
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c slave 4759591cd1762d973a5691128c97200deb57762f 1734269951169 1734269951128 3 connected
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c master - 0 1734269951169 3 connected 10923-16383
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 master - 0 1734269951169 2 connected 5461-10922
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16379
|
||||||
|
|
||||||
|
tls-port 27379
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,441 @@
|
||||||
|
43:C 05 Dec 2024 08:52:53.040 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
43:C 05 Dec 2024 08:52:53.042 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
43:C 05 Dec 2024 08:52:53.043 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=43, just started
|
||||||
|
43:C 05 Dec 2024 08:52:53.044 * Configuration loaded
|
||||||
|
43:M 05 Dec 2024 08:52:53.045 * monotonic clock: POSIX clock_gettime
|
||||||
|
43:M 05 Dec 2024 08:52:53.048 * Running mode=cluster, port=16379.
|
||||||
|
43:M 05 Dec 2024 08:52:53.051 * No cluster configuration found, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
43:M 05 Dec 2024 08:52:53.060 * Server initialized
|
||||||
|
43:M 05 Dec 2024 08:52:53.061 * Ready to accept connections tcp
|
||||||
|
43:M 05 Dec 2024 08:52:53.061 * Ready to accept connections tls
|
||||||
|
43:M 05 Dec 2024 08:52:54.166 * configEpoch set to 1 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
43:M 05 Dec 2024 08:52:54.194 * IP address for this node updated to 127.0.0.1
|
||||||
|
43:M 05 Dec 2024 08:52:55.119 * Cluster state changed: ok
|
||||||
|
43:M 05 Dec 2024 08:52:55.193 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 08:52:55.194 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '475a53ff9b1050d016b117c845e53fb646954d92', my replication IDs are '509cbe4a25abcd5c9d07b8bbb2268978bd8e16ab' and '0000000000000000000000000000000000000000')
|
||||||
|
43:M 05 Dec 2024 08:52:55.194 * Replication backlog created, my new replication IDs are '852019fda73091d220899f1a097f6fec8bdd51a2' and '0000000000000000000000000000000000000000'
|
||||||
|
43:M 05 Dec 2024 08:52:55.194 * Delay next BGSAVE for diskless SYNC
|
||||||
|
43:M 05 Dec 2024 08:52:56.036 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is no longer master of shard f38f13b3e7c036f38d10d4992c4602859c2ce8c6; removed all 0 slot(s) it used to own
|
||||||
|
43:M 05 Dec 2024 08:52:56.038 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is now part of shard 8ee145d9d4fab776f3f51de69974dc0377adb434
|
||||||
|
43:M 05 Dec 2024 08:52:57.055 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is no longer master of shard bf74e437af60a0baec0f3046f7708a9e490f7459; removed all 0 slot(s) it used to own
|
||||||
|
43:M 05 Dec 2024 08:52:57.056 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is now part of shard 4554bc07be3de979d00342a6de84369994bb059c
|
||||||
|
43:M 05 Dec 2024 08:52:59.090 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is no longer master of shard 9298d5cf800697ccdb6ed879c2bb68d8d0e99d58; removed all 0 slot(s) it used to own
|
||||||
|
43:M 05 Dec 2024 08:52:59.091 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is now part of shard 78410864729d91b91858e4f921bcd314095cfcc6
|
||||||
|
43:M 05 Dec 2024 08:53:00.217 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
43:M 05 Dec 2024 08:53:00.219 * Background RDB transfer started by pid 268
|
||||||
|
268:C 05 Dec 2024 08:53:00.219 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
43:M 05 Dec 2024 08:53:00.220 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
43:M 05 Dec 2024 08:53:00.225 * Background RDB transfer terminated with success
|
||||||
|
43:M 05 Dec 2024 08:53:00.225 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
43:M 05 Dec 2024 08:53:00.225 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
43:M 05 Dec 2024 10:54:04.660 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 10:54:04.663 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 10:54:04.663 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 9493.
|
||||||
|
43:M 05 Dec 2024 13:52:40.534 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 05 Dec 2024 13:52:40.537 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 13:52:40.543 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 13:52:40.543 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 14183.
|
||||||
|
43:M 05 Dec 2024 15:54:50.063 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 05 Dec 2024 15:54:50.064 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 15:54:50.068 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 15:54:50.068 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 14 bytes of backlog starting from offset 14211.
|
||||||
|
43:M 05 Dec 2024 17:56:40.952 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 05 Dec 2024 17:56:40.954 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 17:56:40.960 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 17:56:40.961 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 14253.
|
||||||
|
43:M 05 Dec 2024 18:09:24.077 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 05 Dec 2024 18:09:24.077 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 18:09:24.080 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 18:09:24.080 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 14295.
|
||||||
|
43:M 05 Dec 2024 22:02:39.755 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 05 Dec 2024 22:02:39.756 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 05 Dec 2024 22:02:39.762 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 05 Dec 2024 22:02:39.763 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19321.
|
||||||
|
43:M 06 Dec 2024 00:04:43.087 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 06 Dec 2024 00:04:43.089 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 00:04:43.097 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 00:04:43.097 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19363.
|
||||||
|
43:M 06 Dec 2024 04:08:35.828 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 04:08:35.830 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 04:08:35.830 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19405.
|
||||||
|
43:M 06 Dec 2024 06:10:40.121 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 06:10:40.124 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 06:10:40.124 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19447.
|
||||||
|
43:M 06 Dec 2024 09:13:44.833 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 09:13:44.837 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 09:13:44.837 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19489.
|
||||||
|
43:M 06 Dec 2024 12:16:43.049 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 12:16:43.052 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 12:16:43.053 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19517.
|
||||||
|
43:M 06 Dec 2024 14:18:40.482 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 06 Dec 2024 14:18:40.483 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 14:18:40.489 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 14:18:40.489 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19559.
|
||||||
|
43:M 06 Dec 2024 17:21:38.382 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 17:21:38.385 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 17:21:38.385 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19601.
|
||||||
|
43:M 06 Dec 2024 18:22:40.471 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 18:22:40.474 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 18:22:40.474 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19643.
|
||||||
|
43:M 06 Dec 2024 21:25:35.791 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 21:25:35.796 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 21:25:35.796 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19671.
|
||||||
|
43:M 06 Dec 2024 22:26:41.886 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 06 Dec 2024 22:26:41.889 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 06 Dec 2024 22:26:41.889 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19713.
|
||||||
|
43:M 07 Dec 2024 01:29:37.440 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 01:29:37.442 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 01:29:37.442 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19755.
|
||||||
|
43:M 07 Dec 2024 04:32:40.184 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 04:32:40.187 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 04:32:40.188 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19797.
|
||||||
|
43:M 07 Dec 2024 07:35:35.729 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 07 Dec 2024 07:35:35.730 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 07:35:35.735 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 07:35:35.735 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19839.
|
||||||
|
43:M 07 Dec 2024 09:37:47.822 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 07 Dec 2024 09:37:47.823 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 09:37:47.829 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 09:37:47.829 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19867.
|
||||||
|
43:M 07 Dec 2024 12:40:38.376 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 12:40:38.380 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 12:40:38.382 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19909.
|
||||||
|
43:M 07 Dec 2024 14:42:36.720 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 14:42:36.723 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 14:42:36.723 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19951.
|
||||||
|
43:M 07 Dec 2024 16:44:45.052 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 07 Dec 2024 16:44:45.053 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 16:44:45.058 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 16:44:45.058 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 19993.
|
||||||
|
43:M 07 Dec 2024 19:47:46.353 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 07 Dec 2024 19:47:46.354 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 19:47:46.358 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 19:47:46.358 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 14 bytes of backlog starting from offset 20021.
|
||||||
|
43:M 07 Dec 2024 22:20:19.691 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 07 Dec 2024 22:20:19.695 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 07 Dec 2024 22:20:19.695 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20063.
|
||||||
|
43:M 08 Dec 2024 00:52:42.179 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 00:52:42.182 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 00:52:42.183 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20105.
|
||||||
|
43:M 08 Dec 2024 02:54:50.607 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 02:54:50.611 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 02:54:50.611 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20147.
|
||||||
|
43:M 08 Dec 2024 05:57:36.721 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 05:57:36.723 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 05:57:36.724 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20189.
|
||||||
|
43:M 08 Dec 2024 06:58:42.770 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 06:58:42.774 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 06:58:42.775 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20217.
|
||||||
|
43:M 08 Dec 2024 10:01:42.331 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 10:01:42.334 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 10:01:42.335 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20259.
|
||||||
|
43:M 08 Dec 2024 10:43:04.235 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 08 Dec 2024 10:43:04.235 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 08 Dec 2024 10:43:04.236 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 08 Dec 2024 10:43:04.237 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 20301.
|
||||||
|
43:M 09 Dec 2024 08:51:08.771 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 08:51:08.954 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 08:51:09.282 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 08:51:09.287 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 60845.
|
||||||
|
43:M 09 Dec 2024 11:19:14.145 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 11:19:14.148 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 11:19:14.149 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 72689.
|
||||||
|
43:M 09 Dec 2024 11:20:41.334 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 11:20:41.337 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 11:20:41.337 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 72731.
|
||||||
|
43:M 09 Dec 2024 13:18:55.018 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 13:18:55.019 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 13:18:55.025 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 13:18:55.025 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 72815.
|
||||||
|
43:M 09 Dec 2024 13:25:09.767 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 13:25:09.771 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 13:25:09.771 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 72843.
|
||||||
|
43:M 09 Dec 2024 14:25:30.874 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 14:25:30.880 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 14:25:30.881 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76735.
|
||||||
|
43:M 09 Dec 2024 14:31:59.070 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 14:31:59.071 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 14:31:59.078 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 14:31:59.079 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76777.
|
||||||
|
43:M 09 Dec 2024 14:33:54.110 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 14:33:54.112 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 14:33:54.120 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 14:33:54.120 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76819.
|
||||||
|
43:M 09 Dec 2024 15:26:24.862 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 15:26:24.863 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 15:26:24.868 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 15:26:24.868 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76847.
|
||||||
|
43:M 09 Dec 2024 16:28:34.958 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 16:28:34.961 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 16:28:34.961 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76889.
|
||||||
|
43:M 09 Dec 2024 16:31:14.695 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 16:31:14.696 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 16:31:14.701 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 16:31:14.701 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76931.
|
||||||
|
43:M 09 Dec 2024 16:33:25.819 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 16:33:25.827 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 16:33:25.838 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 16:33:25.839 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 76973.
|
||||||
|
43:M 09 Dec 2024 16:35:42.578 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 16:35:42.580 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 16:35:42.586 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 16:35:42.587 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77015.
|
||||||
|
43:M 09 Dec 2024 16:39:42.052 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 16:39:42.053 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 16:39:42.057 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 16:39:42.057 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77043.
|
||||||
|
43:M 09 Dec 2024 17:24:49.595 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 17:24:49.596 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 17:24:49.599 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 17:24:49.600 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77085.
|
||||||
|
43:M 09 Dec 2024 18:23:36.099 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 18:23:36.101 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 18:23:36.106 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 18:23:36.106 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77127.
|
||||||
|
43:M 09 Dec 2024 18:25:27.244 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 18:25:27.244 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 18:25:27.248 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 18:25:27.249 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77169.
|
||||||
|
43:M 09 Dec 2024 20:27:25.782 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 20:27:25.783 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 20:27:25.791 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 20:27:25.792 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77211.
|
||||||
|
43:M 09 Dec 2024 22:29:37.853 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 09 Dec 2024 22:29:37.853 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 09 Dec 2024 22:29:37.856 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 09 Dec 2024 22:29:37.856 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77239.
|
||||||
|
43:M 10 Dec 2024 00:31:38.340 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 00:31:38.343 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 00:31:38.344 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77281.
|
||||||
|
43:M 10 Dec 2024 03:34:23.952 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 03:34:23.955 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 03:34:23.955 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77323.
|
||||||
|
43:M 10 Dec 2024 05:36:37.224 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 10 Dec 2024 05:36:37.225 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 05:36:37.232 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 05:36:37.232 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77365.
|
||||||
|
43:M 10 Dec 2024 07:57:06.911 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 10 Dec 2024 07:57:06.915 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 07:57:06.920 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 07:57:06.921 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 14 bytes of backlog starting from offset 77393.
|
||||||
|
43:M 10 Dec 2024 08:22:15.981 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 10 Dec 2024 08:22:15.982 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 08:22:15.986 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 08:22:15.986 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 77435.
|
||||||
|
43:M 10 Dec 2024 11:44:54.286 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 11:44:54.290 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 11:44:54.290 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 93633.
|
||||||
|
43:M 10 Dec 2024 12:01:11.903 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 10 Dec 2024 12:01:11.904 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 10 Dec 2024 12:01:11.908 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 10 Dec 2024 12:01:11.909 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 93717.
|
||||||
|
43:M 11 Dec 2024 16:23:34.622 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 16:23:34.626 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 16:23:34.627 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 228775.
|
||||||
|
43:M 11 Dec 2024 16:36:12.953 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 16:36:12.957 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 16:36:12.957 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 228803.
|
||||||
|
43:M 11 Dec 2024 16:38:28.150 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 16:38:28.153 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 16:38:28.154 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 228845.
|
||||||
|
43:M 11 Dec 2024 16:53:05.568 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 11 Dec 2024 16:53:05.569 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 16:53:05.575 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 16:53:05.576 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 229573.
|
||||||
|
43:M 11 Dec 2024 20:00:57.931 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 20:00:57.935 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 20:00:57.935 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244595.
|
||||||
|
43:M 11 Dec 2024 21:00:31.601 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 11 Dec 2024 21:00:31.605 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 11 Dec 2024 21:00:31.605 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244637.
|
||||||
|
43:M 12 Dec 2024 00:01:46.337 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 12 Dec 2024 00:01:46.340 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 12 Dec 2024 00:01:46.341 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244679.
|
||||||
|
43:M 12 Dec 2024 02:35:21.026 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 12 Dec 2024 02:35:21.027 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 12 Dec 2024 02:35:21.035 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 12 Dec 2024 02:35:21.035 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244721.
|
||||||
|
43:M 12 Dec 2024 06:07:37.479 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 12 Dec 2024 06:07:37.481 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 12 Dec 2024 06:07:37.486 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 12 Dec 2024 06:07:37.487 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244763.
|
||||||
|
43:M 12 Dec 2024 09:10:39.442 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 12 Dec 2024 09:10:39.444 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 12 Dec 2024 09:10:39.450 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 12 Dec 2024 09:10:39.450 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244791.
|
||||||
|
43:M 12 Dec 2024 09:24:18.295 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 12 Dec 2024 09:24:18.298 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 12 Dec 2024 09:24:18.302 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 12 Dec 2024 09:24:18.302 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 244833.
|
||||||
|
43:M 15 Dec 2024 08:15:47.010 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16384
|
||||||
|
43:M 15 Dec 2024 08:15:47.088 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 15 Dec 2024 08:15:47.557 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 15 Dec 2024 08:15:47.578 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 292405.
|
||||||
|
43:M 15 Dec 2024 11:09:22.923 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 15 Dec 2024 11:09:22.924 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 15 Dec 2024 11:09:22.924 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 303451.
|
||||||
|
43:M 15 Dec 2024 11:24:03.815 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
43:M 15 Dec 2024 11:24:03.817 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
43:M 15 Dec 2024 11:24:03.818 * Partial resynchronization request from 127.0.0.1:16384 accepted. Sending 0 bytes of backlog starting from offset 304543.
|
||||||
|
43:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
43:M 15 Dec 2024 11:47:34.859 * User requested shutdown...
|
||||||
|
43:M 15 Dec 2024 11:47:34.860 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
43:M 15 Dec 2024 11:47:34.861 * Removing the pid file.
|
||||||
|
43:M 15 Dec 2024 11:47:34.864 # Redis is now ready to exit, bye bye...
|
||||||
|
27:C 15 Dec 2024 11:49:55.873 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
27:C 15 Dec 2024 11:49:55.878 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
27:C 15 Dec 2024 11:49:55.880 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=27, just started
|
||||||
|
27:C 15 Dec 2024 11:49:55.882 * Configuration loaded
|
||||||
|
27:M 15 Dec 2024 11:49:55.884 * monotonic clock: POSIX clock_gettime
|
||||||
|
27:M 15 Dec 2024 11:49:55.898 * Running mode=cluster, port=16379.
|
||||||
|
27:M 15 Dec 2024 11:49:55.928 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
27:M 15 Dec 2024 11:49:55.958 * Server initialized
|
||||||
|
27:M 15 Dec 2024 11:49:55.966 * Ready to accept connections tcp
|
||||||
|
27:M 15 Dec 2024 11:49:55.971 * Ready to accept connections tls
|
||||||
|
27:M 15 Dec 2024 11:49:56.060 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
27:M 15 Dec 2024 11:49:56.062 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '852019fda73091d220899f1a097f6fec8bdd51a2', my replication IDs are 'de5e80480305350006e40455d9ebdc13b6690b1d' and '0000000000000000000000000000000000000000')
|
||||||
|
27:M 15 Dec 2024 11:49:56.064 * Replication backlog created, my new replication IDs are 'a0c35454ce7eb23be0bc04eb902ef10f7887220c' and '0000000000000000000000000000000000000000'
|
||||||
|
27:M 15 Dec 2024 11:49:56.066 * Delay next BGSAVE for diskless SYNC
|
||||||
|
27:M 15 Dec 2024 11:49:58.020 * Cluster state changed: ok
|
||||||
|
27:M 15 Dec 2024 11:50:01.137 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
27:M 15 Dec 2024 11:50:01.140 * Background RDB transfer started by pid 238
|
||||||
|
238:C 15 Dec 2024 11:50:01.140 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
27:M 15 Dec 2024 11:50:01.142 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
27:M 15 Dec 2024 11:50:01.152 * Background RDB transfer terminated with success
|
||||||
|
27:M 15 Dec 2024 11:50:01.152 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
27:M 15 Dec 2024 11:50:01.153 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
27:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
27:M 15 Dec 2024 11:51:28.923 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
27:M 15 Dec 2024 11:51:28.935 * User requested shutdown...
|
||||||
|
27:M 15 Dec 2024 11:51:28.936 * Removing the pid file.
|
||||||
|
27:M 15 Dec 2024 11:51:28.938 # Redis is now ready to exit, bye bye...
|
||||||
|
28:C 15 Dec 2024 11:52:09.088 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
28:C 15 Dec 2024 11:52:09.092 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
28:C 15 Dec 2024 11:52:09.093 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=28, just started
|
||||||
|
28:C 15 Dec 2024 11:52:09.094 * Configuration loaded
|
||||||
|
28:M 15 Dec 2024 11:52:09.097 * monotonic clock: POSIX clock_gettime
|
||||||
|
28:M 15 Dec 2024 11:52:09.104 * Running mode=cluster, port=16379.
|
||||||
|
28:M 15 Dec 2024 11:52:09.166 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
28:M 15 Dec 2024 11:52:09.179 * Server initialized
|
||||||
|
28:M 15 Dec 2024 11:52:09.181 * Ready to accept connections tcp
|
||||||
|
28:M 15 Dec 2024 11:52:09.182 * Ready to accept connections tls
|
||||||
|
28:M 15 Dec 2024 11:52:09.219 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
28:M 15 Dec 2024 11:52:09.220 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'a0c35454ce7eb23be0bc04eb902ef10f7887220c', my replication IDs are '6178a7a8f7a59442fc6b2acbf684740844a06139' and '0000000000000000000000000000000000000000')
|
||||||
|
28:M 15 Dec 2024 11:52:09.220 * Replication backlog created, my new replication IDs are 'a9da8a191d5087229a79da94cda78736443f476d' and '0000000000000000000000000000000000000000'
|
||||||
|
28:M 15 Dec 2024 11:52:09.221 * Delay next BGSAVE for diskless SYNC
|
||||||
|
28:M 15 Dec 2024 11:52:11.238 * Cluster state changed: ok
|
||||||
|
28:M 15 Dec 2024 11:52:14.384 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
28:M 15 Dec 2024 11:52:14.387 * Background RDB transfer started by pid 239
|
||||||
|
239:C 15 Dec 2024 11:52:14.388 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
28:M 15 Dec 2024 11:52:14.391 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
28:M 15 Dec 2024 11:52:14.404 * Background RDB transfer terminated with success
|
||||||
|
28:M 15 Dec 2024 11:52:14.405 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
28:M 15 Dec 2024 11:52:14.406 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
28:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
28:M 15 Dec 2024 13:10:27.910 * User requested shutdown...
|
||||||
|
28:M 15 Dec 2024 13:10:27.910 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
28:M 15 Dec 2024 13:10:27.911 * Removing the pid file.
|
||||||
|
28:M 15 Dec 2024 13:10:27.913 # Redis is now ready to exit, bye bye...
|
||||||
|
28:C 15 Dec 2024 13:13:28.220 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
28:C 15 Dec 2024 13:13:28.222 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
28:C 15 Dec 2024 13:13:28.223 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=28, just started
|
||||||
|
28:C 15 Dec 2024 13:13:28.225 * Configuration loaded
|
||||||
|
28:M 15 Dec 2024 13:13:28.228 * monotonic clock: POSIX clock_gettime
|
||||||
|
28:M 15 Dec 2024 13:13:28.234 * Running mode=cluster, port=16379.
|
||||||
|
28:M 15 Dec 2024 13:13:28.245 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
28:M 15 Dec 2024 13:13:28.264 * Server initialized
|
||||||
|
28:M 15 Dec 2024 13:13:28.267 * Ready to accept connections tcp
|
||||||
|
28:M 15 Dec 2024 13:13:28.269 * Ready to accept connections tls
|
||||||
|
28:M 15 Dec 2024 13:13:28.369 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
28:M 15 Dec 2024 13:13:28.372 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'a9da8a191d5087229a79da94cda78736443f476d', my replication IDs are 'cd594f661eb8f7037a23fb5e14b714dc2152b6ba' and '0000000000000000000000000000000000000000')
|
||||||
|
28:M 15 Dec 2024 13:13:28.377 * Replication backlog created, my new replication IDs are '1eb61977880f8a02dd803b64f567fd89265f2147' and '0000000000000000000000000000000000000000'
|
||||||
|
28:M 15 Dec 2024 13:13:28.378 * Delay next BGSAVE for diskless SYNC
|
||||||
|
28:M 15 Dec 2024 13:13:30.334 * Cluster state changed: ok
|
||||||
|
28:M 15 Dec 2024 13:13:33.420 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
28:M 15 Dec 2024 13:13:33.424 * Background RDB transfer started by pid 232
|
||||||
|
232:C 15 Dec 2024 13:13:33.424 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
28:M 15 Dec 2024 13:13:33.427 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
28:M 15 Dec 2024 13:13:33.439 * Background RDB transfer terminated with success
|
||||||
|
28:M 15 Dec 2024 13:13:33.440 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
28:M 15 Dec 2024 13:13:33.441 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
28:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
28:M 15 Dec 2024 13:30:14.559 * Connection with replica 127.0.0.1:16384 lost.
|
||||||
|
28:M 15 Dec 2024 13:30:14.582 * User requested shutdown...
|
||||||
|
28:M 15 Dec 2024 13:30:14.583 * Removing the pid file.
|
||||||
|
28:M 15 Dec 2024 13:30:14.584 # Redis is now ready to exit, bye bye...
|
||||||
|
28:C 15 Dec 2024 13:30:30.715 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
28:C 15 Dec 2024 13:30:30.717 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
28:C 15 Dec 2024 13:30:30.719 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=28, just started
|
||||||
|
28:C 15 Dec 2024 13:30:30.721 * Configuration loaded
|
||||||
|
28:M 15 Dec 2024 13:30:30.724 * monotonic clock: POSIX clock_gettime
|
||||||
|
28:M 15 Dec 2024 13:30:30.732 * Running mode=cluster, port=16379.
|
||||||
|
28:M 15 Dec 2024 13:30:30.744 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
28:M 15 Dec 2024 13:30:30.763 * Server initialized
|
||||||
|
28:M 15 Dec 2024 13:30:30.770 * Ready to accept connections tcp
|
||||||
|
28:M 15 Dec 2024 13:30:30.773 * Ready to accept connections tls
|
||||||
|
28:M 15 Dec 2024 13:30:30.846 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
28:M 15 Dec 2024 13:30:30.849 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '1eb61977880f8a02dd803b64f567fd89265f2147', my replication IDs are '1234f3978034326a0b8fb66d445d63ef261b027d' and '0000000000000000000000000000000000000000')
|
||||||
|
28:M 15 Dec 2024 13:30:30.850 * Replication backlog created, my new replication IDs are '5ce586d5064369cac1806b5289cce0d21a9616ed' and '0000000000000000000000000000000000000000'
|
||||||
|
28:M 15 Dec 2024 13:30:30.854 * Delay next BGSAVE for diskless SYNC
|
||||||
|
28:M 15 Dec 2024 13:30:32.830 * Cluster state changed: ok
|
||||||
|
28:M 15 Dec 2024 13:30:35.913 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
28:M 15 Dec 2024 13:30:35.915 * Background RDB transfer started by pid 231
|
||||||
|
231:C 15 Dec 2024 13:30:35.917 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
28:M 15 Dec 2024 13:30:35.919 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
28:M 15 Dec 2024 13:30:35.927 * Background RDB transfer terminated with success
|
||||||
|
28:M 15 Dec 2024 13:30:35.927 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
28:M 15 Dec 2024 13:30:35.927 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
28:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
28:M 15 Dec 2024 13:36:35.437 * User requested shutdown...
|
||||||
|
28:M 15 Dec 2024 13:36:35.440 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
28:M 15 Dec 2024 13:36:35.441 * Removing the pid file.
|
||||||
|
28:M 15 Dec 2024 13:36:35.444 # Redis is now ready to exit, bye bye...
|
||||||
|
28:C 15 Dec 2024 13:37:03.394 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
28:C 15 Dec 2024 13:37:03.398 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
28:C 15 Dec 2024 13:37:03.400 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=28, just started
|
||||||
|
28:C 15 Dec 2024 13:37:03.403 * Configuration loaded
|
||||||
|
28:M 15 Dec 2024 13:37:03.407 * monotonic clock: POSIX clock_gettime
|
||||||
|
28:M 15 Dec 2024 13:37:03.421 * Running mode=cluster, port=16379.
|
||||||
|
28:M 15 Dec 2024 13:37:03.431 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
28:M 15 Dec 2024 13:37:03.455 * Server initialized
|
||||||
|
28:M 15 Dec 2024 13:37:03.459 * Ready to accept connections tcp
|
||||||
|
28:M 15 Dec 2024 13:37:03.460 * Ready to accept connections tls
|
||||||
|
28:M 15 Dec 2024 13:37:03.526 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
28:M 15 Dec 2024 13:37:03.528 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '5ce586d5064369cac1806b5289cce0d21a9616ed', my replication IDs are 'c6de99bccb57e86c92de17c7368f71241d69cf0c' and '0000000000000000000000000000000000000000')
|
||||||
|
28:M 15 Dec 2024 13:37:03.528 * Replication backlog created, my new replication IDs are '123337652bfe383fdf6accb304f63a8ec6e19d7e' and '0000000000000000000000000000000000000000'
|
||||||
|
28:M 15 Dec 2024 13:37:03.529 * Delay next BGSAVE for diskless SYNC
|
||||||
|
28:M 15 Dec 2024 13:37:05.500 * Cluster state changed: ok
|
||||||
|
28:M 15 Dec 2024 13:37:08.623 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
28:M 15 Dec 2024 13:37:08.626 * Background RDB transfer started by pid 231
|
||||||
|
231:C 15 Dec 2024 13:37:08.628 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
28:M 15 Dec 2024 13:37:08.630 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
28:M 15 Dec 2024 13:37:08.645 * Background RDB transfer terminated with success
|
||||||
|
28:M 15 Dec 2024 13:37:08.647 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
28:M 15 Dec 2024 13:37:08.648 * Synchronization with replica 127.0.0.1:16384 succeeded
|
||||||
|
28:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
28:M 15 Dec 2024 13:39:04.664 * User requested shutdown...
|
||||||
|
28:M 15 Dec 2024 13:39:04.665 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
28:M 15 Dec 2024 13:39:04.667 * Removing the pid file.
|
||||||
|
28:M 15 Dec 2024 13:39:04.669 # Redis is now ready to exit, bye bye...
|
||||||
|
28:C 15 Dec 2024 13:39:11.099 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
28:C 15 Dec 2024 13:39:11.102 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
28:C 15 Dec 2024 13:39:11.106 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=28, just started
|
||||||
|
28:C 15 Dec 2024 13:39:11.109 * Configuration loaded
|
||||||
|
28:M 15 Dec 2024 13:39:11.112 * monotonic clock: POSIX clock_gettime
|
||||||
|
28:M 15 Dec 2024 13:39:11.123 * Running mode=cluster, port=16379.
|
||||||
|
28:M 15 Dec 2024 13:39:11.131 * Node configuration loaded, I'm 3a1250b30cc37fca6db12b82fdefcbf615dec08f
|
||||||
|
28:M 15 Dec 2024 13:39:11.158 * Server initialized
|
||||||
|
28:M 15 Dec 2024 13:39:11.161 * Ready to accept connections tcp
|
||||||
|
28:M 15 Dec 2024 13:39:11.163 * Ready to accept connections tls
|
||||||
|
28:M 15 Dec 2024 13:39:11.226 * Replica 127.0.0.1:16384 asks for synchronization
|
||||||
|
28:M 15 Dec 2024 13:39:11.227 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '123337652bfe383fdf6accb304f63a8ec6e19d7e', my replication IDs are 'cf0083543094543c5df9ec0cd139ef3ca8ce9017' and '0000000000000000000000000000000000000000')
|
||||||
|
28:M 15 Dec 2024 13:39:11.228 * Replication backlog created, my new replication IDs are 'a48e35bf7dec518913cc372e97cafbcccb2abfd5' and '0000000000000000000000000000000000000000'
|
||||||
|
28:M 15 Dec 2024 13:39:11.230 * Delay next BGSAVE for diskless SYNC
|
||||||
|
28:M 15 Dec 2024 13:39:13.197 * Cluster state changed: ok
|
||||||
|
28:M 15 Dec 2024 13:39:16.282 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
28:M 15 Dec 2024 13:39:16.287 * Background RDB transfer started by pid 238
|
||||||
|
238:C 15 Dec 2024 13:39:16.287 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
28:M 15 Dec 2024 13:39:16.290 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
28:M 15 Dec 2024 13:39:16.310 * Background RDB transfer terminated with success
|
||||||
|
28:M 15 Dec 2024 13:39:16.311 * Streamed RDB transfer with replica 127.0.0.1:16384 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
28:M 15 Dec 2024 13:39:16.312 * Synchronization with replica 127.0.0.1:16384 succeeded
|
|
@ -0,0 +1 @@
|
||||||
|
28
|
|
@ -0,0 +1,7 @@
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c master - 0 1734269951164 3 connected 10923-16383
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 1734269951158 1734269951129 1 connected
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c slave 4759591cd1762d973a5691128c97200deb57762f 1734269951158 1734269951129 3 connected
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 master - 0 1734269951169 1 connected 0-5460
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 1734269951201 2 connected
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 myself,master - 0 0 2 connected 5461-10922
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16380
|
||||||
|
|
||||||
|
tls-port 27380
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,442 @@
|
||||||
|
45:C 05 Dec 2024 08:52:53.040 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
45:C 05 Dec 2024 08:52:53.042 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
45:C 05 Dec 2024 08:52:53.043 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=45, just started
|
||||||
|
45:C 05 Dec 2024 08:52:53.044 * Configuration loaded
|
||||||
|
45:M 05 Dec 2024 08:52:53.045 * monotonic clock: POSIX clock_gettime
|
||||||
|
45:M 05 Dec 2024 08:52:53.048 * Running mode=cluster, port=16380.
|
||||||
|
45:M 05 Dec 2024 08:52:53.050 * No cluster configuration found, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
45:M 05 Dec 2024 08:52:53.060 * Server initialized
|
||||||
|
45:M 05 Dec 2024 08:52:53.060 * Ready to accept connections tcp
|
||||||
|
45:M 05 Dec 2024 08:52:53.061 * Ready to accept connections tls
|
||||||
|
45:M 05 Dec 2024 08:52:54.167 * configEpoch set to 2 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
45:M 05 Dec 2024 08:52:54.298 * IP address for this node updated to 127.0.0.1
|
||||||
|
45:M 05 Dec 2024 08:52:54.299 * Address updated for node 3a1250b30cc37fca6db12b82fdefcbf615dec08f (), now 127.0.0.1:16379
|
||||||
|
45:M 05 Dec 2024 08:52:55.126 * Cluster state changed: ok
|
||||||
|
45:M 05 Dec 2024 08:52:55.184 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 08:52:55.185 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '50c5cc8b824c5345352c7475f534dbeafb0c83e9', my replication IDs are 'b25fdd1812bf92cd4477bb76571369007e95b258' and '0000000000000000000000000000000000000000')
|
||||||
|
45:M 05 Dec 2024 08:52:55.186 * Replication backlog created, my new replication IDs are '4c4b71f970ac144c4fb9694d5c05f63c7ce855a7' and '0000000000000000000000000000000000000000'
|
||||||
|
45:M 05 Dec 2024 08:52:55.187 * Delay next BGSAVE for diskless SYNC
|
||||||
|
45:M 05 Dec 2024 08:52:56.035 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is no longer master of shard bf74e437af60a0baec0f3046f7708a9e490f7459; removed all 0 slot(s) it used to own
|
||||||
|
45:M 05 Dec 2024 08:52:56.037 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is now part of shard 4554bc07be3de979d00342a6de84369994bb059c
|
||||||
|
45:M 05 Dec 2024 08:52:57.094 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is no longer master of shard 9298d5cf800697ccdb6ed879c2bb68d8d0e99d58; removed all 0 slot(s) it used to own
|
||||||
|
45:M 05 Dec 2024 08:52:57.094 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is now part of shard 78410864729d91b91858e4f921bcd314095cfcc6
|
||||||
|
45:M 05 Dec 2024 08:52:58.107 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is no longer master of shard f38f13b3e7c036f38d10d4992c4602859c2ce8c6; removed all 0 slot(s) it used to own
|
||||||
|
45:M 05 Dec 2024 08:52:58.108 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is now part of shard 8ee145d9d4fab776f3f51de69974dc0377adb434
|
||||||
|
45:M 05 Dec 2024 08:53:00.282 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
45:M 05 Dec 2024 08:53:00.283 * Background RDB transfer started by pid 269
|
||||||
|
269:C 05 Dec 2024 08:53:00.283 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
45:M 05 Dec 2024 08:53:00.284 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
45:M 05 Dec 2024 08:53:00.287 * Background RDB transfer terminated with success
|
||||||
|
45:M 05 Dec 2024 08:53:00.287 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
45:M 05 Dec 2024 08:53:00.287 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
45:M 05 Dec 2024 10:54:05.070 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 05 Dec 2024 10:54:05.073 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 10:54:05.080 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 10:54:05.080 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 9493.
|
||||||
|
45:M 05 Dec 2024 13:52:40.967 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 05 Dec 2024 13:52:40.969 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 13:52:40.977 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 13:52:40.978 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 14183.
|
||||||
|
45:M 05 Dec 2024 15:54:50.580 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 05 Dec 2024 15:54:50.580 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 15:54:50.583 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 15:54:50.583 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 14225.
|
||||||
|
45:M 05 Dec 2024 17:56:41.684 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 05 Dec 2024 17:56:41.685 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 17:56:41.691 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 17:56:41.692 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 14 bytes of backlog starting from offset 14253.
|
||||||
|
45:M 05 Dec 2024 18:09:23.678 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 05 Dec 2024 18:09:23.679 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 18:09:23.685 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 18:09:23.685 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 14295.
|
||||||
|
45:M 05 Dec 2024 22:02:40.218 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 05 Dec 2024 22:02:40.221 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 05 Dec 2024 22:02:40.222 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19335.
|
||||||
|
45:M 06 Dec 2024 00:04:43.540 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 00:04:43.544 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 00:04:43.544 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19363.
|
||||||
|
45:M 06 Dec 2024 04:08:36.586 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 04:08:36.589 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 04:08:36.590 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19405.
|
||||||
|
45:M 06 Dec 2024 06:10:39.753 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 06 Dec 2024 06:10:39.755 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 06:10:39.762 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 06:10:39.762 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19447.
|
||||||
|
45:M 06 Dec 2024 09:13:44.523 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 06 Dec 2024 09:13:44.525 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 09:13:44.531 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 09:13:44.531 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19489.
|
||||||
|
45:M 06 Dec 2024 12:16:42.585 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 12:16:42.590 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 12:16:42.590 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19517.
|
||||||
|
45:M 06 Dec 2024 14:18:40.271 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 06 Dec 2024 14:18:40.273 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 14:18:40.280 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 14:18:40.280 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19559.
|
||||||
|
45:M 06 Dec 2024 17:21:39.095 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 06 Dec 2024 17:21:39.096 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 17:21:39.099 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 17:21:39.100 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19601.
|
||||||
|
45:M 06 Dec 2024 18:22:40.155 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 18:22:40.156 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 18:22:40.157 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19643.
|
||||||
|
45:M 06 Dec 2024 21:25:36.656 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 21:25:36.659 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 21:25:36.660 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19685.
|
||||||
|
45:M 06 Dec 2024 22:26:41.641 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 06 Dec 2024 22:26:41.642 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 06 Dec 2024 22:26:41.648 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 06 Dec 2024 22:26:41.649 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19713.
|
||||||
|
45:M 07 Dec 2024 01:29:37.021 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 01:29:37.023 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 01:29:37.023 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19755.
|
||||||
|
45:M 07 Dec 2024 04:32:39.667 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 04:32:39.670 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 04:32:39.671 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19797.
|
||||||
|
45:M 07 Dec 2024 07:35:36.191 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 07:35:36.196 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 07:35:36.197 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19839.
|
||||||
|
45:M 07 Dec 2024 09:37:48.214 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 09:37:48.217 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 09:37:48.218 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19881.
|
||||||
|
45:M 07 Dec 2024 12:40:38.380 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 07 Dec 2024 12:40:38.382 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 12:40:38.387 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 12:40:38.388 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19909.
|
||||||
|
45:M 07 Dec 2024 14:42:36.398 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 14:42:36.402 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 14:42:36.403 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19951.
|
||||||
|
45:M 07 Dec 2024 16:44:45.680 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 16:44:45.682 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 16:44:45.682 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 19993.
|
||||||
|
45:M 07 Dec 2024 19:47:46.885 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 19:47:46.887 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 19:47:46.888 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20035.
|
||||||
|
45:M 07 Dec 2024 22:20:19.893 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 07 Dec 2024 22:20:19.894 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 07 Dec 2024 22:20:19.897 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 07 Dec 2024 22:20:19.897 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20063.
|
||||||
|
45:M 08 Dec 2024 00:52:41.974 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 00:52:41.978 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 00:52:41.978 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20105.
|
||||||
|
45:M 08 Dec 2024 02:54:50.501 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 02:54:50.505 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 02:54:50.505 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20147.
|
||||||
|
45:M 08 Dec 2024 05:57:36.827 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 08 Dec 2024 05:57:36.829 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 05:57:36.837 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 05:57:36.839 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20189.
|
||||||
|
45:M 08 Dec 2024 06:58:42.550 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 08 Dec 2024 06:58:42.551 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 06:58:42.555 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 06:58:42.555 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 14 bytes of backlog starting from offset 20217.
|
||||||
|
45:M 08 Dec 2024 10:01:41.690 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 10:01:41.693 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 10:01:41.693 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20259.
|
||||||
|
45:M 08 Dec 2024 10:43:04.657 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 08 Dec 2024 10:43:04.659 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 08 Dec 2024 10:43:04.659 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 20301.
|
||||||
|
45:M 09 Dec 2024 08:51:08.770 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 08:51:08.958 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 08:51:09.280 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 08:51:09.286 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 60845.
|
||||||
|
45:M 09 Dec 2024 11:19:14.069 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 11:19:14.070 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 11:19:14.074 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 11:19:14.075 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 72689.
|
||||||
|
45:M 09 Dec 2024 11:20:41.332 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 11:20:41.336 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 11:20:41.336 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 72731.
|
||||||
|
45:M 09 Dec 2024 13:18:54.911 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 13:18:54.914 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 13:18:54.915 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 72815.
|
||||||
|
45:M 09 Dec 2024 13:25:09.935 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 13:25:09.939 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 13:25:09.946 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 13:25:09.946 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 72843.
|
||||||
|
45:M 09 Dec 2024 14:25:30.873 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 14:25:30.880 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 14:25:30.881 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76735.
|
||||||
|
45:M 09 Dec 2024 14:31:59.070 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 14:31:59.072 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 14:31:59.079 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 14:31:59.080 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76777.
|
||||||
|
45:M 09 Dec 2024 14:33:53.864 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 14:33:53.866 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 14:33:53.873 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 14:33:53.873 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76819.
|
||||||
|
45:M 09 Dec 2024 15:26:24.838 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 15:26:24.839 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 15:26:24.847 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 15:26:24.847 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76847.
|
||||||
|
45:M 09 Dec 2024 16:28:34.748 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 16:28:34.752 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 16:28:34.753 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76889.
|
||||||
|
45:M 09 Dec 2024 16:31:14.593 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 16:31:14.598 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 16:31:14.599 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76931.
|
||||||
|
45:M 09 Dec 2024 16:33:25.615 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 16:33:25.616 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 16:33:25.620 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 16:33:25.620 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 76973.
|
||||||
|
45:M 09 Dec 2024 16:35:42.794 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 16:35:42.795 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 16:35:42.800 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 16:35:42.801 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77001.
|
||||||
|
45:M 09 Dec 2024 16:39:42.266 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 16:39:42.268 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 16:39:42.269 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77043.
|
||||||
|
45:M 09 Dec 2024 17:24:50.027 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 17:24:50.030 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 17:24:50.031 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77085.
|
||||||
|
45:M 09 Dec 2024 18:23:36.653 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 18:23:36.654 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 18:23:36.658 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 18:23:36.658 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77127.
|
||||||
|
45:M 09 Dec 2024 18:25:27.555 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 18:25:27.559 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 18:25:27.565 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 18:25:27.566 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77169.
|
||||||
|
45:M 09 Dec 2024 20:27:26.191 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 09 Dec 2024 20:27:26.193 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 20:27:26.199 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 20:27:26.199 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77197.
|
||||||
|
45:M 09 Dec 2024 22:29:38.108 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 09 Dec 2024 22:29:38.110 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 09 Dec 2024 22:29:38.110 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77239.
|
||||||
|
45:M 10 Dec 2024 00:31:37.754 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 10 Dec 2024 00:31:37.756 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 00:31:37.763 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 00:31:37.763 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77281.
|
||||||
|
45:M 10 Dec 2024 03:34:24.182 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 03:34:24.186 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 03:34:24.186 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77323.
|
||||||
|
45:M 10 Dec 2024 05:36:37.448 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 10 Dec 2024 05:36:37.449 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 05:36:37.455 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 05:36:37.455 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 14 bytes of backlog starting from offset 77351.
|
||||||
|
45:M 10 Dec 2024 07:57:07.384 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 07:57:07.389 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 07:57:07.389 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77393.
|
||||||
|
45:M 10 Dec 2024 08:22:16.295 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 08:22:16.298 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 08:22:16.298 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 77435.
|
||||||
|
45:M 10 Dec 2024 11:44:54.372 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 10 Dec 2024 11:44:54.373 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 11:44:54.379 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 11:44:54.380 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 93633.
|
||||||
|
45:M 10 Dec 2024 12:01:11.667 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 10 Dec 2024 12:01:11.669 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 10 Dec 2024 12:01:11.672 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 10 Dec 2024 12:01:11.672 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 93703.
|
||||||
|
45:M 11 Dec 2024 16:23:34.957 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 11 Dec 2024 16:23:34.960 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 16:23:34.966 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 16:23:34.966 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 228789.
|
||||||
|
45:M 11 Dec 2024 16:36:12.901 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 11 Dec 2024 16:36:12.903 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 16:36:12.907 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 16:36:12.908 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 228831.
|
||||||
|
45:M 11 Dec 2024 16:38:27.741 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 16:38:27.744 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 16:38:27.744 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 228873.
|
||||||
|
45:M 11 Dec 2024 16:53:05.471 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 11 Dec 2024 16:53:05.472 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 16:53:05.476 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 16:53:05.477 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 229601.
|
||||||
|
45:M 11 Dec 2024 20:00:58.466 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 20:00:58.469 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 20:00:58.470 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244623.
|
||||||
|
45:M 11 Dec 2024 21:00:31.730 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 11 Dec 2024 21:00:31.731 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 11 Dec 2024 21:00:31.732 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244665.
|
||||||
|
45:M 12 Dec 2024 00:01:46.561 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 12 Dec 2024 00:01:46.569 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 12 Dec 2024 00:01:46.570 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244707.
|
||||||
|
45:M 12 Dec 2024 02:35:21.445 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 12 Dec 2024 02:35:21.448 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 12 Dec 2024 02:35:21.449 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244749.
|
||||||
|
45:M 12 Dec 2024 06:07:37.149 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 12 Dec 2024 06:07:37.150 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 12 Dec 2024 06:07:37.154 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 12 Dec 2024 06:07:37.154 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244777.
|
||||||
|
45:M 12 Dec 2024 09:10:39.231 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 12 Dec 2024 09:10:39.233 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 12 Dec 2024 09:10:39.240 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 12 Dec 2024 09:10:39.240 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244819.
|
||||||
|
45:M 12 Dec 2024 09:24:18.409 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 12 Dec 2024 09:24:18.417 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 12 Dec 2024 09:24:18.420 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 244861.
|
||||||
|
45:M 15 Dec 2024 08:15:45.131 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 15 Dec 2024 08:15:46.360 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 15 Dec 2024 08:15:47.478 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 15 Dec 2024 08:15:47.509 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 292433.
|
||||||
|
45:M 15 Dec 2024 11:09:22.604 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16382
|
||||||
|
45:M 15 Dec 2024 11:09:22.607 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 15 Dec 2024 11:09:22.612 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 15 Dec 2024 11:09:22.612 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 303465.
|
||||||
|
45:M 15 Dec 2024 11:24:03.065 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 15 Dec 2024 11:24:03.068 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
45:M 15 Dec 2024 11:24:03.068 * Partial resynchronization request from 127.0.0.1:16382 accepted. Sending 0 bytes of backlog starting from offset 304557.
|
||||||
|
45:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
45:M 15 Dec 2024 11:47:34.867 * Connection with replica 127.0.0.1:16382 lost.
|
||||||
|
45:M 15 Dec 2024 11:47:34.889 * User requested shutdown...
|
||||||
|
45:M 15 Dec 2024 11:47:34.889 * Removing the pid file.
|
||||||
|
45:M 15 Dec 2024 11:47:34.890 # Redis is now ready to exit, bye bye...
|
||||||
|
29:C 15 Dec 2024 11:49:55.871 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
29:C 15 Dec 2024 11:49:55.875 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
29:C 15 Dec 2024 11:49:55.878 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=29, just started
|
||||||
|
29:C 15 Dec 2024 11:49:55.880 * Configuration loaded
|
||||||
|
29:M 15 Dec 2024 11:49:55.885 * monotonic clock: POSIX clock_gettime
|
||||||
|
29:M 15 Dec 2024 11:49:55.897 * Running mode=cluster, port=16380.
|
||||||
|
29:M 15 Dec 2024 11:49:55.927 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
29:M 15 Dec 2024 11:49:55.952 * Server initialized
|
||||||
|
29:M 15 Dec 2024 11:49:55.965 * Ready to accept connections tcp
|
||||||
|
29:M 15 Dec 2024 11:49:55.968 * Ready to accept connections tls
|
||||||
|
29:M 15 Dec 2024 11:49:56.057 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
29:M 15 Dec 2024 11:49:56.058 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '4c4b71f970ac144c4fb9694d5c05f63c7ce855a7', my replication IDs are 'a4d10452e09435f28572c1f7b57a8ec28f7e81bf' and '0000000000000000000000000000000000000000')
|
||||||
|
29:M 15 Dec 2024 11:49:56.061 * Replication backlog created, my new replication IDs are '4651d7be0c487da1e558d1b57956e6b1bfba990a' and '0000000000000000000000000000000000000000'
|
||||||
|
29:M 15 Dec 2024 11:49:56.064 * Delay next BGSAVE for diskless SYNC
|
||||||
|
29:M 15 Dec 2024 11:49:58.018 * Cluster state changed: ok
|
||||||
|
29:M 15 Dec 2024 11:50:01.126 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
29:M 15 Dec 2024 11:50:01.129 * Background RDB transfer started by pid 236
|
||||||
|
236:C 15 Dec 2024 11:50:01.129 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
29:M 15 Dec 2024 11:50:01.131 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
29:M 15 Dec 2024 11:50:01.146 * Background RDB transfer terminated with success
|
||||||
|
29:M 15 Dec 2024 11:50:01.146 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
29:M 15 Dec 2024 11:50:01.147 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
29:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
29:M 15 Dec 2024 11:51:28.916 * User requested shutdown...
|
||||||
|
29:M 15 Dec 2024 11:51:28.917 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
29:M 15 Dec 2024 11:51:28.918 * Removing the pid file.
|
||||||
|
29:M 15 Dec 2024 11:51:28.922 # Redis is now ready to exit, bye bye...
|
||||||
|
30:C 15 Dec 2024 11:52:09.088 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
30:C 15 Dec 2024 11:52:09.092 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
30:C 15 Dec 2024 11:52:09.093 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=30, just started
|
||||||
|
30:C 15 Dec 2024 11:52:09.094 * Configuration loaded
|
||||||
|
30:M 15 Dec 2024 11:52:09.097 * monotonic clock: POSIX clock_gettime
|
||||||
|
30:M 15 Dec 2024 11:52:09.160 * Running mode=cluster, port=16380.
|
||||||
|
30:M 15 Dec 2024 11:52:09.170 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
30:M 15 Dec 2024 11:52:09.188 * Server initialized
|
||||||
|
30:M 15 Dec 2024 11:52:09.190 * Ready to accept connections tcp
|
||||||
|
30:M 15 Dec 2024 11:52:09.191 * Ready to accept connections tls
|
||||||
|
30:M 15 Dec 2024 11:52:09.217 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
30:M 15 Dec 2024 11:52:09.219 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '4651d7be0c487da1e558d1b57956e6b1bfba990a', my replication IDs are 'ccdda1897fe0652db367811f1f22f192f10358be' and '0000000000000000000000000000000000000000')
|
||||||
|
30:M 15 Dec 2024 11:52:09.220 * Replication backlog created, my new replication IDs are '1443e39b506ca94b530837f3a3f734db4a096a17' and '0000000000000000000000000000000000000000'
|
||||||
|
30:M 15 Dec 2024 11:52:09.220 * Delay next BGSAVE for diskless SYNC
|
||||||
|
30:M 15 Dec 2024 11:52:11.242 * Cluster state changed: ok
|
||||||
|
30:M 15 Dec 2024 11:52:14.382 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
30:M 15 Dec 2024 11:52:14.385 * Background RDB transfer started by pid 237
|
||||||
|
237:C 15 Dec 2024 11:52:14.387 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
30:M 15 Dec 2024 11:52:14.390 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
30:M 15 Dec 2024 11:52:14.404 * Background RDB transfer terminated with success
|
||||||
|
30:M 15 Dec 2024 11:52:14.405 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
30:M 15 Dec 2024 11:52:14.406 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
30:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
30:M 15 Dec 2024 13:10:27.945 * User requested shutdown...
|
||||||
|
30:M 15 Dec 2024 13:10:27.946 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
30:M 15 Dec 2024 13:10:27.946 * Removing the pid file.
|
||||||
|
30:M 15 Dec 2024 13:10:27.950 # Redis is now ready to exit, bye bye...
|
||||||
|
30:C 15 Dec 2024 13:13:28.220 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
30:C 15 Dec 2024 13:13:28.223 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
30:C 15 Dec 2024 13:13:28.227 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=30, just started
|
||||||
|
30:C 15 Dec 2024 13:13:28.228 * Configuration loaded
|
||||||
|
30:M 15 Dec 2024 13:13:28.232 * monotonic clock: POSIX clock_gettime
|
||||||
|
30:M 15 Dec 2024 13:13:28.244 * Running mode=cluster, port=16380.
|
||||||
|
30:M 15 Dec 2024 13:13:28.253 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
30:M 15 Dec 2024 13:13:28.264 * Server initialized
|
||||||
|
30:M 15 Dec 2024 13:13:28.267 * Ready to accept connections tcp
|
||||||
|
30:M 15 Dec 2024 13:13:28.270 * Ready to accept connections tls
|
||||||
|
30:M 15 Dec 2024 13:13:28.340 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
30:M 15 Dec 2024 13:13:28.341 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '1443e39b506ca94b530837f3a3f734db4a096a17', my replication IDs are '0689ce401c8d330a769bc7cd9281477c4b982c80' and '0000000000000000000000000000000000000000')
|
||||||
|
30:M 15 Dec 2024 13:13:28.342 * Replication backlog created, my new replication IDs are 'ff84398ba7a75d26592ed8fac08848aef3bddbd7' and '0000000000000000000000000000000000000000'
|
||||||
|
30:M 15 Dec 2024 13:13:28.343 * Delay next BGSAVE for diskless SYNC
|
||||||
|
30:M 15 Dec 2024 13:13:30.316 * Cluster state changed: ok
|
||||||
|
30:M 15 Dec 2024 13:13:33.418 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
30:M 15 Dec 2024 13:13:33.421 * Background RDB transfer started by pid 231
|
||||||
|
231:C 15 Dec 2024 13:13:33.422 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
30:M 15 Dec 2024 13:13:33.425 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
30:M 15 Dec 2024 13:13:33.438 * Background RDB transfer terminated with success
|
||||||
|
30:M 15 Dec 2024 13:13:33.439 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
30:M 15 Dec 2024 13:13:33.440 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
30:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
30:M 15 Dec 2024 13:30:14.574 * User requested shutdown...
|
||||||
|
30:M 15 Dec 2024 13:30:14.575 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
30:M 15 Dec 2024 13:30:14.575 * Removing the pid file.
|
||||||
|
30:M 15 Dec 2024 13:30:14.577 # Redis is now ready to exit, bye bye...
|
||||||
|
30:C 15 Dec 2024 13:30:30.715 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
30:C 15 Dec 2024 13:30:30.717 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
30:C 15 Dec 2024 13:30:30.719 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=30, just started
|
||||||
|
30:C 15 Dec 2024 13:30:30.722 * Configuration loaded
|
||||||
|
30:M 15 Dec 2024 13:30:30.725 * monotonic clock: POSIX clock_gettime
|
||||||
|
30:M 15 Dec 2024 13:30:30.736 * Running mode=cluster, port=16380.
|
||||||
|
30:M 15 Dec 2024 13:30:30.748 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
30:M 15 Dec 2024 13:30:30.766 * Server initialized
|
||||||
|
30:M 15 Dec 2024 13:30:30.770 * Ready to accept connections tcp
|
||||||
|
30:M 15 Dec 2024 13:30:30.773 * Ready to accept connections tls
|
||||||
|
30:M 15 Dec 2024 13:30:30.853 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
30:M 15 Dec 2024 13:30:30.855 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'ff84398ba7a75d26592ed8fac08848aef3bddbd7', my replication IDs are '6724f9846e52f3c00af1bab19926c22ca13625f4' and '0000000000000000000000000000000000000000')
|
||||||
|
30:M 15 Dec 2024 13:30:30.856 * Replication backlog created, my new replication IDs are '2e716795a57fb649d2d28f683fdf9fe86508e9be' and '0000000000000000000000000000000000000000'
|
||||||
|
30:M 15 Dec 2024 13:30:30.858 * Delay next BGSAVE for diskless SYNC
|
||||||
|
30:M 15 Dec 2024 13:30:32.804 * Cluster state changed: ok
|
||||||
|
30:M 15 Dec 2024 13:30:35.914 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
30:M 15 Dec 2024 13:30:35.917 * Background RDB transfer started by pid 232
|
||||||
|
232:C 15 Dec 2024 13:30:35.918 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
30:M 15 Dec 2024 13:30:35.919 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
30:M 15 Dec 2024 13:30:35.927 * Background RDB transfer terminated with success
|
||||||
|
30:M 15 Dec 2024 13:30:35.927 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
30:M 15 Dec 2024 13:30:35.928 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
30:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
30:M 15 Dec 2024 13:36:35.528 * User requested shutdown...
|
||||||
|
30:M 15 Dec 2024 13:36:35.529 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
30:M 15 Dec 2024 13:36:35.532 * Removing the pid file.
|
||||||
|
30:M 15 Dec 2024 13:36:35.540 # Redis is now ready to exit, bye bye...
|
||||||
|
30:C 15 Dec 2024 13:37:03.394 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
30:C 15 Dec 2024 13:37:03.399 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
30:C 15 Dec 2024 13:37:03.401 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=30, just started
|
||||||
|
30:C 15 Dec 2024 13:37:03.402 * Configuration loaded
|
||||||
|
30:M 15 Dec 2024 13:37:03.409 * monotonic clock: POSIX clock_gettime
|
||||||
|
30:M 15 Dec 2024 13:37:03.424 * Running mode=cluster, port=16380.
|
||||||
|
30:M 15 Dec 2024 13:37:03.439 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
30:M 15 Dec 2024 13:37:03.463 * Server initialized
|
||||||
|
30:M 15 Dec 2024 13:37:03.465 * Ready to accept connections tcp
|
||||||
|
30:M 15 Dec 2024 13:37:03.470 * Ready to accept connections tls
|
||||||
|
30:M 15 Dec 2024 13:37:03.528 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
30:M 15 Dec 2024 13:37:03.529 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '2e716795a57fb649d2d28f683fdf9fe86508e9be', my replication IDs are '644a457f1aa4e21422ec6202bfeeecf8b4f2d4d7' and '0000000000000000000000000000000000000000')
|
||||||
|
30:M 15 Dec 2024 13:37:03.530 * Replication backlog created, my new replication IDs are 'a219bea1c07f97a3e76aea963b45521d49fcbf16' and '0000000000000000000000000000000000000000'
|
||||||
|
30:M 15 Dec 2024 13:37:03.531 * Delay next BGSAVE for diskless SYNC
|
||||||
|
30:M 15 Dec 2024 13:37:05.537 * Cluster state changed: ok
|
||||||
|
30:M 15 Dec 2024 13:37:08.635 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
30:M 15 Dec 2024 13:37:08.636 * Background RDB transfer started by pid 233
|
||||||
|
233:C 15 Dec 2024 13:37:08.637 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
30:M 15 Dec 2024 13:37:08.638 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
30:M 15 Dec 2024 13:37:08.651 * Background RDB transfer terminated with success
|
||||||
|
30:M 15 Dec 2024 13:37:08.652 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
30:M 15 Dec 2024 13:37:08.652 * Synchronization with replica 127.0.0.1:16382 succeeded
|
||||||
|
30:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
30:M 15 Dec 2024 13:39:04.662 * User requested shutdown...
|
||||||
|
30:M 15 Dec 2024 13:39:04.663 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
30:M 15 Dec 2024 13:39:04.664 * Removing the pid file.
|
||||||
|
30:M 15 Dec 2024 13:39:04.666 # Redis is now ready to exit, bye bye...
|
||||||
|
30:C 15 Dec 2024 13:39:11.101 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
30:C 15 Dec 2024 13:39:11.104 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
30:C 15 Dec 2024 13:39:11.106 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=30, just started
|
||||||
|
30:C 15 Dec 2024 13:39:11.108 * Configuration loaded
|
||||||
|
30:M 15 Dec 2024 13:39:11.111 * monotonic clock: POSIX clock_gettime
|
||||||
|
30:M 15 Dec 2024 13:39:11.121 * Running mode=cluster, port=16380.
|
||||||
|
30:M 15 Dec 2024 13:39:11.131 * Node configuration loaded, I'm 17003be25313b117da88e1dfefdb9ddb6bf68c90
|
||||||
|
30:M 15 Dec 2024 13:39:11.151 * Server initialized
|
||||||
|
30:M 15 Dec 2024 13:39:11.153 * Ready to accept connections tcp
|
||||||
|
30:M 15 Dec 2024 13:39:11.155 * Ready to accept connections tls
|
||||||
|
30:M 15 Dec 2024 13:39:11.209 * Replica 127.0.0.1:16382 asks for synchronization
|
||||||
|
30:M 15 Dec 2024 13:39:11.212 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'a219bea1c07f97a3e76aea963b45521d49fcbf16', my replication IDs are '80c9fca4b47ff9f6dc5770910eaceb4c57a2fcb5' and '0000000000000000000000000000000000000000')
|
||||||
|
30:M 15 Dec 2024 13:39:11.216 * Replication backlog created, my new replication IDs are '437cfb40f65179a540ef3e9e90f93d384ec81034' and '0000000000000000000000000000000000000000'
|
||||||
|
30:M 15 Dec 2024 13:39:11.217 * Delay next BGSAVE for diskless SYNC
|
||||||
|
30:M 15 Dec 2024 13:39:13.191 * Cluster state changed: ok
|
||||||
|
30:M 15 Dec 2024 13:39:16.301 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
239:C 15 Dec 2024 13:39:16.304 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
30:M 15 Dec 2024 13:39:16.305 * Background RDB transfer started by pid 239
|
||||||
|
30:M 15 Dec 2024 13:39:16.307 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
30:M 15 Dec 2024 13:39:16.315 * Background RDB transfer terminated with success
|
||||||
|
30:M 15 Dec 2024 13:39:16.315 * Streamed RDB transfer with replica 127.0.0.1:16382 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
30:M 15 Dec 2024 13:39:16.315 * Synchronization with replica 127.0.0.1:16382 succeeded
|
|
@ -0,0 +1 @@
|
||||||
|
30
|
|
@ -0,0 +1,7 @@
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 master - 0 1734269951169 1 connected 0-5460
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 1734269951203 2 connected
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c myself,master - 0 0 3 connected 10923-16383
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 master - 0 1734269951164 2 connected 5461-10922
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 1734269951163 1734269951134 1 connected
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c slave 4759591cd1762d973a5691128c97200deb57762f 1734269951163 1734269951134 3 connected
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16381
|
||||||
|
|
||||||
|
tls-port 27381
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,444 @@
|
||||||
|
47:C 05 Dec 2024 08:52:53.042 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
47:C 05 Dec 2024 08:52:53.045 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
47:C 05 Dec 2024 08:52:53.046 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=47, just started
|
||||||
|
47:C 05 Dec 2024 08:52:53.047 * Configuration loaded
|
||||||
|
47:M 05 Dec 2024 08:52:53.049 * monotonic clock: POSIX clock_gettime
|
||||||
|
47:M 05 Dec 2024 08:52:53.052 * Running mode=cluster, port=16381.
|
||||||
|
47:M 05 Dec 2024 08:52:53.054 * No cluster configuration found, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
47:M 05 Dec 2024 08:52:53.061 * Server initialized
|
||||||
|
47:M 05 Dec 2024 08:52:53.062 * Ready to accept connections tcp
|
||||||
|
47:M 05 Dec 2024 08:52:53.063 * Ready to accept connections tls
|
||||||
|
47:M 05 Dec 2024 08:52:54.168 * configEpoch set to 3 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
47:M 05 Dec 2024 08:52:54.298 * IP address for this node updated to 127.0.0.1
|
||||||
|
47:M 05 Dec 2024 08:52:54.299 * Address updated for node 3a1250b30cc37fca6db12b82fdefcbf615dec08f (), now 127.0.0.1:16379
|
||||||
|
47:M 05 Dec 2024 08:52:55.120 * Cluster state changed: ok
|
||||||
|
47:M 05 Dec 2024 08:52:55.188 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 08:52:55.189 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'b005637e20a7d0941a7401a9e0bf39eb9d49ffd8', my replication IDs are '566db5a4215e7200f1af862d0d3f434a907bcdb8' and '0000000000000000000000000000000000000000')
|
||||||
|
47:M 05 Dec 2024 08:52:55.190 * Replication backlog created, my new replication IDs are 'f9404abd389c6de78b7b90ff0eee1bcfba21372c' and '0000000000000000000000000000000000000000'
|
||||||
|
47:M 05 Dec 2024 08:52:55.191 * Delay next BGSAVE for diskless SYNC
|
||||||
|
47:M 05 Dec 2024 08:52:56.035 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is no longer master of shard bf74e437af60a0baec0f3046f7708a9e490f7459; removed all 0 slot(s) it used to own
|
||||||
|
47:M 05 Dec 2024 08:52:56.037 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is now part of shard 4554bc07be3de979d00342a6de84369994bb059c
|
||||||
|
47:M 05 Dec 2024 08:52:57.055 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is no longer master of shard 9298d5cf800697ccdb6ed879c2bb68d8d0e99d58; removed all 0 slot(s) it used to own
|
||||||
|
47:M 05 Dec 2024 08:52:57.056 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is now part of shard 78410864729d91b91858e4f921bcd314095cfcc6
|
||||||
|
47:M 05 Dec 2024 08:52:58.065 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is no longer master of shard f38f13b3e7c036f38d10d4992c4602859c2ce8c6; removed all 0 slot(s) it used to own
|
||||||
|
47:M 05 Dec 2024 08:52:58.065 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is now part of shard 8ee145d9d4fab776f3f51de69974dc0377adb434
|
||||||
|
47:M 05 Dec 2024 08:53:00.217 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
47:M 05 Dec 2024 08:53:00.219 * Background RDB transfer started by pid 267
|
||||||
|
267:C 05 Dec 2024 08:53:00.219 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
47:M 05 Dec 2024 08:53:00.220 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
47:M 05 Dec 2024 08:53:00.225 * Background RDB transfer terminated with success
|
||||||
|
47:M 05 Dec 2024 08:53:00.225 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
47:M 05 Dec 2024 08:53:00.225 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
47:M 05 Dec 2024 10:54:04.765 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 10:54:04.768 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 10:54:04.768 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 9493.
|
||||||
|
47:M 05 Dec 2024 13:52:40.666 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 13:52:40.669 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 13:52:40.669 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 14183.
|
||||||
|
47:M 05 Dec 2024 15:54:50.124 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 15:54:50.127 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 15:54:50.129 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 14225.
|
||||||
|
47:M 05 Dec 2024 17:56:41.276 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 17:56:41.279 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 17:56:41.279 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 14267.
|
||||||
|
47:M 05 Dec 2024 18:09:24.207 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 18:09:24.210 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 18:09:24.210 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 14309.
|
||||||
|
47:M 05 Dec 2024 22:02:39.751 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 05 Dec 2024 22:02:39.756 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 05 Dec 2024 22:02:39.758 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19335.
|
||||||
|
47:M 06 Dec 2024 00:04:43.096 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 00:04:43.099 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 00:04:43.100 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19363.
|
||||||
|
47:M 06 Dec 2024 04:08:35.934 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 04:08:35.936 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 04:08:35.937 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19405.
|
||||||
|
47:M 06 Dec 2024 06:10:39.922 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 06 Dec 2024 06:10:39.924 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 06:10:39.931 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 06:10:39.932 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19447.
|
||||||
|
47:M 06 Dec 2024 09:13:44.619 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 06 Dec 2024 09:13:44.621 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 09:13:44.628 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 09:13:44.628 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19489.
|
||||||
|
47:M 06 Dec 2024 12:16:42.936 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 06 Dec 2024 12:16:42.937 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 12:16:42.943 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 12:16:42.944 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 14 bytes of backlog starting from offset 19517.
|
||||||
|
47:M 06 Dec 2024 14:18:39.847 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 14:18:39.850 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 14:18:39.850 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19559.
|
||||||
|
47:M 06 Dec 2024 17:21:38.687 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 17:21:38.689 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 17:21:38.689 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19601.
|
||||||
|
47:M 06 Dec 2024 18:22:39.835 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 18:22:39.836 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 18:22:39.836 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19643.
|
||||||
|
47:M 06 Dec 2024 21:25:36.004 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 06 Dec 2024 21:25:36.005 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 21:25:36.009 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 21:25:36.009 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19685.
|
||||||
|
47:M 06 Dec 2024 22:26:41.985 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 06 Dec 2024 22:26:41.986 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 06 Dec 2024 22:26:41.992 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 06 Dec 2024 22:26:41.992 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19713.
|
||||||
|
47:M 07 Dec 2024 01:29:37.232 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 01:29:37.233 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 01:29:37.241 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 01:29:37.241 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19755.
|
||||||
|
47:M 07 Dec 2024 04:32:39.564 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 04:32:39.567 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 04:32:39.568 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19797.
|
||||||
|
47:M 07 Dec 2024 07:35:36.244 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 07:35:36.245 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 07:35:36.251 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 07:35:36.251 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19839.
|
||||||
|
47:M 07 Dec 2024 09:37:48.364 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 09:37:48.366 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 09:37:48.370 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 09:37:48.371 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19881.
|
||||||
|
47:M 07 Dec 2024 12:40:38.373 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 12:40:38.374 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 12:40:38.380 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 12:40:38.382 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19909.
|
||||||
|
47:M 07 Dec 2024 14:42:36.512 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 14:42:36.515 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 14:42:36.515 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19951.
|
||||||
|
47:M 07 Dec 2024 16:44:45.779 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 16:44:45.780 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 16:44:45.787 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 16:44:45.787 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 19993.
|
||||||
|
47:M 07 Dec 2024 19:47:46.149 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 19:47:46.153 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 19:47:46.154 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20035.
|
||||||
|
47:M 07 Dec 2024 22:20:19.665 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 07 Dec 2024 22:20:19.666 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 07 Dec 2024 22:20:19.674 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 07 Dec 2024 22:20:19.674 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20063.
|
||||||
|
47:M 08 Dec 2024 00:52:42.151 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 08 Dec 2024 00:52:42.153 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 00:52:42.160 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 00:52:42.161 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20105.
|
||||||
|
47:M 08 Dec 2024 02:54:50.873 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 02:54:50.876 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 02:54:50.876 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20147.
|
||||||
|
47:M 08 Dec 2024 05:57:36.831 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 05:57:36.836 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 05:57:36.837 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20189.
|
||||||
|
47:M 08 Dec 2024 06:58:42.670 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 06:58:42.673 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 06:58:42.674 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20217.
|
||||||
|
47:M 08 Dec 2024 10:01:42.227 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 10:01:42.229 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 10:01:42.230 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20259.
|
||||||
|
47:M 08 Dec 2024 10:43:04.131 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 08 Dec 2024 10:43:04.133 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 08 Dec 2024 10:43:04.133 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 20301.
|
||||||
|
47:M 09 Dec 2024 08:51:09.051 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 08:51:09.072 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 08:51:09.312 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 08:51:09.337 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 60859.
|
||||||
|
47:M 09 Dec 2024 11:19:13.648 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 11:19:13.649 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 11:19:13.653 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 11:19:13.653 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 72703.
|
||||||
|
47:M 09 Dec 2024 11:20:41.554 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 11:20:41.557 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 11:20:41.557 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 72745.
|
||||||
|
47:M 09 Dec 2024 13:18:55.014 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 13:18:55.015 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 13:18:55.023 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 13:18:55.023 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 72815.
|
||||||
|
47:M 09 Dec 2024 13:25:09.727 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 13:25:09.730 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 13:25:09.731 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 72857.
|
||||||
|
47:M 09 Dec 2024 14:25:30.868 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 14:25:30.870 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 14:25:30.881 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 14:25:30.883 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76749.
|
||||||
|
47:M 09 Dec 2024 14:31:59.494 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 14:31:59.496 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 14:31:59.504 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 14:31:59.504 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76791.
|
||||||
|
47:M 09 Dec 2024 14:33:54.299 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 14:33:54.302 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 14:33:54.308 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 14:33:54.308 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76833.
|
||||||
|
47:M 09 Dec 2024 15:26:24.962 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 15:26:24.966 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 15:26:24.967 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76861.
|
||||||
|
47:M 09 Dec 2024 16:28:34.648 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 16:28:34.649 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 16:28:34.654 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 16:28:34.654 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76903.
|
||||||
|
47:M 09 Dec 2024 16:31:14.805 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 16:31:14.808 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 16:31:14.809 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76945.
|
||||||
|
47:M 09 Dec 2024 16:33:25.622 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 16:33:25.622 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 16:33:25.626 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 16:33:25.627 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 76987.
|
||||||
|
47:M 09 Dec 2024 16:35:43.000 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 16:35:43.003 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 16:35:43.004 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77029.
|
||||||
|
47:M 09 Dec 2024 16:39:42.486 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 16:39:42.488 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 16:39:42.489 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77057.
|
||||||
|
47:M 09 Dec 2024 17:24:49.183 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 17:24:49.183 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 17:24:49.187 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 17:24:49.188 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77099.
|
||||||
|
47:M 09 Dec 2024 18:23:35.884 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 18:23:35.884 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 18:23:35.888 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 18:23:35.888 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77141.
|
||||||
|
47:M 09 Dec 2024 18:25:26.935 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 18:25:26.936 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 18:25:26.943 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 18:25:26.943 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77183.
|
||||||
|
47:M 09 Dec 2024 20:27:25.440 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 20:27:25.442 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 20:27:25.448 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 20:27:25.449 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 14 bytes of backlog starting from offset 77211.
|
||||||
|
47:M 09 Dec 2024 22:29:37.645 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 09 Dec 2024 22:29:37.646 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 09 Dec 2024 22:29:37.655 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 09 Dec 2024 22:29:37.657 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77253.
|
||||||
|
47:M 10 Dec 2024 00:31:38.146 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 10 Dec 2024 00:31:38.147 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 00:31:38.156 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 00:31:38.157 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77295.
|
||||||
|
47:M 10 Dec 2024 03:34:24.074 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 03:34:24.077 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 03:34:24.078 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77337.
|
||||||
|
47:M 10 Dec 2024 05:36:37.054 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 10 Dec 2024 05:36:37.056 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 05:36:37.063 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 05:36:37.063 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77379.
|
||||||
|
47:M 10 Dec 2024 07:57:06.848 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 10 Dec 2024 07:57:06.849 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 07:57:06.856 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 07:57:06.856 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77407.
|
||||||
|
47:M 10 Dec 2024 08:22:15.891 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 10 Dec 2024 08:22:15.893 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 08:22:15.896 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 08:22:15.897 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 77449.
|
||||||
|
47:M 10 Dec 2024 11:44:54.823 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 11:44:54.827 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 11:44:54.827 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 93647.
|
||||||
|
47:M 10 Dec 2024 12:01:11.705 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 10 Dec 2024 12:01:11.707 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 10 Dec 2024 12:01:11.707 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 93717.
|
||||||
|
47:M 11 Dec 2024 16:23:35.379 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 11 Dec 2024 16:23:35.381 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 16:23:35.387 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 16:23:35.388 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 228803.
|
||||||
|
47:M 11 Dec 2024 16:36:13.224 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 11 Dec 2024 16:36:13.226 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 16:36:13.231 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 16:36:13.232 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 228845.
|
||||||
|
47:M 11 Dec 2024 16:38:28.470 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 11 Dec 2024 16:38:28.471 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 16:38:28.474 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 16:38:28.474 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 228887.
|
||||||
|
47:M 11 Dec 2024 16:53:04.951 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 11 Dec 2024 16:53:04.952 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 16:53:04.958 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 16:53:04.959 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 229601.
|
||||||
|
47:M 11 Dec 2024 20:00:58.355 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 20:00:58.359 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 20:00:58.360 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244637.
|
||||||
|
47:M 11 Dec 2024 21:00:32.151 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 11 Dec 2024 21:00:32.152 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 11 Dec 2024 21:00:32.158 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 11 Dec 2024 21:00:32.159 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244679.
|
||||||
|
47:M 12 Dec 2024 00:01:46.894 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 12 Dec 2024 00:01:46.896 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 12 Dec 2024 00:01:46.899 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 12 Dec 2024 00:01:46.900 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244721.
|
||||||
|
47:M 12 Dec 2024 02:35:21.839 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 12 Dec 2024 02:35:21.840 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 12 Dec 2024 02:35:21.846 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 12 Dec 2024 02:35:21.847 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244749.
|
||||||
|
47:M 12 Dec 2024 06:07:37.047 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 12 Dec 2024 06:07:37.049 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 12 Dec 2024 06:07:37.050 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244791.
|
||||||
|
47:M 12 Dec 2024 09:10:38.921 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 12 Dec 2024 09:10:38.925 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 12 Dec 2024 09:10:38.926 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244833.
|
||||||
|
47:M 12 Dec 2024 09:24:18.697 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 12 Dec 2024 09:24:18.698 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 12 Dec 2024 09:24:18.699 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 244875.
|
||||||
|
47:M 15 Dec 2024 08:15:45.064 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 15 Dec 2024 08:15:46.361 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 15 Dec 2024 08:15:46.934 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 292433.
|
||||||
|
47:M 15 Dec 2024 11:09:23.349 # Disconnecting timedout replica (streaming sync): 127.0.0.1:16383
|
||||||
|
47:M 15 Dec 2024 11:09:23.350 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 15 Dec 2024 11:09:23.356 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 15 Dec 2024 11:09:23.356 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 303479.
|
||||||
|
47:M 15 Dec 2024 11:24:02.982 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
47:M 15 Dec 2024 11:24:02.984 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
47:M 15 Dec 2024 11:24:02.984 * Partial resynchronization request from 127.0.0.1:16383 accepted. Sending 0 bytes of backlog starting from offset 304571.
|
||||||
|
47:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
47:M 15 Dec 2024 11:47:34.859 * User requested shutdown...
|
||||||
|
47:M 15 Dec 2024 11:47:34.860 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
47:M 15 Dec 2024 11:47:34.861 * Removing the pid file.
|
||||||
|
47:M 15 Dec 2024 11:47:34.864 # Redis is now ready to exit, bye bye...
|
||||||
|
31:C 15 Dec 2024 11:49:55.887 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
31:C 15 Dec 2024 11:49:55.891 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
31:C 15 Dec 2024 11:49:55.897 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=31, just started
|
||||||
|
31:C 15 Dec 2024 11:49:55.902 * Configuration loaded
|
||||||
|
31:M 15 Dec 2024 11:49:55.912 * monotonic clock: POSIX clock_gettime
|
||||||
|
31:M 15 Dec 2024 11:49:55.940 * Running mode=cluster, port=16381.
|
||||||
|
31:M 15 Dec 2024 11:49:55.964 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
31:M 15 Dec 2024 11:49:55.993 * Server initialized
|
||||||
|
31:M 15 Dec 2024 11:49:55.998 * Ready to accept connections tcp
|
||||||
|
31:M 15 Dec 2024 11:49:56.000 * Ready to accept connections tls
|
||||||
|
31:M 15 Dec 2024 11:49:56.058 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
31:M 15 Dec 2024 11:49:56.061 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'f9404abd389c6de78b7b90ff0eee1bcfba21372c', my replication IDs are '2f62bfb932f21f6d447935ccce6d0b2e6c6d5d14' and '0000000000000000000000000000000000000000')
|
||||||
|
31:M 15 Dec 2024 11:49:56.063 * Replication backlog created, my new replication IDs are '3aa5a35aa318aa4e042ed27c3083cc18bd4a5895' and '0000000000000000000000000000000000000000'
|
||||||
|
31:M 15 Dec 2024 11:49:56.065 * Delay next BGSAVE for diskless SYNC
|
||||||
|
31:M 15 Dec 2024 11:49:58.036 * Cluster state changed: ok
|
||||||
|
31:M 15 Dec 2024 11:50:01.134 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
31:M 15 Dec 2024 11:50:01.136 * Background RDB transfer started by pid 237
|
||||||
|
237:C 15 Dec 2024 11:50:01.137 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
31:M 15 Dec 2024 11:50:01.138 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
31:M 15 Dec 2024 11:50:01.151 * Background RDB transfer terminated with success
|
||||||
|
31:M 15 Dec 2024 11:50:01.152 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
31:M 15 Dec 2024 11:50:01.152 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
31:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
31:M 15 Dec 2024 11:51:28.917 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
31:M 15 Dec 2024 11:51:28.942 * User requested shutdown...
|
||||||
|
31:M 15 Dec 2024 11:51:28.942 * Removing the pid file.
|
||||||
|
31:M 15 Dec 2024 11:51:28.943 # Redis is now ready to exit, bye bye...
|
||||||
|
32:C 15 Dec 2024 11:52:09.094 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
32:C 15 Dec 2024 11:52:09.097 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
32:C 15 Dec 2024 11:52:09.101 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=32, just started
|
||||||
|
32:C 15 Dec 2024 11:52:09.159 * Configuration loaded
|
||||||
|
32:M 15 Dec 2024 11:52:09.165 * monotonic clock: POSIX clock_gettime
|
||||||
|
32:M 15 Dec 2024 11:52:09.172 * Running mode=cluster, port=16381.
|
||||||
|
32:M 15 Dec 2024 11:52:09.179 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
32:M 15 Dec 2024 11:52:09.190 * Server initialized
|
||||||
|
32:M 15 Dec 2024 11:52:09.192 * Ready to accept connections tcp
|
||||||
|
32:M 15 Dec 2024 11:52:09.193 * Ready to accept connections tls
|
||||||
|
32:M 15 Dec 2024 11:52:09.218 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
32:M 15 Dec 2024 11:52:09.219 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '3aa5a35aa318aa4e042ed27c3083cc18bd4a5895', my replication IDs are 'a86eb035c1980dd8b6a3b78dc8b9118a07f097d3' and '0000000000000000000000000000000000000000')
|
||||||
|
32:M 15 Dec 2024 11:52:09.220 * Replication backlog created, my new replication IDs are '71404f5ed80be657ff2307adb98dd12dd1cfee7f' and '0000000000000000000000000000000000000000'
|
||||||
|
32:M 15 Dec 2024 11:52:09.221 * Delay next BGSAVE for diskless SYNC
|
||||||
|
32:M 15 Dec 2024 11:52:11.241 * Cluster state changed: ok
|
||||||
|
32:M 15 Dec 2024 11:52:14.383 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
32:M 15 Dec 2024 11:52:14.387 * Background RDB transfer started by pid 238
|
||||||
|
238:C 15 Dec 2024 11:52:14.388 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
32:M 15 Dec 2024 11:52:14.391 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
32:M 15 Dec 2024 11:52:14.405 * Background RDB transfer terminated with success
|
||||||
|
32:M 15 Dec 2024 11:52:14.406 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
32:M 15 Dec 2024 11:52:14.406 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
32:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
32:M 15 Dec 2024 13:10:27.919 * User requested shutdown...
|
||||||
|
32:M 15 Dec 2024 13:10:27.920 * Waiting for replicas before shutting down.
|
||||||
|
32:M 15 Dec 2024 13:10:27.999 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
32:M 15 Dec 2024 13:10:28.024 * Removing the pid file.
|
||||||
|
32:M 15 Dec 2024 13:10:28.025 # Redis is now ready to exit, bye bye...
|
||||||
|
32:C 15 Dec 2024 13:13:28.243 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
32:C 15 Dec 2024 13:13:28.246 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
32:C 15 Dec 2024 13:13:28.249 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=32, just started
|
||||||
|
32:C 15 Dec 2024 13:13:28.251 * Configuration loaded
|
||||||
|
32:M 15 Dec 2024 13:13:28.254 * monotonic clock: POSIX clock_gettime
|
||||||
|
32:M 15 Dec 2024 13:13:28.259 * Running mode=cluster, port=16381.
|
||||||
|
32:M 15 Dec 2024 13:13:28.269 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
32:M 15 Dec 2024 13:13:28.302 * Server initialized
|
||||||
|
32:M 15 Dec 2024 13:13:28.310 * Ready to accept connections tcp
|
||||||
|
32:M 15 Dec 2024 13:13:28.313 * Ready to accept connections tls
|
||||||
|
32:M 15 Dec 2024 13:13:28.367 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
32:M 15 Dec 2024 13:13:28.370 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '71404f5ed80be657ff2307adb98dd12dd1cfee7f', my replication IDs are '5c3e619460307fdb524854f3c863130916fb17f7' and '0000000000000000000000000000000000000000')
|
||||||
|
32:M 15 Dec 2024 13:13:28.372 * Replication backlog created, my new replication IDs are 'bf5c6a12c9dfa2142f924ab295a8dc915665e209' and '0000000000000000000000000000000000000000'
|
||||||
|
32:M 15 Dec 2024 13:13:28.377 * Delay next BGSAVE for diskless SYNC
|
||||||
|
32:M 15 Dec 2024 13:13:30.408 * Cluster state changed: ok
|
||||||
|
32:M 15 Dec 2024 13:13:33.523 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
32:M 15 Dec 2024 13:13:33.525 * Background RDB transfer started by pid 233
|
||||||
|
233:C 15 Dec 2024 13:13:33.525 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
32:M 15 Dec 2024 13:13:33.527 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
32:M 15 Dec 2024 13:13:33.533 * Background RDB transfer terminated with success
|
||||||
|
32:M 15 Dec 2024 13:13:33.533 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
32:M 15 Dec 2024 13:13:33.534 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
32:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
32:M 15 Dec 2024 13:30:14.558 * Connection with replica 127.0.0.1:16383 lost.
|
||||||
|
32:M 15 Dec 2024 13:30:14.574 * User requested shutdown...
|
||||||
|
32:M 15 Dec 2024 13:30:14.575 * Removing the pid file.
|
||||||
|
32:M 15 Dec 2024 13:30:14.576 # Redis is now ready to exit, bye bye...
|
||||||
|
32:C 15 Dec 2024 13:30:30.730 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
32:C 15 Dec 2024 13:30:30.735 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
32:C 15 Dec 2024 13:30:30.738 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=32, just started
|
||||||
|
32:C 15 Dec 2024 13:30:30.744 * Configuration loaded
|
||||||
|
32:M 15 Dec 2024 13:30:30.748 * monotonic clock: POSIX clock_gettime
|
||||||
|
32:M 15 Dec 2024 13:30:30.754 * Running mode=cluster, port=16381.
|
||||||
|
32:M 15 Dec 2024 13:30:30.762 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
32:M 15 Dec 2024 13:30:30.797 * Server initialized
|
||||||
|
32:M 15 Dec 2024 13:30:30.799 * Ready to accept connections tcp
|
||||||
|
32:M 15 Dec 2024 13:30:30.802 * Ready to accept connections tls
|
||||||
|
32:M 15 Dec 2024 13:30:30.849 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
32:M 15 Dec 2024 13:30:30.853 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for 'bf5c6a12c9dfa2142f924ab295a8dc915665e209', my replication IDs are '9cb22f60b0eddcc4b94890abcedba222773ed8c2' and '0000000000000000000000000000000000000000')
|
||||||
|
32:M 15 Dec 2024 13:30:30.855 * Replication backlog created, my new replication IDs are '4ce3cbf724bd81ee95f984e6dcce0a7d48cce5b7' and '0000000000000000000000000000000000000000'
|
||||||
|
32:M 15 Dec 2024 13:30:30.856 * Delay next BGSAVE for diskless SYNC
|
||||||
|
32:M 15 Dec 2024 13:30:32.851 * Cluster state changed: ok
|
||||||
|
32:M 15 Dec 2024 13:30:35.958 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
32:M 15 Dec 2024 13:30:35.958 * Background RDB transfer started by pid 233
|
||||||
|
233:C 15 Dec 2024 13:30:35.959 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
32:M 15 Dec 2024 13:30:35.959 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
32:M 15 Dec 2024 13:30:35.964 * Background RDB transfer terminated with success
|
||||||
|
32:M 15 Dec 2024 13:30:35.964 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
32:M 15 Dec 2024 13:30:35.964 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
32:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
32:M 15 Dec 2024 13:36:35.444 * User requested shutdown...
|
||||||
|
32:M 15 Dec 2024 13:36:35.446 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
32:M 15 Dec 2024 13:36:35.447 * Removing the pid file.
|
||||||
|
32:M 15 Dec 2024 13:36:35.448 # Redis is now ready to exit, bye bye...
|
||||||
|
32:C 15 Dec 2024 13:37:03.397 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
32:C 15 Dec 2024 13:37:03.401 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
32:C 15 Dec 2024 13:37:03.405 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=32, just started
|
||||||
|
32:C 15 Dec 2024 13:37:03.408 * Configuration loaded
|
||||||
|
32:M 15 Dec 2024 13:37:03.413 * monotonic clock: POSIX clock_gettime
|
||||||
|
32:M 15 Dec 2024 13:37:03.422 * Running mode=cluster, port=16381.
|
||||||
|
32:M 15 Dec 2024 13:37:03.432 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
32:M 15 Dec 2024 13:37:03.456 * Server initialized
|
||||||
|
32:M 15 Dec 2024 13:37:03.459 * Ready to accept connections tcp
|
||||||
|
32:M 15 Dec 2024 13:37:03.460 * Ready to accept connections tls
|
||||||
|
32:M 15 Dec 2024 13:37:03.520 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
32:M 15 Dec 2024 13:37:03.521 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '4ce3cbf724bd81ee95f984e6dcce0a7d48cce5b7', my replication IDs are '6a6c370c8b0856c09ef76ce9b995033389bffc8d' and '0000000000000000000000000000000000000000')
|
||||||
|
32:M 15 Dec 2024 13:37:03.522 * Replication backlog created, my new replication IDs are '355911cd69d3058e32eaebf82a7dcfddb30ac962' and '0000000000000000000000000000000000000000'
|
||||||
|
32:M 15 Dec 2024 13:37:03.527 * Delay next BGSAVE for diskless SYNC
|
||||||
|
32:M 15 Dec 2024 13:37:05.494 * Cluster state changed: ok
|
||||||
|
32:M 15 Dec 2024 13:37:08.623 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
32:M 15 Dec 2024 13:37:08.627 * Background RDB transfer started by pid 232
|
||||||
|
232:C 15 Dec 2024 13:37:08.628 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
32:M 15 Dec 2024 13:37:08.630 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
32:M 15 Dec 2024 13:37:08.646 * Background RDB transfer terminated with success
|
||||||
|
32:M 15 Dec 2024 13:37:08.647 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
32:M 15 Dec 2024 13:37:08.648 * Synchronization with replica 127.0.0.1:16383 succeeded
|
||||||
|
32:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
32:M 15 Dec 2024 13:39:04.607 * User requested shutdown...
|
||||||
|
32:M 15 Dec 2024 13:39:04.607 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
32:M 15 Dec 2024 13:39:04.607 * Removing the pid file.
|
||||||
|
32:M 15 Dec 2024 13:39:04.608 # Redis is now ready to exit, bye bye...
|
||||||
|
32:C 15 Dec 2024 13:39:11.108 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
32:C 15 Dec 2024 13:39:11.116 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
32:C 15 Dec 2024 13:39:11.119 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=32, just started
|
||||||
|
32:C 15 Dec 2024 13:39:11.120 * Configuration loaded
|
||||||
|
32:M 15 Dec 2024 13:39:11.123 * monotonic clock: POSIX clock_gettime
|
||||||
|
32:M 15 Dec 2024 13:39:11.128 * Running mode=cluster, port=16381.
|
||||||
|
32:M 15 Dec 2024 13:39:11.137 * Node configuration loaded, I'm 4759591cd1762d973a5691128c97200deb57762f
|
||||||
|
32:M 15 Dec 2024 13:39:11.155 * Server initialized
|
||||||
|
32:M 15 Dec 2024 13:39:11.158 * Ready to accept connections tcp
|
||||||
|
32:M 15 Dec 2024 13:39:11.162 * Ready to accept connections tls
|
||||||
|
32:M 15 Dec 2024 13:39:11.226 * Replica 127.0.0.1:16383 asks for synchronization
|
||||||
|
32:M 15 Dec 2024 13:39:11.227 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '355911cd69d3058e32eaebf82a7dcfddb30ac962', my replication IDs are 'd0f2fbbef7b3b7d3655a037ad3ba5289cee51f91' and '0000000000000000000000000000000000000000')
|
||||||
|
32:M 15 Dec 2024 13:39:11.228 * Replication backlog created, my new replication IDs are '1a8efe2703e50e821bbd18094c0cd7901c7f26c7' and '0000000000000000000000000000000000000000'
|
||||||
|
32:M 15 Dec 2024 13:39:11.232 * Delay next BGSAVE for diskless SYNC
|
||||||
|
32:M 15 Dec 2024 13:39:13.194 * Cluster state changed: ok
|
||||||
|
32:M 15 Dec 2024 13:39:16.282 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
32:M 15 Dec 2024 13:39:16.287 * Background RDB transfer started by pid 237
|
||||||
|
237:C 15 Dec 2024 13:39:16.287 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
32:M 15 Dec 2024 13:39:16.290 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
32:M 15 Dec 2024 13:39:16.311 * Background RDB transfer terminated with success
|
||||||
|
32:M 15 Dec 2024 13:39:16.312 * Streamed RDB transfer with replica 127.0.0.1:16383 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
32:M 15 Dec 2024 13:39:16.312 * Synchronization with replica 127.0.0.1:16383 succeeded
|
|
@ -0,0 +1 @@
|
||||||
|
32
|
|
@ -0,0 +1,7 @@
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 master - 0 1734269951204 1 connected 0-5460
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 master - 0 1734269951200 2 connected 5461-10922
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c slave 4759591cd1762d973a5691128c97200deb57762f 1734269951128 1734269951128 3 connected
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 myself,slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 0 2 connected
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c master - 0 1734269951204 3 connected 10923-16383
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 1734269951130 1734269951130 1 connected
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16382
|
||||||
|
|
||||||
|
tls-port 27382
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,950 @@
|
||||||
|
49:C 05 Dec 2024 08:52:53.042 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
49:C 05 Dec 2024 08:52:53.044 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
49:C 05 Dec 2024 08:52:53.045 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=49, just started
|
||||||
|
49:C 05 Dec 2024 08:52:53.046 * Configuration loaded
|
||||||
|
49:M 05 Dec 2024 08:52:53.047 * monotonic clock: POSIX clock_gettime
|
||||||
|
49:M 05 Dec 2024 08:52:53.050 * Running mode=cluster, port=16382.
|
||||||
|
49:M 05 Dec 2024 08:52:53.054 * No cluster configuration found, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
49:M 05 Dec 2024 08:52:53.062 * Server initialized
|
||||||
|
49:M 05 Dec 2024 08:52:53.063 * Ready to accept connections tcp
|
||||||
|
49:M 05 Dec 2024 08:52:53.064 * Ready to accept connections tls
|
||||||
|
49:M 05 Dec 2024 08:52:54.169 * configEpoch set to 4 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
49:M 05 Dec 2024 08:52:54.197 * IP address for this node updated to 127.0.0.1
|
||||||
|
49:M 05 Dec 2024 08:52:54.198 * Address updated for node 3a1250b30cc37fca6db12b82fdefcbf615dec08f (), now 127.0.0.1:16379
|
||||||
|
49:M 05 Dec 2024 08:52:55.119 * Cluster state changed: ok
|
||||||
|
49:S 05 Dec 2024 08:52:55.177 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
49:S 05 Dec 2024 08:52:55.178 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 08:52:55.179 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 08:52:55.181 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 08:52:55.182 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 08:52:55.183 * Trying a partial resynchronization (request 50c5cc8b824c5345352c7475f534dbeafb0c83e9:1).
|
||||||
|
49:S 05 Dec 2024 08:52:55.223 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is no longer master of shard c2a7e402de12d3568489aaac260c785e72fb7ecd; removed all 0 slot(s) it used to own
|
||||||
|
49:S 05 Dec 2024 08:52:55.224 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is now part of shard 4554bc07be3de979d00342a6de84369994bb059c
|
||||||
|
49:S 05 Dec 2024 08:52:56.037 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is no longer master of shard 9298d5cf800697ccdb6ed879c2bb68d8d0e99d58; removed all 0 slot(s) it used to own
|
||||||
|
49:S 05 Dec 2024 08:52:56.038 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is now part of shard 78410864729d91b91858e4f921bcd314095cfcc6
|
||||||
|
49:S 05 Dec 2024 08:53:00.283 * Full resync from master: 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:0
|
||||||
|
49:S 05 Dec 2024 08:53:00.284 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
49:S 05 Dec 2024 08:53:00.284 * Discarding previously cached master state.
|
||||||
|
49:S 05 Dec 2024 08:53:00.284 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
49:S 05 Dec 2024 08:53:00.285 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
49:S 05 Dec 2024 08:53:00.286 * Loading RDB produced by version 7.9.224
|
||||||
|
49:S 05 Dec 2024 08:53:00.286 * RDB age 0 seconds
|
||||||
|
49:S 05 Dec 2024 08:53:00.286 * RDB memory usage when created 2.49 Mb
|
||||||
|
49:S 05 Dec 2024 08:53:00.286 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
49:S 05 Dec 2024 08:53:00.287 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
49:S 05 Dec 2024 10:54:05.075 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 10:54:05.076 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 10:54:05.076 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 10:54:05.077 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 10:54:05.078 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 10:54:05.079 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 10:54:05.079 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:9493).
|
||||||
|
49:S 05 Dec 2024 10:54:05.080 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 10:54:05.081 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 05 Dec 2024 13:52:40.971 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 13:52:40.973 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 13:52:40.974 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 13:52:40.975 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 13:52:40.975 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 13:52:40.976 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 13:52:40.977 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:14183).
|
||||||
|
49:S 05 Dec 2024 13:52:40.978 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 13:52:40.979 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 05 Dec 2024 15:54:50.581 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 15:54:50.581 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 15:54:50.581 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 15:54:50.582 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 15:54:50.582 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 15:54:50.582 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 15:54:50.583 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:14225).
|
||||||
|
49:S 05 Dec 2024 15:54:50.583 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 15:54:50.583 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 05 Dec 2024 17:56:41.686 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 17:56:41.687 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 17:56:41.688 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 17:56:41.689 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 17:56:41.690 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 17:56:41.690 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 17:56:41.691 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:14253).
|
||||||
|
49:S 05 Dec 2024 17:56:41.692 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 17:56:41.692 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 05 Dec 2024 18:09:23.680 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 18:09:23.681 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 18:09:23.682 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 18:09:23.683 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 18:09:23.683 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 18:09:23.684 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 18:09:23.684 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:14295).
|
||||||
|
49:S 05 Dec 2024 18:09:23.685 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 18:09:23.686 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 05 Dec 2024 22:02:40.213 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 05 Dec 2024 22:02:40.216 * Connection with master lost.
|
||||||
|
49:S 05 Dec 2024 22:02:40.217 * Caching the disconnected master state.
|
||||||
|
49:S 05 Dec 2024 22:02:40.218 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 05 Dec 2024 22:02:40.219 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 05 Dec 2024 22:02:40.220 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 05 Dec 2024 22:02:40.220 * Master replied to PING, replication can continue...
|
||||||
|
49:S 05 Dec 2024 22:02:40.221 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19335).
|
||||||
|
49:S 05 Dec 2024 22:02:40.222 * Successful partial resynchronization with master.
|
||||||
|
49:S 05 Dec 2024 22:02:40.222 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 00:04:43.536 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 00:04:43.538 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 00:04:43.538 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 00:04:43.540 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 00:04:43.541 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 00:04:43.542 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 00:04:43.542 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 00:04:43.543 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19363).
|
||||||
|
49:S 06 Dec 2024 00:04:43.544 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 00:04:43.545 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 04:08:36.582 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 04:08:36.583 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 04:08:36.584 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 04:08:36.585 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 04:08:36.587 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 04:08:36.587 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 04:08:36.588 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 04:08:36.588 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19405).
|
||||||
|
49:S 06 Dec 2024 04:08:36.590 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 04:08:36.591 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 06:10:39.757 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 06:10:39.758 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 06:10:39.759 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 06:10:39.760 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 06:10:39.760 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 06:10:39.761 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 06:10:39.761 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19447).
|
||||||
|
49:S 06 Dec 2024 06:10:39.762 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 06:10:39.763 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 09:13:44.526 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 09:13:44.527 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 09:13:44.528 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 09:13:44.528 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 09:13:44.529 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 09:13:44.530 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 09:13:44.530 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19489).
|
||||||
|
49:S 06 Dec 2024 09:13:44.531 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 09:13:44.532 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 12:16:42.580 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 12:16:42.582 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 12:16:42.583 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 12:16:42.585 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 12:16:42.587 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 12:16:42.588 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 12:16:42.589 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 12:16:42.589 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19517).
|
||||||
|
49:S 06 Dec 2024 12:16:42.590 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 12:16:42.591 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 14:18:40.275 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 14:18:40.276 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 14:18:40.277 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 14:18:40.277 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 14:18:40.278 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 14:18:40.279 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 14:18:40.279 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19559).
|
||||||
|
49:S 06 Dec 2024 14:18:40.280 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 14:18:40.281 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 17:21:39.092 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 17:21:39.094 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 17:21:39.096 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 17:21:39.096 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 17:21:39.097 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 17:21:39.098 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 17:21:39.098 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 17:21:39.099 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19601).
|
||||||
|
49:S 06 Dec 2024 17:21:39.100 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 17:21:39.100 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 18:22:40.153 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 18:22:40.154 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 18:22:40.154 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 18:22:40.154 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 18:22:40.155 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 18:22:40.155 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 18:22:40.156 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 18:22:40.156 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19643).
|
||||||
|
49:S 06 Dec 2024 18:22:40.157 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 18:22:40.157 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 21:25:36.653 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 06 Dec 2024 21:25:36.654 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 21:25:36.655 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 21:25:36.656 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 21:25:36.657 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 21:25:36.658 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 21:25:36.658 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 21:25:36.659 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19685).
|
||||||
|
49:S 06 Dec 2024 21:25:36.660 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 21:25:36.660 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 06 Dec 2024 22:26:41.644 * Connection with master lost.
|
||||||
|
49:S 06 Dec 2024 22:26:41.645 * Caching the disconnected master state.
|
||||||
|
49:S 06 Dec 2024 22:26:41.645 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 06 Dec 2024 22:26:41.646 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 06 Dec 2024 22:26:41.646 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 06 Dec 2024 22:26:41.647 * Master replied to PING, replication can continue...
|
||||||
|
49:S 06 Dec 2024 22:26:41.647 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19713).
|
||||||
|
49:S 06 Dec 2024 22:26:41.649 * Successful partial resynchronization with master.
|
||||||
|
49:S 06 Dec 2024 22:26:41.649 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 01:29:37.019 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 01:29:37.020 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 01:29:37.020 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 01:29:37.021 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 01:29:37.022 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 01:29:37.022 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 01:29:37.022 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 01:29:37.023 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19755).
|
||||||
|
49:S 07 Dec 2024 01:29:37.023 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 01:29:37.024 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 04:32:39.663 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 04:32:39.665 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 04:32:39.666 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 04:32:39.666 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 04:32:39.668 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 04:32:39.669 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 04:32:39.669 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 04:32:39.670 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19797).
|
||||||
|
49:S 07 Dec 2024 04:32:39.671 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 04:32:39.671 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 07:35:36.189 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 07:35:36.190 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 07:35:36.191 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 07:35:36.191 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 07:35:36.192 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 07:35:36.193 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 07:35:36.194 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 07:35:36.195 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19839).
|
||||||
|
49:S 07 Dec 2024 07:35:36.197 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 07:35:36.198 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 09:37:48.210 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 09:37:48.211 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 09:37:48.212 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 09:37:48.213 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 09:37:48.215 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 09:37:48.216 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 09:37:48.216 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 09:37:48.217 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19881).
|
||||||
|
49:S 07 Dec 2024 09:37:48.218 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 09:37:48.219 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 12:40:38.383 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 12:40:38.384 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 12:40:38.384 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 12:40:38.385 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 12:40:38.385 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 12:40:38.386 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 12:40:38.386 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19909).
|
||||||
|
49:S 07 Dec 2024 12:40:38.388 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 12:40:38.388 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 14:42:36.395 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 14:42:36.397 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 14:42:36.397 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 14:42:36.398 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 14:42:36.399 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 14:42:36.400 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 14:42:36.401 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 14:42:36.402 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19951).
|
||||||
|
49:S 07 Dec 2024 14:42:36.403 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 14:42:36.403 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 16:44:45.677 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 16:44:45.678 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 16:44:45.679 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 16:44:45.680 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 16:44:45.681 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 16:44:45.681 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 16:44:45.681 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 16:44:45.682 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:19993).
|
||||||
|
49:S 07 Dec 2024 16:44:45.682 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 16:44:45.682 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 19:47:46.883 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 07 Dec 2024 19:47:46.884 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 19:47:46.885 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 19:47:46.885 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 19:47:46.886 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 19:47:46.886 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 19:47:46.887 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 19:47:46.887 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20035).
|
||||||
|
49:S 07 Dec 2024 19:47:46.888 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 19:47:46.888 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 07 Dec 2024 22:20:19.894 * Connection with master lost.
|
||||||
|
49:S 07 Dec 2024 22:20:19.895 * Caching the disconnected master state.
|
||||||
|
49:S 07 Dec 2024 22:20:19.895 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 07 Dec 2024 22:20:19.896 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 07 Dec 2024 22:20:19.896 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 07 Dec 2024 22:20:19.896 * Master replied to PING, replication can continue...
|
||||||
|
49:S 07 Dec 2024 22:20:19.897 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20063).
|
||||||
|
49:S 07 Dec 2024 22:20:19.897 * Successful partial resynchronization with master.
|
||||||
|
49:S 07 Dec 2024 22:20:19.898 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 00:52:41.971 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 08 Dec 2024 00:52:41.972 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 00:52:41.973 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 00:52:41.974 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 00:52:41.975 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 00:52:41.976 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 00:52:41.976 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 00:52:41.977 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20105).
|
||||||
|
49:S 08 Dec 2024 00:52:41.978 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 00:52:41.979 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 02:54:50.497 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 08 Dec 2024 02:54:50.498 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 02:54:50.499 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 02:54:50.501 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 02:54:50.502 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 02:54:50.503 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 02:54:50.503 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 02:54:50.504 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20147).
|
||||||
|
49:S 08 Dec 2024 02:54:50.505 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 02:54:50.506 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 05:57:36.830 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 05:57:36.832 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 05:57:36.833 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 05:57:36.834 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 05:57:36.834 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 05:57:36.835 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 05:57:36.836 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20189).
|
||||||
|
49:S 08 Dec 2024 05:57:36.839 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 05:57:36.840 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 06:58:42.552 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 06:58:42.553 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 06:58:42.553 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 06:58:42.553 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 06:58:42.554 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 06:58:42.554 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 06:58:42.554 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20217).
|
||||||
|
49:S 08 Dec 2024 06:58:42.555 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 06:58:42.555 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 10:01:41.686 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 08 Dec 2024 10:01:41.688 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 10:01:41.689 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 10:01:41.689 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 10:01:41.691 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 10:01:41.691 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 10:01:41.692 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 10:01:41.692 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20259).
|
||||||
|
49:S 08 Dec 2024 10:01:41.693 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 10:01:41.694 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 08 Dec 2024 10:43:04.656 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 08 Dec 2024 10:43:04.656 * Connection with master lost.
|
||||||
|
49:S 08 Dec 2024 10:43:04.656 * Caching the disconnected master state.
|
||||||
|
49:S 08 Dec 2024 10:43:04.657 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 08 Dec 2024 10:43:04.657 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 08 Dec 2024 10:43:04.658 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 08 Dec 2024 10:43:04.658 * Master replied to PING, replication can continue...
|
||||||
|
49:S 08 Dec 2024 10:43:04.658 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:20301).
|
||||||
|
49:S 08 Dec 2024 10:43:04.659 * Successful partial resynchronization with master.
|
||||||
|
49:S 08 Dec 2024 10:43:04.660 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 08:51:08.973 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 08:51:09.008 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 08:51:09.031 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 08:51:09.057 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 08:51:09.072 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 08:51:09.085 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 08:51:09.104 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 08:51:09.194 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:60845).
|
||||||
|
49:S 09 Dec 2024 08:51:09.353 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 08:51:09.368 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 11:19:14.066 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 11:19:14.068 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 11:19:14.069 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 11:19:14.070 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 11:19:14.071 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 11:19:14.072 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 11:19:14.073 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 11:19:14.074 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:72689).
|
||||||
|
49:S 09 Dec 2024 11:19:14.075 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 11:19:14.076 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 11:20:41.330 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 11:20:41.330 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 11:20:41.331 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 11:20:41.332 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 11:20:41.333 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 11:20:41.334 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 11:20:41.334 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 11:20:41.335 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:72731).
|
||||||
|
49:S 09 Dec 2024 11:20:41.336 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 11:20:41.337 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 13:18:54.908 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 13:18:54.909 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 13:18:54.910 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 13:18:54.910 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 13:18:54.912 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 13:18:54.912 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 13:18:54.913 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 13:18:54.914 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:72815).
|
||||||
|
49:S 09 Dec 2024 13:18:54.915 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 13:18:54.915 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 13:25:09.944 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 13:25:09.944 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 13:25:09.945 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 13:25:09.945 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 13:25:09.945 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 13:25:09.946 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 13:25:09.946 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:72843).
|
||||||
|
49:S 09 Dec 2024 13:25:09.946 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 13:25:09.947 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 14:25:30.868 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 14:25:30.870 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 14:25:30.871 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 14:25:30.873 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 14:25:30.875 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 14:25:30.877 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 14:25:30.878 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 14:25:30.879 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76735).
|
||||||
|
49:S 09 Dec 2024 14:25:30.881 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 14:25:30.883 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 14:31:59.073 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 14:31:59.074 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 14:31:59.075 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 14:31:59.076 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 14:31:59.076 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 14:31:59.077 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 14:31:59.078 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76777).
|
||||||
|
49:S 09 Dec 2024 14:31:59.080 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 14:31:59.080 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 14:33:53.867 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 14:33:53.868 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 14:33:53.869 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 14:33:53.870 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 14:33:53.871 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 14:33:53.871 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 14:33:53.872 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76819).
|
||||||
|
49:S 09 Dec 2024 14:33:53.873 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 14:33:53.874 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 15:26:24.840 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 15:26:24.842 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 15:26:24.843 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 15:26:24.844 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 15:26:24.844 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 15:26:24.845 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 15:26:24.846 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76847).
|
||||||
|
49:S 09 Dec 2024 15:26:24.847 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 15:26:24.848 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 16:28:34.745 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 16:28:34.746 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 16:28:34.747 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 16:28:34.748 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 16:28:34.749 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 16:28:34.750 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 16:28:34.751 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 16:28:34.752 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76889).
|
||||||
|
49:S 09 Dec 2024 16:28:34.753 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 16:28:34.753 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 16:31:14.588 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 16:31:14.590 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 16:31:14.592 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 16:31:14.593 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 16:31:14.595 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 16:31:14.596 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 16:31:14.597 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 16:31:14.598 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76931).
|
||||||
|
49:S 09 Dec 2024 16:31:14.599 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 16:31:14.599 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 16:33:25.617 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 16:33:25.617 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 16:33:25.618 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 16:33:25.618 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 16:33:25.618 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 16:33:25.619 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 16:33:25.619 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:76973).
|
||||||
|
49:S 09 Dec 2024 16:33:25.620 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 16:33:25.621 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 16:35:42.796 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 16:35:42.797 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 16:35:42.798 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 16:35:42.799 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 16:35:42.799 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 16:35:42.800 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 16:35:42.800 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77001).
|
||||||
|
49:S 09 Dec 2024 16:35:42.801 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 16:35:42.801 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 16:39:42.261 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 16:39:42.263 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 16:39:42.264 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 16:39:42.265 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 16:39:42.266 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 16:39:42.267 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 16:39:42.267 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 16:39:42.268 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77043).
|
||||||
|
49:S 09 Dec 2024 16:39:42.269 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 16:39:42.269 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 17:24:50.023 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 17:24:50.025 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 17:24:50.025 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 17:24:50.026 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 17:24:50.028 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 17:24:50.028 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 17:24:50.029 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 17:24:50.030 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77085).
|
||||||
|
49:S 09 Dec 2024 17:24:50.031 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 17:24:50.031 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 18:23:36.654 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 18:23:36.655 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 18:23:36.655 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 18:23:36.656 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 18:23:36.656 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 18:23:36.656 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 18:23:36.657 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 18:23:36.657 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77127).
|
||||||
|
49:S 09 Dec 2024 18:23:36.658 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 18:23:36.659 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 18:25:27.560 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 18:25:27.561 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 18:25:27.562 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 18:25:27.562 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 18:25:27.563 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 18:25:27.564 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 18:25:27.564 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77169).
|
||||||
|
49:S 09 Dec 2024 18:25:27.566 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 18:25:27.566 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 20:27:26.194 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 20:27:26.195 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 20:27:26.196 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 20:27:26.197 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 20:27:26.198 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 20:27:26.198 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 20:27:26.199 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77197).
|
||||||
|
49:S 09 Dec 2024 20:27:26.199 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 20:27:26.200 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 09 Dec 2024 22:29:38.106 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 09 Dec 2024 22:29:38.107 * Connection with master lost.
|
||||||
|
49:S 09 Dec 2024 22:29:38.107 * Caching the disconnected master state.
|
||||||
|
49:S 09 Dec 2024 22:29:38.108 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 09 Dec 2024 22:29:38.109 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 09 Dec 2024 22:29:38.109 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 09 Dec 2024 22:29:38.109 * Master replied to PING, replication can continue...
|
||||||
|
49:S 09 Dec 2024 22:29:38.110 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77239).
|
||||||
|
49:S 09 Dec 2024 22:29:38.110 * Successful partial resynchronization with master.
|
||||||
|
49:S 09 Dec 2024 22:29:38.111 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 00:31:37.758 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 00:31:37.759 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 00:31:37.759 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 00:31:37.760 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 00:31:37.761 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 00:31:37.761 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 00:31:37.762 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77281).
|
||||||
|
49:S 10 Dec 2024 00:31:37.763 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 00:31:37.764 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 03:34:24.179 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 10 Dec 2024 03:34:24.180 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 03:34:24.181 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 03:34:24.182 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 03:34:24.183 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 03:34:24.184 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 03:34:24.185 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 03:34:24.185 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77323).
|
||||||
|
49:S 10 Dec 2024 03:34:24.186 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 03:34:24.187 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 05:36:37.449 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 05:36:37.450 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 05:36:37.452 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 05:36:37.452 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 05:36:37.453 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 05:36:37.453 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 05:36:37.454 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77351).
|
||||||
|
49:S 10 Dec 2024 05:36:37.455 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 05:36:37.456 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 07:57:07.380 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 10 Dec 2024 07:57:07.382 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 07:57:07.383 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 07:57:07.384 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 07:57:07.385 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 07:57:07.386 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 07:57:07.388 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 07:57:07.388 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77393).
|
||||||
|
49:S 10 Dec 2024 07:57:07.389 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 07:57:07.390 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 08:22:16.293 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 10 Dec 2024 08:22:16.293 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 08:22:16.294 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 08:22:16.295 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 08:22:16.296 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 08:22:16.296 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 08:22:16.297 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 08:22:16.297 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:77435).
|
||||||
|
49:S 10 Dec 2024 08:22:16.298 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 08:22:16.299 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 11:44:54.375 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 11:44:54.376 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 11:44:54.377 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 11:44:54.377 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 11:44:54.378 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 11:44:54.378 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 11:44:54.379 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:93633).
|
||||||
|
49:S 10 Dec 2024 11:44:54.380 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 11:44:54.380 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 10 Dec 2024 12:01:11.670 * Connection with master lost.
|
||||||
|
49:S 10 Dec 2024 12:01:11.670 * Caching the disconnected master state.
|
||||||
|
49:S 10 Dec 2024 12:01:11.670 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 10 Dec 2024 12:01:11.671 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 10 Dec 2024 12:01:11.671 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 10 Dec 2024 12:01:11.671 * Master replied to PING, replication can continue...
|
||||||
|
49:S 10 Dec 2024 12:01:11.671 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:93703).
|
||||||
|
49:S 10 Dec 2024 12:01:11.672 * Successful partial resynchronization with master.
|
||||||
|
49:S 10 Dec 2024 12:01:11.672 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 16:23:34.961 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 16:23:34.962 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 16:23:34.963 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 16:23:34.963 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 16:23:34.964 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 16:23:34.965 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 16:23:34.965 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:228789).
|
||||||
|
49:S 11 Dec 2024 16:23:34.966 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 16:23:34.967 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 16:36:12.904 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 16:36:12.905 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 16:36:12.905 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 16:36:12.906 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 16:36:12.907 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 16:36:12.907 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 16:36:12.907 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:228831).
|
||||||
|
49:S 11 Dec 2024 16:36:12.908 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 16:36:12.909 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 16:38:27.737 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 11 Dec 2024 16:38:27.738 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 16:38:27.739 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 16:38:27.740 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 16:38:27.742 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 16:38:27.742 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 16:38:27.743 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 16:38:27.743 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:228873).
|
||||||
|
49:S 11 Dec 2024 16:38:27.744 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 16:38:27.745 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 16:53:05.473 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 16:53:05.474 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 16:53:05.474 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 16:53:05.475 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 16:53:05.475 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 16:53:05.476 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 16:53:05.476 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:229601).
|
||||||
|
49:S 11 Dec 2024 16:53:05.477 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 16:53:05.477 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 20:00:58.462 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 11 Dec 2024 20:00:58.464 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 20:00:58.464 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 20:00:58.465 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 20:00:58.467 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 20:00:58.468 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 20:00:58.468 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 20:00:58.469 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244623).
|
||||||
|
49:S 11 Dec 2024 20:00:58.470 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 20:00:58.470 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 11 Dec 2024 21:00:31.729 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 11 Dec 2024 21:00:31.729 * Connection with master lost.
|
||||||
|
49:S 11 Dec 2024 21:00:31.729 * Caching the disconnected master state.
|
||||||
|
49:S 11 Dec 2024 21:00:31.730 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 11 Dec 2024 21:00:31.730 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 11 Dec 2024 21:00:31.731 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 11 Dec 2024 21:00:31.731 * Master replied to PING, replication can continue...
|
||||||
|
49:S 11 Dec 2024 21:00:31.731 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244665).
|
||||||
|
49:S 11 Dec 2024 21:00:31.732 * Successful partial resynchronization with master.
|
||||||
|
49:S 11 Dec 2024 21:00:31.732 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 12 Dec 2024 00:01:46.558 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 12 Dec 2024 00:01:46.559 * Connection with master lost.
|
||||||
|
49:S 12 Dec 2024 00:01:46.560 * Caching the disconnected master state.
|
||||||
|
49:S 12 Dec 2024 00:01:46.561 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 12 Dec 2024 00:01:46.563 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 12 Dec 2024 00:01:46.564 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 12 Dec 2024 00:01:46.566 * Master replied to PING, replication can continue...
|
||||||
|
49:S 12 Dec 2024 00:01:46.568 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244707).
|
||||||
|
49:S 12 Dec 2024 00:01:46.570 * Successful partial resynchronization with master.
|
||||||
|
49:S 12 Dec 2024 00:01:46.571 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 12 Dec 2024 02:35:21.439 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 12 Dec 2024 02:35:21.440 * Connection with master lost.
|
||||||
|
49:S 12 Dec 2024 02:35:21.443 * Caching the disconnected master state.
|
||||||
|
49:S 12 Dec 2024 02:35:21.444 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 12 Dec 2024 02:35:21.446 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 12 Dec 2024 02:35:21.446 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 12 Dec 2024 02:35:21.447 * Master replied to PING, replication can continue...
|
||||||
|
49:S 12 Dec 2024 02:35:21.448 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244749).
|
||||||
|
49:S 12 Dec 2024 02:35:21.449 * Successful partial resynchronization with master.
|
||||||
|
49:S 12 Dec 2024 02:35:21.449 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 12 Dec 2024 06:07:37.150 * Connection with master lost.
|
||||||
|
49:S 12 Dec 2024 06:07:37.151 * Caching the disconnected master state.
|
||||||
|
49:S 12 Dec 2024 06:07:37.151 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 12 Dec 2024 06:07:37.152 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 12 Dec 2024 06:07:37.153 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 12 Dec 2024 06:07:37.153 * Master replied to PING, replication can continue...
|
||||||
|
49:S 12 Dec 2024 06:07:37.153 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244777).
|
||||||
|
49:S 12 Dec 2024 06:07:37.154 * Successful partial resynchronization with master.
|
||||||
|
49:S 12 Dec 2024 06:07:37.155 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 12 Dec 2024 09:10:39.235 * Connection with master lost.
|
||||||
|
49:S 12 Dec 2024 09:10:39.236 * Caching the disconnected master state.
|
||||||
|
49:S 12 Dec 2024 09:10:39.237 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 12 Dec 2024 09:10:39.237 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 12 Dec 2024 09:10:39.238 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 12 Dec 2024 09:10:39.238 * Master replied to PING, replication can continue...
|
||||||
|
49:S 12 Dec 2024 09:10:39.239 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244819).
|
||||||
|
49:S 12 Dec 2024 09:10:39.240 * Successful partial resynchronization with master.
|
||||||
|
49:S 12 Dec 2024 09:10:39.241 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 12 Dec 2024 09:24:18.402 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 12 Dec 2024 09:24:18.403 * Connection with master lost.
|
||||||
|
49:S 12 Dec 2024 09:24:18.405 * Caching the disconnected master state.
|
||||||
|
49:S 12 Dec 2024 09:24:18.408 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 12 Dec 2024 09:24:18.412 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 12 Dec 2024 09:24:18.415 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 12 Dec 2024 09:24:18.416 * Master replied to PING, replication can continue...
|
||||||
|
49:S 12 Dec 2024 09:24:18.416 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:244861).
|
||||||
|
49:S 12 Dec 2024 09:24:18.421 * Successful partial resynchronization with master.
|
||||||
|
49:S 12 Dec 2024 09:24:18.421 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 15 Dec 2024 08:15:46.912 * Connection with master lost.
|
||||||
|
49:S 15 Dec 2024 08:15:47.012 * Caching the disconnected master state.
|
||||||
|
49:S 15 Dec 2024 08:15:47.128 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 15 Dec 2024 08:15:47.249 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 15 Dec 2024 08:15:47.320 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 15 Dec 2024 08:15:47.345 * Master replied to PING, replication can continue...
|
||||||
|
49:S 15 Dec 2024 08:15:47.459 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:292433).
|
||||||
|
49:S 15 Dec 2024 08:15:47.513 * Successful partial resynchronization with master.
|
||||||
|
49:S 15 Dec 2024 08:15:47.533 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 15 Dec 2024 11:09:22.608 * Connection with master lost.
|
||||||
|
49:S 15 Dec 2024 11:09:22.609 * Caching the disconnected master state.
|
||||||
|
49:S 15 Dec 2024 11:09:22.609 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 15 Dec 2024 11:09:22.610 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 15 Dec 2024 11:09:22.610 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 15 Dec 2024 11:09:22.611 * Master replied to PING, replication can continue...
|
||||||
|
49:S 15 Dec 2024 11:09:22.611 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:303465).
|
||||||
|
49:S 15 Dec 2024 11:09:22.612 * Successful partial resynchronization with master.
|
||||||
|
49:S 15 Dec 2024 11:09:22.613 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:S 15 Dec 2024 11:24:03.061 # MASTER timeout: no data nor PING received...
|
||||||
|
49:S 15 Dec 2024 11:24:03.064 * Connection with master lost.
|
||||||
|
49:S 15 Dec 2024 11:24:03.065 * Caching the disconnected master state.
|
||||||
|
49:S 15 Dec 2024 11:24:03.065 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
49:S 15 Dec 2024 11:24:03.066 * MASTER <-> REPLICA sync started
|
||||||
|
49:S 15 Dec 2024 11:24:03.067 * Non blocking connect for SYNC fired the event.
|
||||||
|
49:S 15 Dec 2024 11:24:03.067 * Master replied to PING, replication can continue...
|
||||||
|
49:S 15 Dec 2024 11:24:03.067 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:304557).
|
||||||
|
49:S 15 Dec 2024 11:24:03.068 * Successful partial resynchronization with master.
|
||||||
|
49:S 15 Dec 2024 11:24:03.068 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
49:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
49:S 15 Dec 2024 11:47:34.859 * User requested shutdown...
|
||||||
|
49:S 15 Dec 2024 11:47:34.860 * Removing the pid file.
|
||||||
|
49:S 15 Dec 2024 11:47:34.862 # Redis is now ready to exit, bye bye...
|
||||||
|
33:C 15 Dec 2024 11:49:55.870 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
33:C 15 Dec 2024 11:49:55.876 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
33:C 15 Dec 2024 11:49:55.877 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=33, just started
|
||||||
|
33:C 15 Dec 2024 11:49:55.880 * Configuration loaded
|
||||||
|
33:M 15 Dec 2024 11:49:55.883 * monotonic clock: POSIX clock_gettime
|
||||||
|
33:M 15 Dec 2024 11:49:55.891 * Running mode=cluster, port=16382.
|
||||||
|
33:M 15 Dec 2024 11:49:55.903 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
33:M 15 Dec 2024 11:49:55.951 * Server initialized
|
||||||
|
33:M 15 Dec 2024 11:49:55.966 * Loading RDB produced by version 7.9.224
|
||||||
|
33:M 15 Dec 2024 11:49:55.971 * RDB age 874615 seconds
|
||||||
|
33:M 15 Dec 2024 11:49:55.985 * RDB memory usage when created 2.49 Mb
|
||||||
|
33:M 15 Dec 2024 11:49:55.993 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
33:M 15 Dec 2024 11:49:55.999 * DB loaded from disk: 0.040 seconds
|
||||||
|
33:M 15 Dec 2024 11:49:56.001 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
33:M 15 Dec 2024 11:49:56.003 * Ready to accept connections tcp
|
||||||
|
33:M 15 Dec 2024 11:49:56.005 * Ready to accept connections tls
|
||||||
|
33:S 15 Dec 2024 11:49:56.006 * Discarding previously cached master state.
|
||||||
|
33:S 15 Dec 2024 11:49:56.007 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
33:S 15 Dec 2024 11:49:56.009 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
33:S 15 Dec 2024 11:49:56.022 * MASTER <-> REPLICA sync started
|
||||||
|
33:S 15 Dec 2024 11:49:56.025 * Cluster state changed: ok
|
||||||
|
33:S 15 Dec 2024 11:49:56.031 * Non blocking connect for SYNC fired the event.
|
||||||
|
33:S 15 Dec 2024 11:49:56.054 * Master replied to PING, replication can continue...
|
||||||
|
33:S 15 Dec 2024 11:49:56.056 * Trying a partial resynchronization (request 4c4b71f970ac144c4fb9694d5c05f63c7ce855a7:1).
|
||||||
|
33:S 15 Dec 2024 11:50:01.129 * Full resync from master: 4651d7be0c487da1e558d1b57956e6b1bfba990a:0
|
||||||
|
33:S 15 Dec 2024 11:50:01.131 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
33:S 15 Dec 2024 11:50:01.132 * Discarding previously cached master state.
|
||||||
|
33:S 15 Dec 2024 11:50:01.133 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
33:S 15 Dec 2024 11:50:01.135 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
33:S 15 Dec 2024 11:50:01.137 * Loading RDB produced by version 7.9.224
|
||||||
|
33:S 15 Dec 2024 11:50:01.139 * RDB age 0 seconds
|
||||||
|
33:S 15 Dec 2024 11:50:01.141 * RDB memory usage when created 2.32 Mb
|
||||||
|
33:S 15 Dec 2024 11:50:01.142 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
33:S 15 Dec 2024 11:50:01.144 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
33:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
33:S 15 Dec 2024 11:51:28.923 * Connection with master lost.
|
||||||
|
33:S 15 Dec 2024 11:51:28.924 * Caching the disconnected master state.
|
||||||
|
33:S 15 Dec 2024 11:51:28.924 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
33:S 15 Dec 2024 11:51:28.925 * MASTER <-> REPLICA sync started
|
||||||
|
33:S 15 Dec 2024 11:51:28.925 # Error condition on socket for SYNC: Connection refused
|
||||||
|
33:S 15 Dec 2024 11:51:28.946 * User requested shutdown...
|
||||||
|
33:S 15 Dec 2024 11:51:28.947 * Removing the pid file.
|
||||||
|
33:S 15 Dec 2024 11:51:28.948 # Redis is now ready to exit, bye bye...
|
||||||
|
34:C 15 Dec 2024 11:52:09.095 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
34:C 15 Dec 2024 11:52:09.098 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
34:C 15 Dec 2024 11:52:09.103 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=34, just started
|
||||||
|
34:C 15 Dec 2024 11:52:09.162 * Configuration loaded
|
||||||
|
34:M 15 Dec 2024 11:52:09.166 * monotonic clock: POSIX clock_gettime
|
||||||
|
34:M 15 Dec 2024 11:52:09.176 * Running mode=cluster, port=16382.
|
||||||
|
34:M 15 Dec 2024 11:52:09.179 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
34:M 15 Dec 2024 11:52:09.190 * Server initialized
|
||||||
|
34:M 15 Dec 2024 11:52:09.192 * Loading RDB produced by version 7.9.224
|
||||||
|
34:M 15 Dec 2024 11:52:09.193 * RDB age 128 seconds
|
||||||
|
34:M 15 Dec 2024 11:52:09.195 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:M 15 Dec 2024 11:52:09.195 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:M 15 Dec 2024 11:52:09.197 * DB loaded from disk: 0.006 seconds
|
||||||
|
34:M 15 Dec 2024 11:52:09.198 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:M 15 Dec 2024 11:52:09.198 * Ready to accept connections tcp
|
||||||
|
34:M 15 Dec 2024 11:52:09.199 * Ready to accept connections tls
|
||||||
|
34:S 15 Dec 2024 11:52:09.201 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 11:52:09.202 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:S 15 Dec 2024 11:52:09.204 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 11:52:09.206 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 11:52:09.207 * Cluster state changed: ok
|
||||||
|
34:S 15 Dec 2024 11:52:09.209 * Non blocking connect for SYNC fired the event.
|
||||||
|
34:S 15 Dec 2024 11:52:09.216 * Master replied to PING, replication can continue...
|
||||||
|
34:S 15 Dec 2024 11:52:09.217 * Trying a partial resynchronization (request 4651d7be0c487da1e558d1b57956e6b1bfba990a:1).
|
||||||
|
34:S 15 Dec 2024 11:52:14.385 * Full resync from master: 1443e39b506ca94b530837f3a3f734db4a096a17:0
|
||||||
|
34:S 15 Dec 2024 11:52:14.389 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
34:S 15 Dec 2024 11:52:14.393 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 11:52:14.395 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
34:S 15 Dec 2024 11:52:14.399 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
34:S 15 Dec 2024 11:52:14.400 * Loading RDB produced by version 7.9.224
|
||||||
|
34:S 15 Dec 2024 11:52:14.401 * RDB age 0 seconds
|
||||||
|
34:S 15 Dec 2024 11:52:14.401 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:S 15 Dec 2024 11:52:14.402 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:S 15 Dec 2024 11:52:14.403 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
34:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
34:S 15 Dec 2024 13:10:27.945 * User requested shutdown...
|
||||||
|
34:S 15 Dec 2024 13:10:27.946 * Removing the pid file.
|
||||||
|
34:S 15 Dec 2024 13:10:27.948 # Redis is now ready to exit, bye bye...
|
||||||
|
34:C 15 Dec 2024 13:13:28.239 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
34:C 15 Dec 2024 13:13:28.249 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
34:C 15 Dec 2024 13:13:28.251 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=34, just started
|
||||||
|
34:C 15 Dec 2024 13:13:28.252 * Configuration loaded
|
||||||
|
34:M 15 Dec 2024 13:13:28.254 * monotonic clock: POSIX clock_gettime
|
||||||
|
34:M 15 Dec 2024 13:13:28.260 * Running mode=cluster, port=16382.
|
||||||
|
34:M 15 Dec 2024 13:13:28.264 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
34:M 15 Dec 2024 13:13:28.280 * Server initialized
|
||||||
|
34:M 15 Dec 2024 13:13:28.284 * Loading RDB produced by version 7.9.224
|
||||||
|
34:M 15 Dec 2024 13:13:28.288 * RDB age 4874 seconds
|
||||||
|
34:M 15 Dec 2024 13:13:28.306 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:M 15 Dec 2024 13:13:28.309 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:M 15 Dec 2024 13:13:28.314 * DB loaded from disk: 0.032 seconds
|
||||||
|
34:M 15 Dec 2024 13:13:28.317 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:M 15 Dec 2024 13:13:28.319 * Ready to accept connections tcp
|
||||||
|
34:M 15 Dec 2024 13:13:28.320 * Ready to accept connections tls
|
||||||
|
34:S 15 Dec 2024 13:13:28.321 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:13:28.323 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:S 15 Dec 2024 13:13:28.327 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 13:13:28.330 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 13:13:28.332 * Cluster state changed: ok
|
||||||
|
34:S 15 Dec 2024 13:13:28.334 * Non blocking connect for SYNC fired the event.
|
||||||
|
34:S 15 Dec 2024 13:13:28.338 * Master replied to PING, replication can continue...
|
||||||
|
34:S 15 Dec 2024 13:13:28.339 * Trying a partial resynchronization (request 1443e39b506ca94b530837f3a3f734db4a096a17:1).
|
||||||
|
34:S 15 Dec 2024 13:13:33.421 * Full resync from master: ff84398ba7a75d26592ed8fac08848aef3bddbd7:0
|
||||||
|
34:S 15 Dec 2024 13:13:33.425 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
34:S 15 Dec 2024 13:13:33.427 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:13:33.428 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
34:S 15 Dec 2024 13:13:33.432 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
34:S 15 Dec 2024 13:13:33.434 * Loading RDB produced by version 7.9.224
|
||||||
|
34:S 15 Dec 2024 13:13:33.435 * RDB age 0 seconds
|
||||||
|
34:S 15 Dec 2024 13:13:33.436 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:S 15 Dec 2024 13:13:33.436 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:S 15 Dec 2024 13:13:33.437 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
34:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
34:S 15 Dec 2024 13:30:14.579 * Connection with master lost.
|
||||||
|
34:S 15 Dec 2024 13:30:14.579 * Caching the disconnected master state.
|
||||||
|
34:S 15 Dec 2024 13:30:14.579 * Reconnecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 13:30:14.580 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 13:30:14.580 # Error condition on socket for SYNC: Connection refused
|
||||||
|
34:S 15 Dec 2024 13:30:14.623 * User requested shutdown...
|
||||||
|
34:S 15 Dec 2024 13:30:14.623 * Removing the pid file.
|
||||||
|
34:S 15 Dec 2024 13:30:14.627 # Redis is now ready to exit, bye bye...
|
||||||
|
34:C 15 Dec 2024 13:30:30.721 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
34:C 15 Dec 2024 13:30:30.723 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
34:C 15 Dec 2024 13:30:30.726 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=34, just started
|
||||||
|
34:C 15 Dec 2024 13:30:30.731 * Configuration loaded
|
||||||
|
34:M 15 Dec 2024 13:30:30.736 * monotonic clock: POSIX clock_gettime
|
||||||
|
34:M 15 Dec 2024 13:30:30.746 * Running mode=cluster, port=16382.
|
||||||
|
34:M 15 Dec 2024 13:30:30.757 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
34:M 15 Dec 2024 13:30:30.773 * Server initialized
|
||||||
|
34:M 15 Dec 2024 13:30:30.795 * Loading RDB produced by version 7.9.224
|
||||||
|
34:M 15 Dec 2024 13:30:30.797 * RDB age 1017 seconds
|
||||||
|
34:M 15 Dec 2024 13:30:30.799 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:M 15 Dec 2024 13:30:30.800 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:M 15 Dec 2024 13:30:30.805 * DB loaded from disk: 0.030 seconds
|
||||||
|
34:M 15 Dec 2024 13:30:30.806 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:M 15 Dec 2024 13:30:30.808 * Ready to accept connections tcp
|
||||||
|
34:M 15 Dec 2024 13:30:30.810 * Ready to accept connections tls
|
||||||
|
34:S 15 Dec 2024 13:30:30.813 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:30:30.815 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:S 15 Dec 2024 13:30:30.817 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 13:30:30.820 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 13:30:30.821 * Cluster state changed: ok
|
||||||
|
34:S 15 Dec 2024 13:30:30.823 * Non blocking connect for SYNC fired the event.
|
||||||
|
34:S 15 Dec 2024 13:30:30.846 * Master replied to PING, replication can continue...
|
||||||
|
34:S 15 Dec 2024 13:30:30.849 * Trying a partial resynchronization (request ff84398ba7a75d26592ed8fac08848aef3bddbd7:1).
|
||||||
|
34:S 15 Dec 2024 13:30:35.918 * Full resync from master: 2e716795a57fb649d2d28f683fdf9fe86508e9be:0
|
||||||
|
34:S 15 Dec 2024 13:30:35.920 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
34:S 15 Dec 2024 13:30:35.921 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:30:35.921 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
34:S 15 Dec 2024 13:30:35.924 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
34:S 15 Dec 2024 13:30:35.925 * Loading RDB produced by version 7.9.224
|
||||||
|
34:S 15 Dec 2024 13:30:35.925 * RDB age 0 seconds
|
||||||
|
34:S 15 Dec 2024 13:30:35.925 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:S 15 Dec 2024 13:30:35.926 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:S 15 Dec 2024 13:30:35.926 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
34:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
34:S 15 Dec 2024 13:36:35.528 * User requested shutdown...
|
||||||
|
34:S 15 Dec 2024 13:36:35.529 * Removing the pid file.
|
||||||
|
34:S 15 Dec 2024 13:36:35.534 # Redis is now ready to exit, bye bye...
|
||||||
|
34:C 15 Dec 2024 13:37:03.398 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
34:C 15 Dec 2024 13:37:03.405 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
34:C 15 Dec 2024 13:37:03.418 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=34, just started
|
||||||
|
34:C 15 Dec 2024 13:37:03.424 * Configuration loaded
|
||||||
|
34:M 15 Dec 2024 13:37:03.426 * monotonic clock: POSIX clock_gettime
|
||||||
|
34:M 15 Dec 2024 13:37:03.437 * Running mode=cluster, port=16382.
|
||||||
|
34:M 15 Dec 2024 13:37:03.452 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
34:M 15 Dec 2024 13:37:03.465 * Server initialized
|
||||||
|
34:M 15 Dec 2024 13:37:03.481 * Loading RDB produced by version 7.9.224
|
||||||
|
34:M 15 Dec 2024 13:37:03.482 * RDB age 388 seconds
|
||||||
|
34:M 15 Dec 2024 13:37:03.484 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:M 15 Dec 2024 13:37:03.485 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:M 15 Dec 2024 13:37:03.488 * DB loaded from disk: 0.023 seconds
|
||||||
|
34:M 15 Dec 2024 13:37:03.490 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:M 15 Dec 2024 13:37:03.490 * Ready to accept connections tcp
|
||||||
|
34:M 15 Dec 2024 13:37:03.492 * Ready to accept connections tls
|
||||||
|
34:S 15 Dec 2024 13:37:03.494 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:37:03.500 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:S 15 Dec 2024 13:37:03.506 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 13:37:03.510 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 13:37:03.512 * Cluster state changed: ok
|
||||||
|
34:S 15 Dec 2024 13:37:03.514 * Non blocking connect for SYNC fired the event.
|
||||||
|
34:S 15 Dec 2024 13:37:03.522 * Master replied to PING, replication can continue...
|
||||||
|
34:S 15 Dec 2024 13:37:03.528 * Trying a partial resynchronization (request 2e716795a57fb649d2d28f683fdf9fe86508e9be:1).
|
||||||
|
34:S 15 Dec 2024 13:37:08.637 * Full resync from master: a219bea1c07f97a3e76aea963b45521d49fcbf16:0
|
||||||
|
34:S 15 Dec 2024 13:37:08.639 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
34:S 15 Dec 2024 13:37:08.640 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:37:08.641 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
34:S 15 Dec 2024 13:37:08.645 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
34:S 15 Dec 2024 13:37:08.649 * Loading RDB produced by version 7.9.224
|
||||||
|
34:S 15 Dec 2024 13:37:08.650 * RDB age 0 seconds
|
||||||
|
34:S 15 Dec 2024 13:37:08.650 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:S 15 Dec 2024 13:37:08.650 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:S 15 Dec 2024 13:37:08.651 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
34:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
34:S 15 Dec 2024 13:39:04.660 * User requested shutdown...
|
||||||
|
34:S 15 Dec 2024 13:39:04.660 * Removing the pid file.
|
||||||
|
34:S 15 Dec 2024 13:39:04.662 # Redis is now ready to exit, bye bye...
|
||||||
|
34:C 15 Dec 2024 13:39:11.108 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
34:C 15 Dec 2024 13:39:11.110 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
34:C 15 Dec 2024 13:39:11.111 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=34, just started
|
||||||
|
34:C 15 Dec 2024 13:39:11.116 * Configuration loaded
|
||||||
|
34:M 15 Dec 2024 13:39:11.118 * monotonic clock: POSIX clock_gettime
|
||||||
|
34:M 15 Dec 2024 13:39:11.123 * Running mode=cluster, port=16382.
|
||||||
|
34:M 15 Dec 2024 13:39:11.132 * Node configuration loaded, I'm a0970bd542e1e5b7512bfc61deac5244e4478c58
|
||||||
|
34:M 15 Dec 2024 13:39:11.146 * Server initialized
|
||||||
|
34:M 15 Dec 2024 13:39:11.151 * Loading RDB produced by version 7.9.224
|
||||||
|
34:M 15 Dec 2024 13:39:11.152 * RDB age 123 seconds
|
||||||
|
34:M 15 Dec 2024 13:39:11.154 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:M 15 Dec 2024 13:39:11.157 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:M 15 Dec 2024 13:39:11.160 * DB loaded from disk: 0.013 seconds
|
||||||
|
34:M 15 Dec 2024 13:39:11.162 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:M 15 Dec 2024 13:39:11.167 * Ready to accept connections tcp
|
||||||
|
34:M 15 Dec 2024 13:39:11.172 * Ready to accept connections tls
|
||||||
|
34:S 15 Dec 2024 13:39:11.174 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:39:11.175 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
34:S 15 Dec 2024 13:39:11.177 * Connecting to MASTER 127.0.0.1:16380
|
||||||
|
34:S 15 Dec 2024 13:39:11.179 * MASTER <-> REPLICA sync started
|
||||||
|
34:S 15 Dec 2024 13:39:11.180 * Cluster state changed: ok
|
||||||
|
34:S 15 Dec 2024 13:39:11.183 * Non blocking connect for SYNC fired the event.
|
||||||
|
34:S 15 Dec 2024 13:39:11.202 * Master replied to PING, replication can continue...
|
||||||
|
34:S 15 Dec 2024 13:39:11.207 * Trying a partial resynchronization (request a219bea1c07f97a3e76aea963b45521d49fcbf16:1).
|
||||||
|
34:S 15 Dec 2024 13:39:16.303 * Full resync from master: 437cfb40f65179a540ef3e9e90f93d384ec81034:0
|
||||||
|
34:S 15 Dec 2024 13:39:16.307 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
34:S 15 Dec 2024 13:39:16.309 * Discarding previously cached master state.
|
||||||
|
34:S 15 Dec 2024 13:39:16.309 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
34:S 15 Dec 2024 13:39:16.312 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
34:S 15 Dec 2024 13:39:16.313 * Loading RDB produced by version 7.9.224
|
||||||
|
34:S 15 Dec 2024 13:39:16.313 * RDB age 0 seconds
|
||||||
|
34:S 15 Dec 2024 13:39:16.313 * RDB memory usage when created 2.32 Mb
|
||||||
|
34:S 15 Dec 2024 13:39:16.313 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
34:S 15 Dec 2024 13:39:16.314 * MASTER <-> REPLICA sync: Finished with success
|
|
@ -0,0 +1 @@
|
||||||
|
34
|
|
@ -0,0 +1,7 @@
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 1734269951220 2 connected
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c myself,slave 4759591cd1762d973a5691128c97200deb57762f 0 0 3 connected
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 1734269951210 1734269951139 1 connected
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c master - 0 1734269951220 3 connected 10923-16383
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 master - 0 1734269951220 1 connected 0-5460
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 master - 1734269951210 1734269951139 2 connected 5461-10922
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16383
|
||||||
|
|
||||||
|
tls-port 27383
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,954 @@
|
||||||
|
51:C 05 Dec 2024 08:52:53.043 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
51:C 05 Dec 2024 08:52:53.045 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
51:C 05 Dec 2024 08:52:53.046 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=51, just started
|
||||||
|
51:C 05 Dec 2024 08:52:53.047 * Configuration loaded
|
||||||
|
51:M 05 Dec 2024 08:52:53.049 * monotonic clock: POSIX clock_gettime
|
||||||
|
51:M 05 Dec 2024 08:52:53.054 * Running mode=cluster, port=16383.
|
||||||
|
51:M 05 Dec 2024 08:52:53.057 * No cluster configuration found, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
51:M 05 Dec 2024 08:52:53.063 * Server initialized
|
||||||
|
51:M 05 Dec 2024 08:52:53.064 * Ready to accept connections tcp
|
||||||
|
51:M 05 Dec 2024 08:52:53.065 * Ready to accept connections tls
|
||||||
|
51:M 05 Dec 2024 08:52:54.169 * configEpoch set to 5 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
51:M 05 Dec 2024 08:52:54.197 * IP address for this node updated to 127.0.0.1
|
||||||
|
51:M 05 Dec 2024 08:52:54.198 * Address updated for node 3a1250b30cc37fca6db12b82fdefcbf615dec08f (), now 127.0.0.1:16379
|
||||||
|
51:M 05 Dec 2024 08:52:55.126 * Cluster state changed: ok
|
||||||
|
51:S 05 Dec 2024 08:52:55.181 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
51:S 05 Dec 2024 08:52:55.182 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 08:52:55.183 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 08:52:55.185 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 08:52:55.186 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 08:52:55.187 * Trying a partial resynchronization (request b005637e20a7d0941a7401a9e0bf39eb9d49ffd8:1).
|
||||||
|
51:S 05 Dec 2024 08:52:55.226 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is no longer master of shard 1087fd4f45c7c28067cb6644dee46293871bb95d; removed all 0 slot(s) it used to own
|
||||||
|
51:S 05 Dec 2024 08:52:55.226 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is now part of shard 8ee145d9d4fab776f3f51de69974dc0377adb434
|
||||||
|
51:S 05 Dec 2024 08:52:59.102 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is no longer master of shard 9298d5cf800697ccdb6ed879c2bb68d8d0e99d58; removed all 0 slot(s) it used to own
|
||||||
|
51:S 05 Dec 2024 08:52:59.102 * Node 16151e686272aa1dd2d15d4af407b6be45c9eca1 () is now part of shard 78410864729d91b91858e4f921bcd314095cfcc6
|
||||||
|
51:S 05 Dec 2024 08:53:00.218 * Full resync from master: f9404abd389c6de78b7b90ff0eee1bcfba21372c:0
|
||||||
|
51:S 05 Dec 2024 08:53:00.220 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
51:S 05 Dec 2024 08:53:00.221 * Discarding previously cached master state.
|
||||||
|
51:S 05 Dec 2024 08:53:00.221 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
51:S 05 Dec 2024 08:53:00.222 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
51:S 05 Dec 2024 08:53:00.223 * Loading RDB produced by version 7.9.224
|
||||||
|
51:S 05 Dec 2024 08:53:00.223 * RDB age 0 seconds
|
||||||
|
51:S 05 Dec 2024 08:53:00.224 * RDB memory usage when created 2.49 Mb
|
||||||
|
51:S 05 Dec 2024 08:53:00.224 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
51:S 05 Dec 2024 08:53:00.224 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
51:S 05 Dec 2024 10:54:04.761 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 10:54:04.762 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 10:54:04.764 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 10:54:04.764 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 10:54:04.765 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 10:54:04.766 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 10:54:04.767 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 10:54:04.767 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:9493).
|
||||||
|
51:S 05 Dec 2024 10:54:04.768 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 10:54:04.769 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 05 Dec 2024 13:52:40.662 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 13:52:40.665 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 13:52:40.666 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 13:52:40.666 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 13:52:40.667 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 13:52:40.668 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 13:52:40.668 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 13:52:40.669 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:14183).
|
||||||
|
51:S 05 Dec 2024 13:52:40.669 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 13:52:40.670 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 05 Dec 2024 15:54:50.121 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 15:54:50.122 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 15:54:50.123 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 15:54:50.124 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 15:54:50.125 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 15:54:50.126 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 15:54:50.126 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 15:54:50.127 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:14225).
|
||||||
|
51:S 05 Dec 2024 15:54:50.129 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 15:54:50.129 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 05 Dec 2024 17:56:41.272 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 17:56:41.273 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 17:56:41.274 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 17:56:41.275 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 17:56:41.277 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 17:56:41.277 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 17:56:41.278 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 17:56:41.278 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:14267).
|
||||||
|
51:S 05 Dec 2024 17:56:41.279 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 17:56:41.280 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 05 Dec 2024 18:09:24.204 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 18:09:24.205 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 18:09:24.206 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 18:09:24.206 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 18:09:24.208 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 18:09:24.208 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 18:09:24.208 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 18:09:24.209 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:14309).
|
||||||
|
51:S 05 Dec 2024 18:09:24.210 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 18:09:24.211 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 05 Dec 2024 22:02:39.747 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 05 Dec 2024 22:02:39.749 * Connection with master lost.
|
||||||
|
51:S 05 Dec 2024 22:02:39.750 * Caching the disconnected master state.
|
||||||
|
51:S 05 Dec 2024 22:02:39.750 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 05 Dec 2024 22:02:39.752 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 05 Dec 2024 22:02:39.753 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 05 Dec 2024 22:02:39.754 * Master replied to PING, replication can continue...
|
||||||
|
51:S 05 Dec 2024 22:02:39.755 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19335).
|
||||||
|
51:S 05 Dec 2024 22:02:39.758 * Successful partial resynchronization with master.
|
||||||
|
51:S 05 Dec 2024 22:02:39.759 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 00:04:43.093 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 06 Dec 2024 00:04:43.094 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 00:04:43.095 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 00:04:43.096 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 00:04:43.097 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 00:04:43.097 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 00:04:43.098 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 00:04:43.099 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19363).
|
||||||
|
51:S 06 Dec 2024 00:04:43.100 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 00:04:43.100 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 04:08:35.932 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 06 Dec 2024 04:08:35.933 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 04:08:35.933 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 04:08:35.934 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 04:08:35.934 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 04:08:35.935 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 04:08:35.935 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 04:08:35.936 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19405).
|
||||||
|
51:S 06 Dec 2024 04:08:35.937 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 04:08:35.937 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 06:10:39.926 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 06:10:39.927 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 06:10:39.928 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 06:10:39.928 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 06:10:39.929 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 06:10:39.929 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 06:10:39.930 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19447).
|
||||||
|
51:S 06 Dec 2024 06:10:39.932 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 06:10:39.932 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 09:13:44.623 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 09:13:44.623 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 09:13:44.624 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 09:13:44.625 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 09:13:44.625 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 09:13:44.626 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 09:13:44.627 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19489).
|
||||||
|
51:S 06 Dec 2024 09:13:44.628 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 09:13:44.629 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 12:16:42.938 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 12:16:42.939 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 12:16:42.940 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 12:16:42.941 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 12:16:42.941 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 12:16:42.942 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 12:16:42.942 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19517).
|
||||||
|
51:S 06 Dec 2024 12:16:42.944 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 12:16:42.945 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 14:18:39.845 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 06 Dec 2024 14:18:39.846 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 14:18:39.846 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 14:18:39.847 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 14:18:39.848 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 14:18:39.848 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 14:18:39.849 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 14:18:39.849 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19559).
|
||||||
|
51:S 06 Dec 2024 14:18:39.850 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 14:18:39.850 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 17:21:38.686 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 06 Dec 2024 17:21:38.686 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 17:21:38.687 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 17:21:38.687 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 17:21:38.688 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 17:21:38.688 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 17:21:38.689 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 17:21:38.689 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19601).
|
||||||
|
51:S 06 Dec 2024 17:21:38.689 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 17:21:38.690 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 18:22:39.833 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 06 Dec 2024 18:22:39.834 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 18:22:39.834 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 18:22:39.835 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 18:22:39.835 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 18:22:39.835 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 18:22:39.836 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 18:22:39.836 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19643).
|
||||||
|
51:S 06 Dec 2024 18:22:39.837 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 18:22:39.837 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 21:25:36.006 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 21:25:36.007 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 21:25:36.007 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 21:25:36.007 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 21:25:36.008 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 21:25:36.008 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 21:25:36.009 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19685).
|
||||||
|
51:S 06 Dec 2024 21:25:36.010 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 21:25:36.010 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 06 Dec 2024 22:26:41.988 * Connection with master lost.
|
||||||
|
51:S 06 Dec 2024 22:26:41.989 * Caching the disconnected master state.
|
||||||
|
51:S 06 Dec 2024 22:26:41.989 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 06 Dec 2024 22:26:41.990 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 06 Dec 2024 22:26:41.990 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 06 Dec 2024 22:26:41.991 * Master replied to PING, replication can continue...
|
||||||
|
51:S 06 Dec 2024 22:26:41.991 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19713).
|
||||||
|
51:S 06 Dec 2024 22:26:41.992 * Successful partial resynchronization with master.
|
||||||
|
51:S 06 Dec 2024 22:26:41.993 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 01:29:37.235 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 01:29:37.236 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 01:29:37.237 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 01:29:37.238 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 01:29:37.239 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 01:29:37.239 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 01:29:37.240 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19755).
|
||||||
|
51:S 07 Dec 2024 01:29:37.241 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 01:29:37.242 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 04:32:39.559 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 07 Dec 2024 04:32:39.561 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 04:32:39.562 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 04:32:39.563 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 04:32:39.565 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 04:32:39.565 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 04:32:39.566 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 04:32:39.567 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19797).
|
||||||
|
51:S 07 Dec 2024 04:32:39.568 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 04:32:39.568 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 07:35:36.246 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 07:35:36.247 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 07:35:36.248 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 07:35:36.249 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 07:35:36.249 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 07:35:36.250 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 07:35:36.250 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19839).
|
||||||
|
51:S 07 Dec 2024 07:35:36.251 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 07:35:36.252 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 09:37:48.367 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 09:37:48.367 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 09:37:48.368 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 09:37:48.368 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 09:37:48.369 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 09:37:48.369 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 09:37:48.370 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19881).
|
||||||
|
51:S 07 Dec 2024 09:37:48.371 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 09:37:48.371 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 12:40:38.375 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 12:40:38.376 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 12:40:38.377 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 12:40:38.378 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 12:40:38.379 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 12:40:38.379 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 12:40:38.380 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19909).
|
||||||
|
51:S 07 Dec 2024 12:40:38.382 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 12:40:38.383 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 14:42:36.509 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 07 Dec 2024 14:42:36.510 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 14:42:36.511 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 14:42:36.512 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 14:42:36.513 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 14:42:36.513 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 14:42:36.514 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 14:42:36.514 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19951).
|
||||||
|
51:S 07 Dec 2024 14:42:36.516 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 14:42:36.516 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 16:44:45.783 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 16:44:45.783 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 16:44:45.784 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 16:44:45.785 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 16:44:45.786 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 16:44:45.786 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 16:44:45.786 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:19993).
|
||||||
|
51:S 07 Dec 2024 16:44:45.787 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 16:44:45.787 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 19:47:46.144 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 07 Dec 2024 19:47:46.146 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 19:47:46.148 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 19:47:46.149 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 19:47:46.151 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 19:47:46.151 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 19:47:46.152 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 19:47:46.153 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20035).
|
||||||
|
51:S 07 Dec 2024 19:47:46.154 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 19:47:46.154 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 07 Dec 2024 22:20:19.668 * Connection with master lost.
|
||||||
|
51:S 07 Dec 2024 22:20:19.669 * Caching the disconnected master state.
|
||||||
|
51:S 07 Dec 2024 22:20:19.670 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 07 Dec 2024 22:20:19.671 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 07 Dec 2024 22:20:19.672 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 07 Dec 2024 22:20:19.673 * Master replied to PING, replication can continue...
|
||||||
|
51:S 07 Dec 2024 22:20:19.673 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20063).
|
||||||
|
51:S 07 Dec 2024 22:20:19.674 * Successful partial resynchronization with master.
|
||||||
|
51:S 07 Dec 2024 22:20:19.675 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 00:52:42.155 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 00:52:42.156 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 00:52:42.157 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 00:52:42.157 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 00:52:42.158 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 00:52:42.159 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 00:52:42.160 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20105).
|
||||||
|
51:S 08 Dec 2024 00:52:42.161 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 00:52:42.161 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 02:54:50.869 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 08 Dec 2024 02:54:50.871 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 02:54:50.871 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 02:54:50.872 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 02:54:50.874 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 02:54:50.874 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 02:54:50.875 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 02:54:50.876 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20147).
|
||||||
|
51:S 08 Dec 2024 02:54:50.876 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 02:54:50.877 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 05:57:36.827 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 08 Dec 2024 05:57:36.829 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 05:57:36.829 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 05:57:36.831 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 05:57:36.832 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 05:57:36.833 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 05:57:36.834 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 05:57:36.835 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20189).
|
||||||
|
51:S 08 Dec 2024 05:57:36.837 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 05:57:36.838 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 06:58:42.667 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 08 Dec 2024 06:58:42.669 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 06:58:42.669 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 06:58:42.670 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 06:58:42.671 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 06:58:42.672 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 06:58:42.672 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 06:58:42.673 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20217).
|
||||||
|
51:S 08 Dec 2024 06:58:42.674 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 06:58:42.674 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 10:01:42.222 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 08 Dec 2024 10:01:42.226 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 10:01:42.226 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 10:01:42.227 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 10:01:42.228 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 10:01:42.228 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 10:01:42.229 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 10:01:42.229 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20259).
|
||||||
|
51:S 08 Dec 2024 10:01:42.230 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 10:01:42.230 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 08 Dec 2024 10:43:04.130 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 08 Dec 2024 10:43:04.130 * Connection with master lost.
|
||||||
|
51:S 08 Dec 2024 10:43:04.131 * Caching the disconnected master state.
|
||||||
|
51:S 08 Dec 2024 10:43:04.131 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 08 Dec 2024 10:43:04.132 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 08 Dec 2024 10:43:04.132 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 08 Dec 2024 10:43:04.132 * Master replied to PING, replication can continue...
|
||||||
|
51:S 08 Dec 2024 10:43:04.133 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:20301).
|
||||||
|
51:S 08 Dec 2024 10:43:04.133 * Successful partial resynchronization with master.
|
||||||
|
51:S 08 Dec 2024 10:43:04.133 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 08:51:09.096 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 08:51:09.106 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 08:51:09.204 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 08:51:09.277 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 08:51:09.282 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 08:51:09.289 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 08:51:09.303 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:60859).
|
||||||
|
51:S 09 Dec 2024 08:51:09.337 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 08:51:09.350 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 11:19:13.650 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 11:19:13.650 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 11:19:13.651 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 11:19:13.651 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 11:19:13.652 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 11:19:13.652 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 11:19:13.653 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:72703).
|
||||||
|
51:S 09 Dec 2024 11:19:13.653 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 11:19:13.654 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 11:20:41.551 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 11:20:41.552 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 11:20:41.553 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 11:20:41.554 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 11:20:41.555 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 11:20:41.555 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 11:20:41.556 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 11:20:41.556 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:72745).
|
||||||
|
51:S 09 Dec 2024 11:20:41.557 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 11:20:41.558 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 13:18:55.016 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 13:18:55.018 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 13:18:55.019 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 13:18:55.019 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 13:18:55.020 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 13:18:55.021 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 13:18:55.022 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:72815).
|
||||||
|
51:S 09 Dec 2024 13:18:55.023 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 13:18:55.024 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 13:25:09.724 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 13:25:09.725 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 13:25:09.726 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 13:25:09.726 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 13:25:09.728 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 13:25:09.729 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 13:25:09.730 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 13:25:09.730 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:72857).
|
||||||
|
51:S 09 Dec 2024 13:25:09.731 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 13:25:09.731 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 14:25:30.872 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 14:25:30.873 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 14:25:30.876 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 14:25:30.877 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 14:25:30.878 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 14:25:30.878 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 14:25:30.880 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76749).
|
||||||
|
51:S 09 Dec 2024 14:25:30.883 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 14:25:30.884 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 14:31:59.498 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 14:31:59.500 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 14:31:59.501 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 14:31:59.501 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 14:31:59.502 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 14:31:59.503 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 14:31:59.503 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76791).
|
||||||
|
51:S 09 Dec 2024 14:31:59.504 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 14:31:59.505 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 14:33:54.304 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 14:33:54.305 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 14:33:54.305 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 14:33:54.306 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 14:33:54.306 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 14:33:54.307 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 14:33:54.307 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76833).
|
||||||
|
51:S 09 Dec 2024 14:33:54.308 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 14:33:54.308 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 15:26:24.959 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 15:26:24.960 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 15:26:24.960 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 15:26:24.961 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 15:26:24.963 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 15:26:24.964 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 15:26:24.965 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 15:26:24.966 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76861).
|
||||||
|
51:S 09 Dec 2024 15:26:24.967 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 15:26:24.968 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 16:28:34.650 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 16:28:34.651 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 16:28:34.651 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 16:28:34.652 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 16:28:34.652 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 16:28:34.653 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 16:28:34.653 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76903).
|
||||||
|
51:S 09 Dec 2024 16:28:34.654 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 16:28:34.655 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 16:31:14.801 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 16:31:14.803 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 16:31:14.804 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 16:31:14.805 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 16:31:14.806 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 16:31:14.806 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 16:31:14.807 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 16:31:14.807 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76945).
|
||||||
|
51:S 09 Dec 2024 16:31:14.809 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 16:31:14.809 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 16:33:25.623 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 16:33:25.623 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 16:33:25.624 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 16:33:25.625 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 16:33:25.625 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 16:33:25.626 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 16:33:25.626 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:76987).
|
||||||
|
51:S 09 Dec 2024 16:33:25.627 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 16:33:25.627 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 16:35:42.996 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 16:35:42.998 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 16:35:42.999 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 16:35:43.000 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 16:35:43.001 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 16:35:43.002 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 16:35:43.002 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 16:35:43.003 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77029).
|
||||||
|
51:S 09 Dec 2024 16:35:43.004 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 16:35:43.004 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 16:39:42.482 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 09 Dec 2024 16:39:42.484 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 16:39:42.484 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 16:39:42.485 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 16:39:42.486 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 16:39:42.487 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 16:39:42.487 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 16:39:42.488 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77057).
|
||||||
|
51:S 09 Dec 2024 16:39:42.489 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 16:39:42.490 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 17:24:49.184 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 17:24:49.185 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 17:24:49.185 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 17:24:49.186 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 17:24:49.186 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 17:24:49.187 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 17:24:49.187 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77099).
|
||||||
|
51:S 09 Dec 2024 17:24:49.188 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 17:24:49.188 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 18:23:35.885 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 18:23:35.885 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 18:23:35.886 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 18:23:35.886 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 18:23:35.887 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 18:23:35.887 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 18:23:35.888 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77141).
|
||||||
|
51:S 09 Dec 2024 18:23:35.888 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 18:23:35.889 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 18:25:26.938 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 18:25:26.939 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 18:25:26.940 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 18:25:26.940 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 18:25:26.941 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 18:25:26.942 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 18:25:26.942 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77183).
|
||||||
|
51:S 09 Dec 2024 18:25:26.943 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 18:25:26.944 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 20:27:25.443 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 20:27:25.444 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 20:27:25.445 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 20:27:25.445 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 20:27:25.446 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 20:27:25.447 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 20:27:25.447 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77211).
|
||||||
|
51:S 09 Dec 2024 20:27:25.449 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 20:27:25.449 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 09 Dec 2024 22:29:37.648 * Connection with master lost.
|
||||||
|
51:S 09 Dec 2024 22:29:37.650 * Caching the disconnected master state.
|
||||||
|
51:S 09 Dec 2024 22:29:37.651 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 09 Dec 2024 22:29:37.651 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 09 Dec 2024 22:29:37.651 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 09 Dec 2024 22:29:37.652 * Master replied to PING, replication can continue...
|
||||||
|
51:S 09 Dec 2024 22:29:37.652 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77253).
|
||||||
|
51:S 09 Dec 2024 22:29:37.657 * Successful partial resynchronization with master.
|
||||||
|
51:S 09 Dec 2024 22:29:37.657 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 00:31:38.151 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 00:31:38.152 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 00:31:38.153 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 00:31:38.154 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 00:31:38.155 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 00:31:38.155 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 00:31:38.156 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77295).
|
||||||
|
51:S 10 Dec 2024 00:31:38.157 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 00:31:38.157 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 03:34:24.071 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 10 Dec 2024 03:34:24.072 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 03:34:24.073 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 03:34:24.074 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 03:34:24.075 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 03:34:24.076 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 03:34:24.076 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 03:34:24.077 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77337).
|
||||||
|
51:S 10 Dec 2024 03:34:24.078 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 03:34:24.078 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 05:36:37.058 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 05:36:37.059 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 05:36:37.060 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 05:36:37.060 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 05:36:37.061 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 05:36:37.062 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 05:36:37.062 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77379).
|
||||||
|
51:S 10 Dec 2024 05:36:37.063 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 05:36:37.064 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 07:57:06.851 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 07:57:06.852 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 07:57:06.853 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 07:57:06.854 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 07:57:06.854 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 07:57:06.855 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 07:57:06.855 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77407).
|
||||||
|
51:S 10 Dec 2024 07:57:06.856 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 07:57:06.857 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 08:22:15.894 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 08:22:15.895 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 08:22:15.895 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 08:22:15.895 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 08:22:15.896 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 08:22:15.896 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 08:22:15.896 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:77449).
|
||||||
|
51:S 10 Dec 2024 08:22:15.897 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 08:22:15.897 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 11:44:54.820 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 10 Dec 2024 11:44:54.822 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 11:44:54.822 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 11:44:54.823 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 11:44:54.824 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 11:44:54.825 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 11:44:54.826 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 11:44:54.826 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:93647).
|
||||||
|
51:S 10 Dec 2024 11:44:54.827 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 11:44:54.828 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 10 Dec 2024 12:01:11.702 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 10 Dec 2024 12:01:11.703 * Connection with master lost.
|
||||||
|
51:S 10 Dec 2024 12:01:11.704 * Caching the disconnected master state.
|
||||||
|
51:S 10 Dec 2024 12:01:11.705 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 10 Dec 2024 12:01:11.706 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 10 Dec 2024 12:01:11.706 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 10 Dec 2024 12:01:11.706 * Master replied to PING, replication can continue...
|
||||||
|
51:S 10 Dec 2024 12:01:11.707 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:93717).
|
||||||
|
51:S 10 Dec 2024 12:01:11.707 * Successful partial resynchronization with master.
|
||||||
|
51:S 10 Dec 2024 12:01:11.708 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 16:23:35.379 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 11 Dec 2024 16:23:35.381 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 16:23:35.382 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 16:23:35.383 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 16:23:35.384 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 16:23:35.385 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 16:23:35.386 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 16:23:35.386 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:228803).
|
||||||
|
51:S 11 Dec 2024 16:23:35.388 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 16:23:35.388 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 16:36:13.223 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 11 Dec 2024 16:36:13.225 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 16:36:13.227 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 16:36:13.228 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 16:36:13.228 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 16:36:13.229 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 16:36:13.230 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 16:36:13.230 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:228845).
|
||||||
|
51:S 11 Dec 2024 16:36:13.232 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 16:36:13.232 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 16:38:28.471 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 16:38:28.472 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 16:38:28.472 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 16:38:28.472 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 16:38:28.473 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 16:38:28.473 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 16:38:28.473 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:228887).
|
||||||
|
51:S 11 Dec 2024 16:38:28.474 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 16:38:28.474 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 16:53:04.953 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 16:53:04.954 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 16:53:04.955 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 16:53:04.956 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 16:53:04.957 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 16:53:04.957 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 16:53:04.958 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:229601).
|
||||||
|
51:S 11 Dec 2024 16:53:04.959 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 16:53:04.959 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 20:00:58.350 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 11 Dec 2024 20:00:58.352 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 20:00:58.353 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 20:00:58.354 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 20:00:58.356 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 20:00:58.357 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 20:00:58.358 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 20:00:58.358 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244637).
|
||||||
|
51:S 11 Dec 2024 20:00:58.360 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 20:00:58.360 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 11 Dec 2024 21:00:32.154 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 11 Dec 2024 21:00:32.154 * Connection with master lost.
|
||||||
|
51:S 11 Dec 2024 21:00:32.155 * Caching the disconnected master state.
|
||||||
|
51:S 11 Dec 2024 21:00:32.156 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 11 Dec 2024 21:00:32.156 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 11 Dec 2024 21:00:32.157 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 11 Dec 2024 21:00:32.157 * Master replied to PING, replication can continue...
|
||||||
|
51:S 11 Dec 2024 21:00:32.158 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244679).
|
||||||
|
51:S 11 Dec 2024 21:00:32.159 * Successful partial resynchronization with master.
|
||||||
|
51:S 11 Dec 2024 21:00:32.159 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 12 Dec 2024 00:01:46.892 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 12 Dec 2024 00:01:46.894 * Connection with master lost.
|
||||||
|
51:S 12 Dec 2024 00:01:46.895 * Caching the disconnected master state.
|
||||||
|
51:S 12 Dec 2024 00:01:46.897 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 12 Dec 2024 00:01:46.897 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 12 Dec 2024 00:01:46.898 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 12 Dec 2024 00:01:46.898 * Master replied to PING, replication can continue...
|
||||||
|
51:S 12 Dec 2024 00:01:46.899 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244721).
|
||||||
|
51:S 12 Dec 2024 00:01:46.900 * Successful partial resynchronization with master.
|
||||||
|
51:S 12 Dec 2024 00:01:46.900 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 12 Dec 2024 02:35:21.841 * Connection with master lost.
|
||||||
|
51:S 12 Dec 2024 02:35:21.842 * Caching the disconnected master state.
|
||||||
|
51:S 12 Dec 2024 02:35:21.843 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 12 Dec 2024 02:35:21.844 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 12 Dec 2024 02:35:21.845 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 12 Dec 2024 02:35:21.845 * Master replied to PING, replication can continue...
|
||||||
|
51:S 12 Dec 2024 02:35:21.846 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244749).
|
||||||
|
51:S 12 Dec 2024 02:35:21.847 * Successful partial resynchronization with master.
|
||||||
|
51:S 12 Dec 2024 02:35:21.847 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 12 Dec 2024 06:07:37.046 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 12 Dec 2024 06:07:37.047 * Connection with master lost.
|
||||||
|
51:S 12 Dec 2024 06:07:37.047 * Caching the disconnected master state.
|
||||||
|
51:S 12 Dec 2024 06:07:37.047 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 12 Dec 2024 06:07:37.048 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 12 Dec 2024 06:07:37.048 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 12 Dec 2024 06:07:37.049 * Master replied to PING, replication can continue...
|
||||||
|
51:S 12 Dec 2024 06:07:37.049 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244791).
|
||||||
|
51:S 12 Dec 2024 06:07:37.050 * Successful partial resynchronization with master.
|
||||||
|
51:S 12 Dec 2024 06:07:37.050 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 12 Dec 2024 09:10:38.915 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 12 Dec 2024 09:10:38.918 * Connection with master lost.
|
||||||
|
51:S 12 Dec 2024 09:10:38.919 * Caching the disconnected master state.
|
||||||
|
51:S 12 Dec 2024 09:10:38.921 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 12 Dec 2024 09:10:38.922 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 12 Dec 2024 09:10:38.924 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 12 Dec 2024 09:10:38.924 * Master replied to PING, replication can continue...
|
||||||
|
51:S 12 Dec 2024 09:10:38.925 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244833).
|
||||||
|
51:S 12 Dec 2024 09:10:38.926 * Successful partial resynchronization with master.
|
||||||
|
51:S 12 Dec 2024 09:10:38.927 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 12 Dec 2024 09:24:18.695 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 12 Dec 2024 09:24:18.696 * Connection with master lost.
|
||||||
|
51:S 12 Dec 2024 09:24:18.696 * Caching the disconnected master state.
|
||||||
|
51:S 12 Dec 2024 09:24:18.696 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 12 Dec 2024 09:24:18.697 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 12 Dec 2024 09:24:18.697 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 12 Dec 2024 09:24:18.698 * Master replied to PING, replication can continue...
|
||||||
|
51:S 12 Dec 2024 09:24:18.698 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:244875).
|
||||||
|
51:S 12 Dec 2024 09:24:18.699 * Successful partial resynchronization with master.
|
||||||
|
51:S 12 Dec 2024 09:24:18.699 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 15 Dec 2024 08:15:45.040 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 15 Dec 2024 08:15:45.045 * Connection with master lost.
|
||||||
|
51:S 15 Dec 2024 08:15:45.048 * Caching the disconnected master state.
|
||||||
|
51:S 15 Dec 2024 08:15:45.061 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 15 Dec 2024 08:15:45.063 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 15 Dec 2024 08:15:45.069 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 15 Dec 2024 08:15:45.071 * Master replied to PING, replication can continue...
|
||||||
|
51:S 15 Dec 2024 08:15:45.131 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:292433).
|
||||||
|
51:S 15 Dec 2024 08:15:46.843 * Successful partial resynchronization with master.
|
||||||
|
51:S 15 Dec 2024 08:15:47.030 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 15 Dec 2024 11:09:23.351 * Connection with master lost.
|
||||||
|
51:S 15 Dec 2024 11:09:23.352 * Caching the disconnected master state.
|
||||||
|
51:S 15 Dec 2024 11:09:23.353 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 15 Dec 2024 11:09:23.353 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 15 Dec 2024 11:09:23.354 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 15 Dec 2024 11:09:23.355 * Master replied to PING, replication can continue...
|
||||||
|
51:S 15 Dec 2024 11:09:23.356 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:303479).
|
||||||
|
51:S 15 Dec 2024 11:09:23.356 * Successful partial resynchronization with master.
|
||||||
|
51:S 15 Dec 2024 11:09:23.357 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:S 15 Dec 2024 11:24:02.980 # MASTER timeout: no data nor PING received...
|
||||||
|
51:S 15 Dec 2024 11:24:02.980 * Connection with master lost.
|
||||||
|
51:S 15 Dec 2024 11:24:02.981 * Caching the disconnected master state.
|
||||||
|
51:S 15 Dec 2024 11:24:02.981 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 15 Dec 2024 11:24:02.982 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 15 Dec 2024 11:24:02.983 * Non blocking connect for SYNC fired the event.
|
||||||
|
51:S 15 Dec 2024 11:24:02.983 * Master replied to PING, replication can continue...
|
||||||
|
51:S 15 Dec 2024 11:24:02.984 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:304571).
|
||||||
|
51:S 15 Dec 2024 11:24:02.984 * Successful partial resynchronization with master.
|
||||||
|
51:S 15 Dec 2024 11:24:02.985 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
51:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
51:S 15 Dec 2024 11:47:34.868 * Connection with master lost.
|
||||||
|
51:S 15 Dec 2024 11:47:34.868 * Caching the disconnected master state.
|
||||||
|
51:S 15 Dec 2024 11:47:34.869 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
51:S 15 Dec 2024 11:47:34.870 * MASTER <-> REPLICA sync started
|
||||||
|
51:S 15 Dec 2024 11:47:34.870 # Error condition on socket for SYNC: Connection refused
|
||||||
|
51:S 15 Dec 2024 11:47:34.897 * User requested shutdown...
|
||||||
|
51:S 15 Dec 2024 11:47:34.898 * Removing the pid file.
|
||||||
|
51:S 15 Dec 2024 11:47:34.899 # Redis is now ready to exit, bye bye...
|
||||||
|
35:C 15 Dec 2024 11:49:55.884 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
35:C 15 Dec 2024 11:49:55.891 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
35:C 15 Dec 2024 11:49:55.897 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=35, just started
|
||||||
|
35:C 15 Dec 2024 11:49:55.902 * Configuration loaded
|
||||||
|
35:M 15 Dec 2024 11:49:55.925 * monotonic clock: POSIX clock_gettime
|
||||||
|
35:M 15 Dec 2024 11:49:55.943 * Running mode=cluster, port=16383.
|
||||||
|
35:M 15 Dec 2024 11:49:55.964 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
35:M 15 Dec 2024 11:49:55.993 * Server initialized
|
||||||
|
35:M 15 Dec 2024 11:49:56.000 * Loading RDB produced by version 7.9.224
|
||||||
|
35:M 15 Dec 2024 11:49:56.002 * RDB age 874616 seconds
|
||||||
|
35:M 15 Dec 2024 11:49:56.004 * RDB memory usage when created 2.49 Mb
|
||||||
|
35:M 15 Dec 2024 11:49:56.005 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
35:M 15 Dec 2024 11:49:56.007 * DB loaded from disk: 0.009 seconds
|
||||||
|
35:M 15 Dec 2024 11:49:56.008 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
35:M 15 Dec 2024 11:49:56.009 * Ready to accept connections tcp
|
||||||
|
35:M 15 Dec 2024 11:49:56.023 * Ready to accept connections tls
|
||||||
|
35:S 15 Dec 2024 11:49:56.029 * Discarding previously cached master state.
|
||||||
|
35:S 15 Dec 2024 11:49:56.030 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
35:S 15 Dec 2024 11:49:56.033 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
35:S 15 Dec 2024 11:49:56.035 * MASTER <-> REPLICA sync started
|
||||||
|
35:S 15 Dec 2024 11:49:56.041 * Cluster state changed: ok
|
||||||
|
35:S 15 Dec 2024 11:49:56.043 * Non blocking connect for SYNC fired the event.
|
||||||
|
35:S 15 Dec 2024 11:49:56.055 * Master replied to PING, replication can continue...
|
||||||
|
35:S 15 Dec 2024 11:49:56.057 * Trying a partial resynchronization (request f9404abd389c6de78b7b90ff0eee1bcfba21372c:1).
|
||||||
|
35:S 15 Dec 2024 11:50:01.136 * Full resync from master: 3aa5a35aa318aa4e042ed27c3083cc18bd4a5895:0
|
||||||
|
35:S 15 Dec 2024 11:50:01.138 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
35:S 15 Dec 2024 11:50:01.142 * Discarding previously cached master state.
|
||||||
|
35:S 15 Dec 2024 11:50:01.143 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
35:S 15 Dec 2024 11:50:01.146 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
35:S 15 Dec 2024 11:50:01.147 * Loading RDB produced by version 7.9.224
|
||||||
|
35:S 15 Dec 2024 11:50:01.148 * RDB age 0 seconds
|
||||||
|
35:S 15 Dec 2024 11:50:01.149 * RDB memory usage when created 2.32 Mb
|
||||||
|
35:S 15 Dec 2024 11:50:01.149 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
35:S 15 Dec 2024 11:50:01.151 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
35:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
35:S 15 Dec 2024 11:51:28.914 * User requested shutdown...
|
||||||
|
35:S 15 Dec 2024 11:51:28.914 * Removing the pid file.
|
||||||
|
35:S 15 Dec 2024 11:51:28.915 # Redis is now ready to exit, bye bye...
|
||||||
|
36:C 15 Dec 2024 11:52:09.096 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
36:C 15 Dec 2024 11:52:09.101 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
36:C 15 Dec 2024 11:52:09.158 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=36, just started
|
||||||
|
36:C 15 Dec 2024 11:52:09.164 * Configuration loaded
|
||||||
|
36:M 15 Dec 2024 11:52:09.166 * monotonic clock: POSIX clock_gettime
|
||||||
|
36:M 15 Dec 2024 11:52:09.172 * Running mode=cluster, port=16383.
|
||||||
|
36:M 15 Dec 2024 11:52:09.179 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
36:M 15 Dec 2024 11:52:09.188 * Server initialized
|
||||||
|
36:M 15 Dec 2024 11:52:09.190 * Loading RDB produced by version 7.9.224
|
||||||
|
36:M 15 Dec 2024 11:52:09.191 * RDB age 128 seconds
|
||||||
|
36:M 15 Dec 2024 11:52:09.192 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:M 15 Dec 2024 11:52:09.193 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:M 15 Dec 2024 11:52:09.195 * DB loaded from disk: 0.006 seconds
|
||||||
|
36:M 15 Dec 2024 11:52:09.195 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:M 15 Dec 2024 11:52:09.196 * Ready to accept connections tcp
|
||||||
|
36:M 15 Dec 2024 11:52:09.197 * Ready to accept connections tls
|
||||||
|
36:S 15 Dec 2024 11:52:09.198 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 11:52:09.199 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:S 15 Dec 2024 11:52:09.200 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
36:S 15 Dec 2024 11:52:09.201 * MASTER <-> REPLICA sync started
|
||||||
|
36:S 15 Dec 2024 11:52:09.203 * Cluster state changed: ok
|
||||||
|
36:S 15 Dec 2024 11:52:09.205 * Non blocking connect for SYNC fired the event.
|
||||||
|
36:S 15 Dec 2024 11:52:09.212 * Master replied to PING, replication can continue...
|
||||||
|
36:S 15 Dec 2024 11:52:09.217 * Trying a partial resynchronization (request 3aa5a35aa318aa4e042ed27c3083cc18bd4a5895:1).
|
||||||
|
36:S 15 Dec 2024 11:52:14.386 * Full resync from master: 71404f5ed80be657ff2307adb98dd12dd1cfee7f:0
|
||||||
|
36:S 15 Dec 2024 11:52:14.391 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
36:S 15 Dec 2024 11:52:14.394 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 11:52:14.395 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
36:S 15 Dec 2024 11:52:14.399 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
36:S 15 Dec 2024 11:52:14.400 * Loading RDB produced by version 7.9.224
|
||||||
|
36:S 15 Dec 2024 11:52:14.401 * RDB age 0 seconds
|
||||||
|
36:S 15 Dec 2024 11:52:14.402 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:S 15 Dec 2024 11:52:14.402 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:S 15 Dec 2024 11:52:14.404 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
36:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
36:S 15 Dec 2024 13:10:27.995 * User requested shutdown...
|
||||||
|
36:S 15 Dec 2024 13:10:27.996 * Removing the pid file.
|
||||||
|
36:S 15 Dec 2024 13:10:27.998 # Redis is now ready to exit, bye bye...
|
||||||
|
38:C 15 Dec 2024 13:13:28.245 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
38:C 15 Dec 2024 13:13:28.260 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
38:C 15 Dec 2024 13:13:28.262 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=38, just started
|
||||||
|
38:C 15 Dec 2024 13:13:28.264 * Configuration loaded
|
||||||
|
38:M 15 Dec 2024 13:13:28.267 * monotonic clock: POSIX clock_gettime
|
||||||
|
38:M 15 Dec 2024 13:13:28.282 * Running mode=cluster, port=16383.
|
||||||
|
38:M 15 Dec 2024 13:13:28.306 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
38:M 15 Dec 2024 13:13:28.319 * Server initialized
|
||||||
|
38:M 15 Dec 2024 13:13:28.322 * Loading RDB produced by version 7.9.224
|
||||||
|
38:M 15 Dec 2024 13:13:28.325 * RDB age 4874 seconds
|
||||||
|
38:M 15 Dec 2024 13:13:28.328 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:M 15 Dec 2024 13:13:28.331 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:M 15 Dec 2024 13:13:28.333 * DB loaded from disk: 0.013 seconds
|
||||||
|
38:M 15 Dec 2024 13:13:28.335 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:M 15 Dec 2024 13:13:28.337 * Ready to accept connections tcp
|
||||||
|
38:M 15 Dec 2024 13:13:28.338 * Ready to accept connections tls
|
||||||
|
38:S 15 Dec 2024 13:13:28.341 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:13:28.342 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:S 15 Dec 2024 13:13:28.343 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
38:S 15 Dec 2024 13:13:28.344 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 13:13:28.345 * Cluster state changed: ok
|
||||||
|
38:S 15 Dec 2024 13:13:28.347 * Non blocking connect for SYNC fired the event.
|
||||||
|
38:S 15 Dec 2024 13:13:28.356 * Master replied to PING, replication can continue...
|
||||||
|
38:S 15 Dec 2024 13:13:28.362 * Trying a partial resynchronization (request 71404f5ed80be657ff2307adb98dd12dd1cfee7f:1).
|
||||||
|
38:S 15 Dec 2024 13:13:33.524 * Full resync from master: bf5c6a12c9dfa2142f924ab295a8dc915665e209:0
|
||||||
|
38:S 15 Dec 2024 13:13:33.527 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
38:S 15 Dec 2024 13:13:33.528 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:13:33.528 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
38:S 15 Dec 2024 13:13:33.530 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
38:S 15 Dec 2024 13:13:33.531 * Loading RDB produced by version 7.9.224
|
||||||
|
38:S 15 Dec 2024 13:13:33.531 * RDB age 0 seconds
|
||||||
|
38:S 15 Dec 2024 13:13:33.531 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:S 15 Dec 2024 13:13:33.532 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:S 15 Dec 2024 13:13:33.532 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
38:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
38:S 15 Dec 2024 13:30:14.554 * User requested shutdown...
|
||||||
|
38:S 15 Dec 2024 13:30:14.555 * Removing the pid file.
|
||||||
|
38:S 15 Dec 2024 13:30:14.556 # Redis is now ready to exit, bye bye...
|
||||||
|
38:C 15 Dec 2024 13:30:30.737 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
38:C 15 Dec 2024 13:30:30.743 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
38:C 15 Dec 2024 13:30:30.747 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=38, just started
|
||||||
|
38:C 15 Dec 2024 13:30:30.751 * Configuration loaded
|
||||||
|
38:M 15 Dec 2024 13:30:30.752 * monotonic clock: POSIX clock_gettime
|
||||||
|
38:M 15 Dec 2024 13:30:30.761 * Running mode=cluster, port=16383.
|
||||||
|
38:M 15 Dec 2024 13:30:30.767 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
38:M 15 Dec 2024 13:30:30.798 * Server initialized
|
||||||
|
38:M 15 Dec 2024 13:30:30.804 * Loading RDB produced by version 7.9.224
|
||||||
|
38:M 15 Dec 2024 13:30:30.806 * RDB age 1017 seconds
|
||||||
|
38:M 15 Dec 2024 13:30:30.807 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:M 15 Dec 2024 13:30:30.808 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:M 15 Dec 2024 13:30:30.811 * DB loaded from disk: 0.010 seconds
|
||||||
|
38:M 15 Dec 2024 13:30:30.812 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:M 15 Dec 2024 13:30:30.814 * Ready to accept connections tcp
|
||||||
|
38:M 15 Dec 2024 13:30:30.815 * Ready to accept connections tls
|
||||||
|
38:S 15 Dec 2024 13:30:30.817 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:30:30.819 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:S 15 Dec 2024 13:30:30.821 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
38:S 15 Dec 2024 13:30:30.822 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 13:30:30.824 * Cluster state changed: ok
|
||||||
|
38:S 15 Dec 2024 13:30:30.826 * Non blocking connect for SYNC fired the event.
|
||||||
|
38:S 15 Dec 2024 13:30:30.840 * Master replied to PING, replication can continue...
|
||||||
|
38:S 15 Dec 2024 13:30:30.846 * Trying a partial resynchronization (request bf5c6a12c9dfa2142f924ab295a8dc915665e209:1).
|
||||||
|
38:S 15 Dec 2024 13:30:35.958 * Full resync from master: 4ce3cbf724bd81ee95f984e6dcce0a7d48cce5b7:0
|
||||||
|
38:S 15 Dec 2024 13:30:35.959 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
38:S 15 Dec 2024 13:30:35.960 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:30:35.960 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
38:S 15 Dec 2024 13:30:35.962 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
38:S 15 Dec 2024 13:30:35.963 * Loading RDB produced by version 7.9.224
|
||||||
|
38:S 15 Dec 2024 13:30:35.963 * RDB age 0 seconds
|
||||||
|
38:S 15 Dec 2024 13:30:35.963 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:S 15 Dec 2024 13:30:35.963 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:S 15 Dec 2024 13:30:35.963 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
38:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
38:S 15 Dec 2024 13:36:35.450 * Connection with master lost.
|
||||||
|
38:S 15 Dec 2024 13:36:35.450 * Caching the disconnected master state.
|
||||||
|
38:S 15 Dec 2024 13:36:35.451 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
38:S 15 Dec 2024 13:36:35.452 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 13:36:35.452 # Error condition on socket for SYNC: Connection refused
|
||||||
|
38:S 15 Dec 2024 13:36:35.529 * User requested shutdown...
|
||||||
|
38:S 15 Dec 2024 13:36:35.532 * Removing the pid file.
|
||||||
|
38:S 15 Dec 2024 13:36:35.540 # Redis is now ready to exit, bye bye...
|
||||||
|
36:C 15 Dec 2024 13:37:03.402 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
36:C 15 Dec 2024 13:37:03.407 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
36:C 15 Dec 2024 13:37:03.410 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=36, just started
|
||||||
|
36:C 15 Dec 2024 13:37:03.412 * Configuration loaded
|
||||||
|
36:M 15 Dec 2024 13:37:03.414 * monotonic clock: POSIX clock_gettime
|
||||||
|
36:M 15 Dec 2024 13:37:03.424 * Running mode=cluster, port=16383.
|
||||||
|
36:M 15 Dec 2024 13:37:03.436 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
36:M 15 Dec 2024 13:37:03.455 * Server initialized
|
||||||
|
36:M 15 Dec 2024 13:37:03.461 * Loading RDB produced by version 7.9.224
|
||||||
|
36:M 15 Dec 2024 13:37:03.462 * RDB age 388 seconds
|
||||||
|
36:M 15 Dec 2024 13:37:03.463 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:M 15 Dec 2024 13:37:03.465 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:M 15 Dec 2024 13:37:03.475 * DB loaded from disk: 0.007 seconds
|
||||||
|
36:M 15 Dec 2024 13:37:03.481 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:M 15 Dec 2024 13:37:03.482 * Ready to accept connections tcp
|
||||||
|
36:M 15 Dec 2024 13:37:03.483 * Ready to accept connections tls
|
||||||
|
36:S 15 Dec 2024 13:37:03.484 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 13:37:03.485 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:S 15 Dec 2024 13:37:03.487 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
36:S 15 Dec 2024 13:37:03.490 * MASTER <-> REPLICA sync started
|
||||||
|
36:S 15 Dec 2024 13:37:03.491 * Cluster state changed: ok
|
||||||
|
36:S 15 Dec 2024 13:37:03.494 * Non blocking connect for SYNC fired the event.
|
||||||
|
36:S 15 Dec 2024 13:37:03.511 * Master replied to PING, replication can continue...
|
||||||
|
36:S 15 Dec 2024 13:37:03.513 * Trying a partial resynchronization (request 4ce3cbf724bd81ee95f984e6dcce0a7d48cce5b7:1).
|
||||||
|
36:S 15 Dec 2024 13:37:08.627 * Full resync from master: 355911cd69d3058e32eaebf82a7dcfddb30ac962:0
|
||||||
|
36:S 15 Dec 2024 13:37:08.631 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
36:S 15 Dec 2024 13:37:08.632 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 13:37:08.633 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
36:S 15 Dec 2024 13:37:08.636 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
36:S 15 Dec 2024 13:37:08.638 * Loading RDB produced by version 7.9.224
|
||||||
|
36:S 15 Dec 2024 13:37:08.639 * RDB age 0 seconds
|
||||||
|
36:S 15 Dec 2024 13:37:08.641 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:S 15 Dec 2024 13:37:08.642 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:S 15 Dec 2024 13:37:08.644 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
36:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
36:S 15 Dec 2024 13:39:04.609 * Connection with master lost.
|
||||||
|
36:S 15 Dec 2024 13:39:04.610 * Caching the disconnected master state.
|
||||||
|
36:S 15 Dec 2024 13:39:04.610 * Reconnecting to MASTER 127.0.0.1:16381
|
||||||
|
36:S 15 Dec 2024 13:39:04.610 * MASTER <-> REPLICA sync started
|
||||||
|
36:S 15 Dec 2024 13:39:04.611 # Error condition on socket for SYNC: Connection refused
|
||||||
|
36:S 15 Dec 2024 13:39:04.664 * User requested shutdown...
|
||||||
|
36:S 15 Dec 2024 13:39:04.665 * Removing the pid file.
|
||||||
|
36:S 15 Dec 2024 13:39:04.668 # Redis is now ready to exit, bye bye...
|
||||||
|
36:C 15 Dec 2024 13:39:11.109 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
36:C 15 Dec 2024 13:39:11.113 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
36:C 15 Dec 2024 13:39:11.114 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=36, just started
|
||||||
|
36:C 15 Dec 2024 13:39:11.117 * Configuration loaded
|
||||||
|
36:M 15 Dec 2024 13:39:11.123 * monotonic clock: POSIX clock_gettime
|
||||||
|
36:M 15 Dec 2024 13:39:11.133 * Running mode=cluster, port=16383.
|
||||||
|
36:M 15 Dec 2024 13:39:11.140 * Node configuration loaded, I'm 0287949c6e8aa2fb3f26d81820cc54b82bfd551f
|
||||||
|
36:M 15 Dec 2024 13:39:11.159 * Server initialized
|
||||||
|
36:M 15 Dec 2024 13:39:11.164 * Loading RDB produced by version 7.9.224
|
||||||
|
36:M 15 Dec 2024 13:39:11.168 * RDB age 123 seconds
|
||||||
|
36:M 15 Dec 2024 13:39:11.172 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:M 15 Dec 2024 13:39:11.173 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:M 15 Dec 2024 13:39:11.175 * DB loaded from disk: 0.014 seconds
|
||||||
|
36:M 15 Dec 2024 13:39:11.177 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:M 15 Dec 2024 13:39:11.178 * Ready to accept connections tcp
|
||||||
|
36:M 15 Dec 2024 13:39:11.180 * Ready to accept connections tls
|
||||||
|
36:S 15 Dec 2024 13:39:11.185 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 13:39:11.187 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
36:S 15 Dec 2024 13:39:11.202 * Connecting to MASTER 127.0.0.1:16381
|
||||||
|
36:S 15 Dec 2024 13:39:11.207 * MASTER <-> REPLICA sync started
|
||||||
|
36:S 15 Dec 2024 13:39:11.209 * Cluster state changed: ok
|
||||||
|
36:S 15 Dec 2024 13:39:11.211 * Non blocking connect for SYNC fired the event.
|
||||||
|
36:S 15 Dec 2024 13:39:11.221 * Master replied to PING, replication can continue...
|
||||||
|
36:S 15 Dec 2024 13:39:11.225 * Trying a partial resynchronization (request 355911cd69d3058e32eaebf82a7dcfddb30ac962:1).
|
||||||
|
36:S 15 Dec 2024 13:39:16.287 * Full resync from master: 1a8efe2703e50e821bbd18094c0cd7901c7f26c7:0
|
||||||
|
36:S 15 Dec 2024 13:39:16.291 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
36:S 15 Dec 2024 13:39:16.292 * Discarding previously cached master state.
|
||||||
|
36:S 15 Dec 2024 13:39:16.294 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
36:S 15 Dec 2024 13:39:16.300 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
36:S 15 Dec 2024 13:39:16.303 * Loading RDB produced by version 7.9.224
|
||||||
|
36:S 15 Dec 2024 13:39:16.305 * RDB age 0 seconds
|
||||||
|
36:S 15 Dec 2024 13:39:16.306 * RDB memory usage when created 2.32 Mb
|
||||||
|
36:S 15 Dec 2024 13:39:16.307 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
36:S 15 Dec 2024 13:39:16.310 * MASTER <-> REPLICA sync: Finished with success
|
|
@ -0,0 +1 @@
|
||||||
|
36
|
|
@ -0,0 +1,7 @@
|
||||||
|
16151e686272aa1dd2d15d4af407b6be45c9eca1 127.0.0.1:16384@26384,,tls-port=27384,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 myself,slave 3a1250b30cc37fca6db12b82fdefcbf615dec08f 0 0 1 connected
|
||||||
|
a0970bd542e1e5b7512bfc61deac5244e4478c58 127.0.0.1:16382@26382,,tls-port=27382,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 slave 17003be25313b117da88e1dfefdb9ddb6bf68c90 0 1734269951220 2 connected
|
||||||
|
3a1250b30cc37fca6db12b82fdefcbf615dec08f 127.0.0.1:16379@26379,,tls-port=27379,shard-id=78410864729d91b91858e4f921bcd314095cfcc6 master - 0 1734269951220 1 connected 0-5460
|
||||||
|
17003be25313b117da88e1dfefdb9ddb6bf68c90 127.0.0.1:16380@26380,,tls-port=27380,shard-id=8ee145d9d4fab776f3f51de69974dc0377adb434 master - 1734269951210 1734269951139 2 connected 5461-10922
|
||||||
|
0287949c6e8aa2fb3f26d81820cc54b82bfd551f 127.0.0.1:16383@26383,,tls-port=27383,shard-id=4554bc07be3de979d00342a6de84369994bb059c slave 4759591cd1762d973a5691128c97200deb57762f 1734269951210 1734269951139 3 connected
|
||||||
|
4759591cd1762d973a5691128c97200deb57762f 127.0.0.1:16381@26381,,tls-port=27381,shard-id=4554bc07be3de979d00342a6de84369994bb059c master - 0 1734269951220 3 connected 10923-16383
|
||||||
|
vars currentEpoch 6 lastVoteEpoch 0
|
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
port 16384
|
||||||
|
|
||||||
|
tls-port 27384
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
cluster-enabled yes
|
||||||
|
|
||||||
|
cluster-config-file nodes.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,948 @@
|
||||||
|
53:C 05 Dec 2024 08:52:53.044 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
53:C 05 Dec 2024 08:52:53.046 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
53:C 05 Dec 2024 08:52:53.047 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=53, just started
|
||||||
|
53:C 05 Dec 2024 08:52:53.048 * Configuration loaded
|
||||||
|
53:M 05 Dec 2024 08:52:53.049 * monotonic clock: POSIX clock_gettime
|
||||||
|
53:M 05 Dec 2024 08:52:53.052 * Running mode=cluster, port=16384.
|
||||||
|
53:M 05 Dec 2024 08:52:53.054 * No cluster configuration found, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
53:M 05 Dec 2024 08:52:53.063 * Server initialized
|
||||||
|
53:M 05 Dec 2024 08:52:53.064 * Ready to accept connections tcp
|
||||||
|
53:M 05 Dec 2024 08:52:53.065 * Ready to accept connections tls
|
||||||
|
53:M 05 Dec 2024 08:52:54.170 * configEpoch set to 6 via CLUSTER SET-CONFIG-EPOCH
|
||||||
|
53:M 05 Dec 2024 08:52:54.298 * IP address for this node updated to 127.0.0.1
|
||||||
|
53:M 05 Dec 2024 08:52:54.299 * Address updated for node 3a1250b30cc37fca6db12b82fdefcbf615dec08f (), now 127.0.0.1:16379
|
||||||
|
53:M 05 Dec 2024 08:52:55.119 * Cluster state changed: ok
|
||||||
|
53:S 05 Dec 2024 08:52:55.185 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
53:S 05 Dec 2024 08:52:55.186 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 08:52:55.187 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 08:52:55.190 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 08:52:55.191 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 08:52:55.193 * Trying a partial resynchronization (request 475a53ff9b1050d016b117c845e53fb646954d92:1).
|
||||||
|
53:S 05 Dec 2024 08:52:56.046 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is no longer master of shard f38f13b3e7c036f38d10d4992c4602859c2ce8c6; removed all 0 slot(s) it used to own
|
||||||
|
53:S 05 Dec 2024 08:52:56.048 * Node a0970bd542e1e5b7512bfc61deac5244e4478c58 () is now part of shard 8ee145d9d4fab776f3f51de69974dc0377adb434
|
||||||
|
53:S 05 Dec 2024 08:52:59.100 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is no longer master of shard bf74e437af60a0baec0f3046f7708a9e490f7459; removed all 0 slot(s) it used to own
|
||||||
|
53:S 05 Dec 2024 08:52:59.100 * Node 0287949c6e8aa2fb3f26d81820cc54b82bfd551f () is now part of shard 4554bc07be3de979d00342a6de84369994bb059c
|
||||||
|
53:S 05 Dec 2024 08:53:00.219 * Full resync from master: 852019fda73091d220899f1a097f6fec8bdd51a2:0
|
||||||
|
53:S 05 Dec 2024 08:53:00.220 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
53:S 05 Dec 2024 08:53:00.221 * Discarding previously cached master state.
|
||||||
|
53:S 05 Dec 2024 08:53:00.221 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
53:S 05 Dec 2024 08:53:00.222 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
53:S 05 Dec 2024 08:53:00.223 * Loading RDB produced by version 7.9.224
|
||||||
|
53:S 05 Dec 2024 08:53:00.223 * RDB age 0 seconds
|
||||||
|
53:S 05 Dec 2024 08:53:00.224 * RDB memory usage when created 2.46 Mb
|
||||||
|
53:S 05 Dec 2024 08:53:00.224 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
53:S 05 Dec 2024 08:53:00.224 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
53:S 05 Dec 2024 10:54:04.658 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 05 Dec 2024 10:54:04.658 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 10:54:04.659 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 10:54:04.659 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 10:54:04.661 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 10:54:04.661 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 10:54:04.662 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 10:54:04.662 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:9493).
|
||||||
|
53:S 05 Dec 2024 10:54:04.663 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 10:54:04.664 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 05 Dec 2024 13:52:40.538 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 13:52:40.539 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 13:52:40.540 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 13:52:40.541 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 13:52:40.541 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 13:52:40.542 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 13:52:40.542 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:14183).
|
||||||
|
53:S 05 Dec 2024 13:52:40.543 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 13:52:40.544 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 05 Dec 2024 15:54:50.065 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 15:54:50.065 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 15:54:50.066 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 15:54:50.066 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 15:54:50.067 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 15:54:50.067 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 15:54:50.068 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:14211).
|
||||||
|
53:S 05 Dec 2024 15:54:50.068 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 15:54:50.069 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 05 Dec 2024 17:56:40.956 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 17:56:40.957 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 17:56:40.957 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 17:56:40.958 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 17:56:40.959 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 17:56:40.959 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 17:56:40.960 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:14253).
|
||||||
|
53:S 05 Dec 2024 17:56:40.961 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 17:56:40.961 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 05 Dec 2024 18:09:24.078 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 18:09:24.078 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 18:09:24.078 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 18:09:24.079 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 18:09:24.079 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 18:09:24.079 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 18:09:24.079 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:14295).
|
||||||
|
53:S 05 Dec 2024 18:09:24.080 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 18:09:24.080 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 05 Dec 2024 22:02:39.758 * Connection with master lost.
|
||||||
|
53:S 05 Dec 2024 22:02:39.759 * Caching the disconnected master state.
|
||||||
|
53:S 05 Dec 2024 22:02:39.760 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 05 Dec 2024 22:02:39.760 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 05 Dec 2024 22:02:39.761 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 05 Dec 2024 22:02:39.761 * Master replied to PING, replication can continue...
|
||||||
|
53:S 05 Dec 2024 22:02:39.762 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19321).
|
||||||
|
53:S 05 Dec 2024 22:02:39.763 * Successful partial resynchronization with master.
|
||||||
|
53:S 05 Dec 2024 22:02:39.763 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 00:04:43.090 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 00:04:43.091 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 00:04:43.092 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 00:04:43.093 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 00:04:43.094 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 00:04:43.095 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 00:04:43.096 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19363).
|
||||||
|
53:S 06 Dec 2024 00:04:43.097 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 00:04:43.098 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 04:08:35.825 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 04:08:35.826 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 04:08:35.827 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 04:08:35.827 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 04:08:35.828 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 04:08:35.828 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 04:08:35.829 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 04:08:35.829 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19405).
|
||||||
|
53:S 06 Dec 2024 04:08:35.830 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 04:08:35.830 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 06:10:40.118 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 06:10:40.119 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 06:10:40.120 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 06:10:40.121 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 06:10:40.122 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 06:10:40.122 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 06:10:40.123 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 06:10:40.123 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19447).
|
||||||
|
53:S 06 Dec 2024 06:10:40.124 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 06:10:40.125 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 09:13:44.828 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 09:13:44.830 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 09:13:44.831 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 09:13:44.832 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 09:13:44.834 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 09:13:44.835 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 09:13:44.835 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 09:13:44.836 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19489).
|
||||||
|
53:S 06 Dec 2024 09:13:44.837 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 09:13:44.838 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 12:16:43.046 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 12:16:43.047 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 12:16:43.048 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 12:16:43.049 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 12:16:43.050 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 12:16:43.051 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 12:16:43.052 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 12:16:43.052 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19517).
|
||||||
|
53:S 06 Dec 2024 12:16:43.053 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 12:16:43.053 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 14:18:40.484 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 14:18:40.485 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 14:18:40.486 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 14:18:40.486 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 14:18:40.487 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 14:18:40.488 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 14:18:40.488 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19559).
|
||||||
|
53:S 06 Dec 2024 14:18:40.489 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 14:18:40.490 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 17:21:38.378 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 17:21:38.379 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 17:21:38.381 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 17:21:38.382 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 17:21:38.383 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 17:21:38.384 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 17:21:38.384 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 17:21:38.384 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19601).
|
||||||
|
53:S 06 Dec 2024 17:21:38.385 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 17:21:38.386 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 18:22:40.468 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 18:22:40.469 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 18:22:40.470 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 18:22:40.471 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 18:22:40.472 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 18:22:40.472 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 18:22:40.473 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 18:22:40.473 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19643).
|
||||||
|
53:S 06 Dec 2024 18:22:40.474 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 18:22:40.474 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 21:25:35.788 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 21:25:35.789 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 21:25:35.790 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 21:25:35.791 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 21:25:35.794 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 21:25:35.794 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 21:25:35.795 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 21:25:35.795 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19671).
|
||||||
|
53:S 06 Dec 2024 21:25:35.797 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 21:25:35.797 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 06 Dec 2024 22:26:41.881 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 06 Dec 2024 22:26:41.884 * Connection with master lost.
|
||||||
|
53:S 06 Dec 2024 22:26:41.884 * Caching the disconnected master state.
|
||||||
|
53:S 06 Dec 2024 22:26:41.885 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 06 Dec 2024 22:26:41.886 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 06 Dec 2024 22:26:41.887 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 06 Dec 2024 22:26:41.888 * Master replied to PING, replication can continue...
|
||||||
|
53:S 06 Dec 2024 22:26:41.888 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19713).
|
||||||
|
53:S 06 Dec 2024 22:26:41.889 * Successful partial resynchronization with master.
|
||||||
|
53:S 06 Dec 2024 22:26:41.890 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 01:29:37.438 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 07 Dec 2024 01:29:37.439 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 01:29:37.439 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 01:29:37.440 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 01:29:37.440 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 01:29:37.441 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 01:29:37.441 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 01:29:37.442 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19755).
|
||||||
|
53:S 07 Dec 2024 01:29:37.442 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 01:29:37.443 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 04:32:40.181 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 07 Dec 2024 04:32:40.183 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 04:32:40.183 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 04:32:40.184 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 04:32:40.185 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 04:32:40.185 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 04:32:40.186 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 04:32:40.186 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19797).
|
||||||
|
53:S 07 Dec 2024 04:32:40.188 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 04:32:40.188 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 07:35:35.731 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 07:35:35.732 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 07:35:35.732 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 07:35:35.733 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 07:35:35.733 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 07:35:35.734 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 07:35:35.734 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19839).
|
||||||
|
53:S 07 Dec 2024 07:35:35.735 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 07:35:35.736 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 09:37:47.824 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 09:37:47.825 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 09:37:47.826 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 09:37:47.826 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 09:37:47.827 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 09:37:47.828 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 09:37:47.828 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19867).
|
||||||
|
53:S 07 Dec 2024 09:37:47.829 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 09:37:47.830 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 12:40:38.374 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 07 Dec 2024 12:40:38.374 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 12:40:38.375 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 12:40:38.376 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 12:40:38.377 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 12:40:38.378 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 12:40:38.379 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 12:40:38.379 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19909).
|
||||||
|
53:S 07 Dec 2024 12:40:38.382 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 12:40:38.383 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 14:42:36.718 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 07 Dec 2024 14:42:36.719 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 14:42:36.719 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 14:42:36.720 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 14:42:36.721 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 14:42:36.721 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 14:42:36.722 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 14:42:36.722 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19951).
|
||||||
|
53:S 07 Dec 2024 14:42:36.723 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 14:42:36.724 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 16:44:45.054 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 16:44:45.055 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 16:44:45.056 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 16:44:45.056 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 16:44:45.057 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 16:44:45.057 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 16:44:45.057 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:19993).
|
||||||
|
53:S 07 Dec 2024 16:44:45.058 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 16:44:45.059 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 19:47:46.355 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 19:47:46.356 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 19:47:46.356 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 19:47:46.356 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 19:47:46.357 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 19:47:46.357 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 19:47:46.357 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20021).
|
||||||
|
53:S 07 Dec 2024 19:47:46.358 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 19:47:46.358 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 07 Dec 2024 22:20:19.688 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 07 Dec 2024 22:20:19.689 * Connection with master lost.
|
||||||
|
53:S 07 Dec 2024 22:20:19.690 * Caching the disconnected master state.
|
||||||
|
53:S 07 Dec 2024 22:20:19.690 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 07 Dec 2024 22:20:19.692 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 07 Dec 2024 22:20:19.693 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 07 Dec 2024 22:20:19.694 * Master replied to PING, replication can continue...
|
||||||
|
53:S 07 Dec 2024 22:20:19.694 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20063).
|
||||||
|
53:S 07 Dec 2024 22:20:19.695 * Successful partial resynchronization with master.
|
||||||
|
53:S 07 Dec 2024 22:20:19.696 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 00:52:42.177 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 00:52:42.178 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 00:52:42.178 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 00:52:42.179 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 00:52:42.180 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 00:52:42.181 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 00:52:42.181 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 00:52:42.182 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20105).
|
||||||
|
53:S 08 Dec 2024 00:52:42.183 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 00:52:42.183 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 02:54:50.601 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 02:54:50.602 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 02:54:50.606 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 02:54:50.607 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 02:54:50.608 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 02:54:50.609 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 02:54:50.610 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 02:54:50.610 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20147).
|
||||||
|
53:S 08 Dec 2024 02:54:50.611 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 02:54:50.612 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 05:57:36.719 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 05:57:36.720 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 05:57:36.720 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 05:57:36.721 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 05:57:36.721 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 05:57:36.722 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 05:57:36.722 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 05:57:36.723 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20189).
|
||||||
|
53:S 08 Dec 2024 05:57:36.724 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 05:57:36.725 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 06:58:42.768 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 06:58:42.769 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 06:58:42.770 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 06:58:42.770 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 06:58:42.771 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 06:58:42.772 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 06:58:42.773 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 06:58:42.774 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20217).
|
||||||
|
53:S 08 Dec 2024 06:58:42.775 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 06:58:42.776 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 10:01:42.327 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 10:01:42.329 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 10:01:42.329 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 10:01:42.330 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 10:01:42.331 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 10:01:42.332 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 10:01:42.333 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 10:01:42.333 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20259).
|
||||||
|
53:S 08 Dec 2024 10:01:42.335 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 10:01:42.335 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 08 Dec 2024 10:43:04.232 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 08 Dec 2024 10:43:04.234 * Connection with master lost.
|
||||||
|
53:S 08 Dec 2024 10:43:04.234 * Caching the disconnected master state.
|
||||||
|
53:S 08 Dec 2024 10:43:04.234 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 08 Dec 2024 10:43:04.235 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 08 Dec 2024 10:43:04.235 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 08 Dec 2024 10:43:04.236 * Master replied to PING, replication can continue...
|
||||||
|
53:S 08 Dec 2024 10:43:04.236 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:20301).
|
||||||
|
53:S 08 Dec 2024 10:43:04.237 * Successful partial resynchronization with master.
|
||||||
|
53:S 08 Dec 2024 10:43:04.237 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 08:51:09.008 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 08:51:09.031 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 08:51:09.062 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 08:51:09.075 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 08:51:09.089 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 08:51:09.105 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 08:51:09.194 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:60845).
|
||||||
|
53:S 09 Dec 2024 08:51:09.287 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 08:51:09.296 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 11:19:14.142 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 09 Dec 2024 11:19:14.143 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 11:19:14.144 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 11:19:14.145 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 11:19:14.146 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 11:19:14.147 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 11:19:14.147 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 11:19:14.148 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:72689).
|
||||||
|
53:S 09 Dec 2024 11:19:14.149 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 11:19:14.150 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 11:20:41.331 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 09 Dec 2024 11:20:41.331 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 11:20:41.332 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 11:20:41.334 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 11:20:41.334 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 11:20:41.335 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 11:20:41.335 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 11:20:41.336 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:72731).
|
||||||
|
53:S 09 Dec 2024 11:20:41.337 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 11:20:41.338 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 13:18:55.020 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 13:18:55.021 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 13:18:55.021 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 13:18:55.022 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 13:18:55.022 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 13:18:55.023 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 13:18:55.024 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:72815).
|
||||||
|
53:S 09 Dec 2024 13:18:55.025 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 13:18:55.026 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 13:25:09.765 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 09 Dec 2024 13:25:09.766 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 13:25:09.766 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 13:25:09.767 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 13:25:09.768 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 13:25:09.769 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 13:25:09.770 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 13:25:09.770 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:72843).
|
||||||
|
53:S 09 Dec 2024 13:25:09.771 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 13:25:09.772 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 14:25:30.868 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 09 Dec 2024 14:25:30.870 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 14:25:30.872 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 14:25:30.873 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 14:25:30.876 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 14:25:30.877 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 14:25:30.878 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 14:25:30.879 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76735).
|
||||||
|
53:S 09 Dec 2024 14:25:30.881 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 14:25:30.883 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 14:31:59.073 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 14:31:59.074 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 14:31:59.075 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 14:31:59.075 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 14:31:59.076 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 14:31:59.077 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 14:31:59.078 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76777).
|
||||||
|
53:S 09 Dec 2024 14:31:59.079 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 14:31:59.080 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 14:33:54.113 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 14:33:54.115 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 14:33:54.116 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 14:33:54.117 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 14:33:54.117 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 14:33:54.118 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 14:33:54.119 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76819).
|
||||||
|
53:S 09 Dec 2024 14:33:54.121 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 14:33:54.121 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 15:26:24.864 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 15:26:24.865 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 15:26:24.865 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 15:26:24.866 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 15:26:24.866 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 15:26:24.867 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 15:26:24.867 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76847).
|
||||||
|
53:S 09 Dec 2024 15:26:24.868 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 15:26:24.869 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 16:28:34.956 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 09 Dec 2024 16:28:34.957 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 16:28:34.957 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 16:28:34.958 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 16:28:34.959 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 16:28:34.960 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 16:28:34.960 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 16:28:34.961 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76889).
|
||||||
|
53:S 09 Dec 2024 16:28:34.961 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 16:28:34.961 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 16:31:14.697 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 16:31:14.698 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 16:31:14.699 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 16:31:14.699 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 16:31:14.700 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 16:31:14.700 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 16:31:14.701 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76931).
|
||||||
|
53:S 09 Dec 2024 16:31:14.701 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 16:31:14.702 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 16:33:25.830 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 16:33:25.831 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 16:33:25.832 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 16:33:25.833 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 16:33:25.836 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 16:33:25.837 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 16:33:25.837 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:76973).
|
||||||
|
53:S 09 Dec 2024 16:33:25.839 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 16:33:25.839 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 16:35:42.581 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 16:35:42.582 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 16:35:42.583 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 16:35:42.584 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 16:35:42.584 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 16:35:42.585 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 16:35:42.586 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77015).
|
||||||
|
53:S 09 Dec 2024 16:35:42.587 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 16:35:42.587 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 16:39:42.055 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 16:39:42.055 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 16:39:42.055 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 16:39:42.056 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 16:39:42.056 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 16:39:42.056 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 16:39:42.057 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77043).
|
||||||
|
53:S 09 Dec 2024 16:39:42.057 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 16:39:42.057 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 17:24:49.597 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 17:24:49.597 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 17:24:49.598 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 17:24:49.598 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 17:24:49.598 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 17:24:49.599 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 17:24:49.599 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77085).
|
||||||
|
53:S 09 Dec 2024 17:24:49.600 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 17:24:49.600 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 18:23:36.102 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 18:23:36.103 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 18:23:36.103 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 18:23:36.104 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 18:23:36.104 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 18:23:36.105 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 18:23:36.105 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77127).
|
||||||
|
53:S 09 Dec 2024 18:23:36.106 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 18:23:36.107 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 18:25:27.246 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 18:25:27.246 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 18:25:27.246 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 18:25:27.247 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 18:25:27.247 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 18:25:27.247 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 18:25:27.248 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77169).
|
||||||
|
53:S 09 Dec 2024 18:25:27.249 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 18:25:27.249 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 20:27:25.787 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 20:27:25.788 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 20:27:25.788 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 20:27:25.789 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 20:27:25.789 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 20:27:25.790 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 20:27:25.791 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77211).
|
||||||
|
53:S 09 Dec 2024 20:27:25.792 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 20:27:25.792 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 09 Dec 2024 22:29:37.854 * Connection with master lost.
|
||||||
|
53:S 09 Dec 2024 22:29:37.854 * Caching the disconnected master state.
|
||||||
|
53:S 09 Dec 2024 22:29:37.854 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 09 Dec 2024 22:29:37.855 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 09 Dec 2024 22:29:37.855 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 09 Dec 2024 22:29:37.855 * Master replied to PING, replication can continue...
|
||||||
|
53:S 09 Dec 2024 22:29:37.855 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77239).
|
||||||
|
53:S 09 Dec 2024 22:29:37.856 * Successful partial resynchronization with master.
|
||||||
|
53:S 09 Dec 2024 22:29:37.857 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 00:31:38.337 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 10 Dec 2024 00:31:38.338 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 00:31:38.339 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 00:31:38.340 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 00:31:38.341 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 00:31:38.342 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 00:31:38.342 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 00:31:38.343 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77281).
|
||||||
|
53:S 10 Dec 2024 00:31:38.344 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 00:31:38.344 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 03:34:23.946 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 10 Dec 2024 03:34:23.949 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 03:34:23.950 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 03:34:23.951 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 03:34:23.953 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 03:34:23.953 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 03:34:23.954 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 03:34:23.955 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77323).
|
||||||
|
53:S 10 Dec 2024 03:34:23.956 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 03:34:23.956 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 05:36:37.227 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 05:36:37.228 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 05:36:37.228 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 05:36:37.229 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 05:36:37.230 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 05:36:37.231 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 05:36:37.231 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77365).
|
||||||
|
53:S 10 Dec 2024 05:36:37.232 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 05:36:37.233 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 07:57:06.916 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 07:57:06.917 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 07:57:06.917 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 07:57:06.918 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 07:57:06.919 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 07:57:06.919 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 07:57:06.920 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77393).
|
||||||
|
53:S 10 Dec 2024 07:57:06.921 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 07:57:06.921 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 08:22:15.983 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 08:22:15.983 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 08:22:15.984 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 08:22:15.984 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 08:22:15.985 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 08:22:15.985 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 08:22:15.985 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:77435).
|
||||||
|
53:S 10 Dec 2024 08:22:15.986 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 08:22:15.986 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 11:44:54.282 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 10 Dec 2024 11:44:54.283 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 11:44:54.284 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 11:44:54.286 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 11:44:54.287 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 11:44:54.288 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 11:44:54.289 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 11:44:54.289 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:93633).
|
||||||
|
53:S 10 Dec 2024 11:44:54.290 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 11:44:54.291 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 10 Dec 2024 12:01:11.906 * Connection with master lost.
|
||||||
|
53:S 10 Dec 2024 12:01:11.906 * Caching the disconnected master state.
|
||||||
|
53:S 10 Dec 2024 12:01:11.907 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 10 Dec 2024 12:01:11.907 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 10 Dec 2024 12:01:11.907 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 10 Dec 2024 12:01:11.908 * Master replied to PING, replication can continue...
|
||||||
|
53:S 10 Dec 2024 12:01:11.908 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:93717).
|
||||||
|
53:S 10 Dec 2024 12:01:11.909 * Successful partial resynchronization with master.
|
||||||
|
53:S 10 Dec 2024 12:01:11.909 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 16:23:34.618 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 11 Dec 2024 16:23:34.621 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 16:23:34.621 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 16:23:34.622 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 16:23:34.623 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 16:23:34.624 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 16:23:34.625 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 16:23:34.625 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:228775).
|
||||||
|
53:S 11 Dec 2024 16:23:34.627 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 16:23:34.627 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 16:36:12.951 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 11 Dec 2024 16:36:12.952 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 16:36:12.952 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 16:36:12.953 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 16:36:12.954 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 16:36:12.955 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 16:36:12.955 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 16:36:12.956 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:228803).
|
||||||
|
53:S 11 Dec 2024 16:36:12.957 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 16:36:12.958 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 16:38:28.146 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 11 Dec 2024 16:38:28.148 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 16:38:28.149 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 16:38:28.150 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 16:38:28.151 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 16:38:28.151 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 16:38:28.152 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 16:38:28.152 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:228845).
|
||||||
|
53:S 11 Dec 2024 16:38:28.154 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 16:38:28.154 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 16:53:05.570 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 16:53:05.571 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 16:53:05.572 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 16:53:05.572 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 16:53:05.573 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 16:53:05.574 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 16:53:05.574 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:229573).
|
||||||
|
53:S 11 Dec 2024 16:53:05.576 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 16:53:05.576 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 20:00:57.926 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 11 Dec 2024 20:00:57.928 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 20:00:57.929 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 20:00:57.930 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 20:00:57.932 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 20:00:57.933 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 20:00:57.934 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 20:00:57.934 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244595).
|
||||||
|
53:S 11 Dec 2024 20:00:57.935 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 20:00:57.936 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 11 Dec 2024 21:00:31.596 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 11 Dec 2024 21:00:31.599 * Connection with master lost.
|
||||||
|
53:S 11 Dec 2024 21:00:31.600 * Caching the disconnected master state.
|
||||||
|
53:S 11 Dec 2024 21:00:31.601 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 11 Dec 2024 21:00:31.602 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 11 Dec 2024 21:00:31.603 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 11 Dec 2024 21:00:31.604 * Master replied to PING, replication can continue...
|
||||||
|
53:S 11 Dec 2024 21:00:31.604 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244637).
|
||||||
|
53:S 11 Dec 2024 21:00:31.605 * Successful partial resynchronization with master.
|
||||||
|
53:S 11 Dec 2024 21:00:31.606 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 12 Dec 2024 00:01:46.333 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 12 Dec 2024 00:01:46.334 * Connection with master lost.
|
||||||
|
53:S 12 Dec 2024 00:01:46.335 * Caching the disconnected master state.
|
||||||
|
53:S 12 Dec 2024 00:01:46.337 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 12 Dec 2024 00:01:46.338 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 12 Dec 2024 00:01:46.339 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 12 Dec 2024 00:01:46.339 * Master replied to PING, replication can continue...
|
||||||
|
53:S 12 Dec 2024 00:01:46.340 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244679).
|
||||||
|
53:S 12 Dec 2024 00:01:46.341 * Successful partial resynchronization with master.
|
||||||
|
53:S 12 Dec 2024 00:01:46.341 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 12 Dec 2024 02:35:21.029 * Connection with master lost.
|
||||||
|
53:S 12 Dec 2024 02:35:21.030 * Caching the disconnected master state.
|
||||||
|
53:S 12 Dec 2024 02:35:21.031 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 12 Dec 2024 02:35:21.032 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 12 Dec 2024 02:35:21.033 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 12 Dec 2024 02:35:21.034 * Master replied to PING, replication can continue...
|
||||||
|
53:S 12 Dec 2024 02:35:21.034 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244721).
|
||||||
|
53:S 12 Dec 2024 02:35:21.035 * Successful partial resynchronization with master.
|
||||||
|
53:S 12 Dec 2024 02:35:21.036 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 12 Dec 2024 06:07:37.482 * Connection with master lost.
|
||||||
|
53:S 12 Dec 2024 06:07:37.483 * Caching the disconnected master state.
|
||||||
|
53:S 12 Dec 2024 06:07:37.483 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 12 Dec 2024 06:07:37.484 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 12 Dec 2024 06:07:37.485 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 12 Dec 2024 06:07:37.485 * Master replied to PING, replication can continue...
|
||||||
|
53:S 12 Dec 2024 06:07:37.486 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244763).
|
||||||
|
53:S 12 Dec 2024 06:07:37.487 * Successful partial resynchronization with master.
|
||||||
|
53:S 12 Dec 2024 06:07:37.487 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 12 Dec 2024 09:10:39.446 * Connection with master lost.
|
||||||
|
53:S 12 Dec 2024 09:10:39.446 * Caching the disconnected master state.
|
||||||
|
53:S 12 Dec 2024 09:10:39.447 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 12 Dec 2024 09:10:39.448 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 12 Dec 2024 09:10:39.448 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 12 Dec 2024 09:10:39.449 * Master replied to PING, replication can continue...
|
||||||
|
53:S 12 Dec 2024 09:10:39.449 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244791).
|
||||||
|
53:S 12 Dec 2024 09:10:39.450 * Successful partial resynchronization with master.
|
||||||
|
53:S 12 Dec 2024 09:10:39.451 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 12 Dec 2024 09:24:18.299 * Connection with master lost.
|
||||||
|
53:S 12 Dec 2024 09:24:18.300 * Caching the disconnected master state.
|
||||||
|
53:S 12 Dec 2024 09:24:18.300 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 12 Dec 2024 09:24:18.301 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 12 Dec 2024 09:24:18.301 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 12 Dec 2024 09:24:18.301 * Master replied to PING, replication can continue...
|
||||||
|
53:S 12 Dec 2024 09:24:18.302 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:244833).
|
||||||
|
53:S 12 Dec 2024 09:24:18.302 * Successful partial resynchronization with master.
|
||||||
|
53:S 12 Dec 2024 09:24:18.303 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 15 Dec 2024 08:15:47.168 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 15 Dec 2024 08:15:47.229 * Connection with master lost.
|
||||||
|
53:S 15 Dec 2024 08:15:47.308 * Caching the disconnected master state.
|
||||||
|
53:S 15 Dec 2024 08:15:47.344 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 15 Dec 2024 08:15:47.455 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 15 Dec 2024 08:15:47.478 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 15 Dec 2024 08:15:47.509 * Master replied to PING, replication can continue...
|
||||||
|
53:S 15 Dec 2024 08:15:47.535 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:292405).
|
||||||
|
53:S 15 Dec 2024 08:15:47.580 * Successful partial resynchronization with master.
|
||||||
|
53:S 15 Dec 2024 08:15:47.596 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 15 Dec 2024 11:09:22.921 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 15 Dec 2024 11:09:22.922 * Connection with master lost.
|
||||||
|
53:S 15 Dec 2024 11:09:22.922 * Caching the disconnected master state.
|
||||||
|
53:S 15 Dec 2024 11:09:22.923 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 15 Dec 2024 11:09:22.923 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 15 Dec 2024 11:09:22.923 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 15 Dec 2024 11:09:22.924 * Master replied to PING, replication can continue...
|
||||||
|
53:S 15 Dec 2024 11:09:22.924 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:303451).
|
||||||
|
53:S 15 Dec 2024 11:09:22.924 * Successful partial resynchronization with master.
|
||||||
|
53:S 15 Dec 2024 11:09:22.925 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:S 15 Dec 2024 11:24:03.813 # MASTER timeout: no data nor PING received...
|
||||||
|
53:S 15 Dec 2024 11:24:03.814 * Connection with master lost.
|
||||||
|
53:S 15 Dec 2024 11:24:03.814 * Caching the disconnected master state.
|
||||||
|
53:S 15 Dec 2024 11:24:03.815 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 15 Dec 2024 11:24:03.816 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 15 Dec 2024 11:24:03.816 * Non blocking connect for SYNC fired the event.
|
||||||
|
53:S 15 Dec 2024 11:24:03.816 * Master replied to PING, replication can continue...
|
||||||
|
53:S 15 Dec 2024 11:24:03.817 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:304543).
|
||||||
|
53:S 15 Dec 2024 11:24:03.818 * Successful partial resynchronization with master.
|
||||||
|
53:S 15 Dec 2024 11:24:03.818 * MASTER <-> REPLICA sync: Master accepted a Partial Resynchronization.
|
||||||
|
53:signal-handler (1734263254) Received SIGTERM scheduling shutdown...
|
||||||
|
53:S 15 Dec 2024 11:47:34.869 * Connection with master lost.
|
||||||
|
53:S 15 Dec 2024 11:47:34.870 * Caching the disconnected master state.
|
||||||
|
53:S 15 Dec 2024 11:47:34.870 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
53:S 15 Dec 2024 11:47:34.870 * MASTER <-> REPLICA sync started
|
||||||
|
53:S 15 Dec 2024 11:47:34.871 # Error condition on socket for SYNC: Connection refused
|
||||||
|
53:S 15 Dec 2024 11:47:34.922 * User requested shutdown...
|
||||||
|
53:S 15 Dec 2024 11:47:34.922 * Removing the pid file.
|
||||||
|
53:S 15 Dec 2024 11:47:34.923 # Redis is now ready to exit, bye bye...
|
||||||
|
37:C 15 Dec 2024 11:49:55.879 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
37:C 15 Dec 2024 11:49:55.883 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
37:C 15 Dec 2024 11:49:55.885 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=37, just started
|
||||||
|
37:C 15 Dec 2024 11:49:55.889 * Configuration loaded
|
||||||
|
37:M 15 Dec 2024 11:49:55.897 * monotonic clock: POSIX clock_gettime
|
||||||
|
37:M 15 Dec 2024 11:49:55.925 * Running mode=cluster, port=16384.
|
||||||
|
37:M 15 Dec 2024 11:49:55.945 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
37:M 15 Dec 2024 11:49:55.968 * Server initialized
|
||||||
|
37:M 15 Dec 2024 11:49:55.989 * Loading RDB produced by version 7.9.224
|
||||||
|
37:M 15 Dec 2024 11:49:55.996 * RDB age 874615 seconds
|
||||||
|
37:M 15 Dec 2024 11:49:55.998 * RDB memory usage when created 2.46 Mb
|
||||||
|
37:M 15 Dec 2024 11:49:56.000 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
37:M 15 Dec 2024 11:49:56.003 * DB loaded from disk: 0.021 seconds
|
||||||
|
37:M 15 Dec 2024 11:49:56.005 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
37:M 15 Dec 2024 11:49:56.006 * Ready to accept connections tcp
|
||||||
|
37:M 15 Dec 2024 11:49:56.007 * Ready to accept connections tls
|
||||||
|
37:S 15 Dec 2024 11:49:56.009 * Discarding previously cached master state.
|
||||||
|
37:S 15 Dec 2024 11:49:56.022 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
37:S 15 Dec 2024 11:49:56.025 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
37:S 15 Dec 2024 11:49:56.030 * MASTER <-> REPLICA sync started
|
||||||
|
37:S 15 Dec 2024 11:49:56.032 * Cluster state changed: ok
|
||||||
|
37:S 15 Dec 2024 11:49:56.035 * Non blocking connect for SYNC fired the event.
|
||||||
|
37:S 15 Dec 2024 11:49:56.055 * Master replied to PING, replication can continue...
|
||||||
|
37:S 15 Dec 2024 11:49:56.057 * Trying a partial resynchronization (request 852019fda73091d220899f1a097f6fec8bdd51a2:1).
|
||||||
|
37:S 15 Dec 2024 11:50:01.140 * Full resync from master: a0c35454ce7eb23be0bc04eb902ef10f7887220c:0
|
||||||
|
37:S 15 Dec 2024 11:50:01.142 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
37:S 15 Dec 2024 11:50:01.144 * Discarding previously cached master state.
|
||||||
|
37:S 15 Dec 2024 11:50:01.145 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
37:S 15 Dec 2024 11:50:01.148 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
37:S 15 Dec 2024 11:50:01.149 * Loading RDB produced by version 7.9.224
|
||||||
|
37:S 15 Dec 2024 11:50:01.149 * RDB age 0 seconds
|
||||||
|
37:S 15 Dec 2024 11:50:01.150 * RDB memory usage when created 2.32 Mb
|
||||||
|
37:S 15 Dec 2024 11:50:01.150 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
37:S 15 Dec 2024 11:50:01.151 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
37:signal-handler (1734263488) Received SIGTERM scheduling shutdown...
|
||||||
|
37:S 15 Dec 2024 11:51:28.917 * User requested shutdown...
|
||||||
|
37:S 15 Dec 2024 11:51:28.918 * Removing the pid file.
|
||||||
|
37:S 15 Dec 2024 11:51:28.922 # Redis is now ready to exit, bye bye...
|
||||||
|
38:C 15 Dec 2024 11:52:09.099 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
38:C 15 Dec 2024 11:52:09.159 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
38:C 15 Dec 2024 11:52:09.164 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=38, just started
|
||||||
|
38:C 15 Dec 2024 11:52:09.167 * Configuration loaded
|
||||||
|
38:M 15 Dec 2024 11:52:09.170 * monotonic clock: POSIX clock_gettime
|
||||||
|
38:M 15 Dec 2024 11:52:09.178 * Running mode=cluster, port=16384.
|
||||||
|
38:M 15 Dec 2024 11:52:09.180 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
38:M 15 Dec 2024 11:52:09.189 * Server initialized
|
||||||
|
38:M 15 Dec 2024 11:52:09.191 * Loading RDB produced by version 7.9.224
|
||||||
|
38:M 15 Dec 2024 11:52:09.193 * RDB age 128 seconds
|
||||||
|
38:M 15 Dec 2024 11:52:09.194 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:M 15 Dec 2024 11:52:09.195 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:M 15 Dec 2024 11:52:09.196 * DB loaded from disk: 0.005 seconds
|
||||||
|
38:M 15 Dec 2024 11:52:09.197 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:M 15 Dec 2024 11:52:09.198 * Ready to accept connections tcp
|
||||||
|
38:M 15 Dec 2024 11:52:09.199 * Ready to accept connections tls
|
||||||
|
38:S 15 Dec 2024 11:52:09.200 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 11:52:09.201 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:S 15 Dec 2024 11:52:09.203 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
38:S 15 Dec 2024 11:52:09.204 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 11:52:09.206 * Cluster state changed: ok
|
||||||
|
38:S 15 Dec 2024 11:52:09.207 * Non blocking connect for SYNC fired the event.
|
||||||
|
38:S 15 Dec 2024 11:52:09.217 * Master replied to PING, replication can continue...
|
||||||
|
38:S 15 Dec 2024 11:52:09.217 * Trying a partial resynchronization (request a0c35454ce7eb23be0bc04eb902ef10f7887220c:1).
|
||||||
|
38:S 15 Dec 2024 11:52:14.387 * Full resync from master: a9da8a191d5087229a79da94cda78736443f476d:0
|
||||||
|
38:S 15 Dec 2024 11:52:14.391 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
38:S 15 Dec 2024 11:52:14.394 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 11:52:14.396 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
38:S 15 Dec 2024 11:52:14.399 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
38:S 15 Dec 2024 11:52:14.400 * Loading RDB produced by version 7.9.224
|
||||||
|
38:S 15 Dec 2024 11:52:14.400 * RDB age 0 seconds
|
||||||
|
38:S 15 Dec 2024 11:52:14.401 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:S 15 Dec 2024 11:52:14.402 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:S 15 Dec 2024 11:52:14.403 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
38:signal-handler (1734268227) Received SIGTERM scheduling shutdown...
|
||||||
|
38:S 15 Dec 2024 13:10:27.915 * Connection with master lost.
|
||||||
|
38:S 15 Dec 2024 13:10:27.916 * Caching the disconnected master state.
|
||||||
|
38:S 15 Dec 2024 13:10:27.916 * Reconnecting to MASTER 127.0.0.1:16379
|
||||||
|
38:S 15 Dec 2024 13:10:27.917 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 13:10:27.917 # Error condition on socket for SYNC: Connection refused
|
||||||
|
38:S 15 Dec 2024 13:10:27.997 * User requested shutdown...
|
||||||
|
38:S 15 Dec 2024 13:10:27.998 * Removing the pid file.
|
||||||
|
38:S 15 Dec 2024 13:10:27.999 # Redis is now ready to exit, bye bye...
|
||||||
|
40:C 15 Dec 2024 13:13:28.245 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
40:C 15 Dec 2024 13:13:28.249 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
40:C 15 Dec 2024 13:13:28.251 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=40, just started
|
||||||
|
40:C 15 Dec 2024 13:13:28.253 * Configuration loaded
|
||||||
|
40:M 15 Dec 2024 13:13:28.254 * monotonic clock: POSIX clock_gettime
|
||||||
|
40:M 15 Dec 2024 13:13:28.263 * Running mode=cluster, port=16384.
|
||||||
|
40:M 15 Dec 2024 13:13:28.273 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
40:M 15 Dec 2024 13:13:28.306 * Server initialized
|
||||||
|
40:M 15 Dec 2024 13:13:28.314 * Loading RDB produced by version 7.9.224
|
||||||
|
40:M 15 Dec 2024 13:13:28.317 * RDB age 4874 seconds
|
||||||
|
40:M 15 Dec 2024 13:13:28.319 * RDB memory usage when created 2.32 Mb
|
||||||
|
40:M 15 Dec 2024 13:13:28.320 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
40:M 15 Dec 2024 13:13:28.322 * DB loaded from disk: 0.013 seconds
|
||||||
|
40:M 15 Dec 2024 13:13:28.325 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
40:M 15 Dec 2024 13:13:28.328 * Ready to accept connections tcp
|
||||||
|
40:M 15 Dec 2024 13:13:28.332 * Ready to accept connections tls
|
||||||
|
40:S 15 Dec 2024 13:13:28.338 * Discarding previously cached master state.
|
||||||
|
40:S 15 Dec 2024 13:13:28.339 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
40:S 15 Dec 2024 13:13:28.340 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
40:S 15 Dec 2024 13:13:28.341 * MASTER <-> REPLICA sync started
|
||||||
|
40:S 15 Dec 2024 13:13:28.342 * Cluster state changed: ok
|
||||||
|
40:S 15 Dec 2024 13:13:28.343 * Non blocking connect for SYNC fired the event.
|
||||||
|
40:S 15 Dec 2024 13:13:28.351 * Master replied to PING, replication can continue...
|
||||||
|
40:S 15 Dec 2024 13:13:28.363 * Trying a partial resynchronization (request a9da8a191d5087229a79da94cda78736443f476d:1).
|
||||||
|
40:S 15 Dec 2024 13:13:33.423 * Full resync from master: 1eb61977880f8a02dd803b64f567fd89265f2147:0
|
||||||
|
40:S 15 Dec 2024 13:13:33.427 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
40:S 15 Dec 2024 13:13:33.428 * Discarding previously cached master state.
|
||||||
|
40:S 15 Dec 2024 13:13:33.429 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
40:S 15 Dec 2024 13:13:33.434 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
40:S 15 Dec 2024 13:13:33.435 * Loading RDB produced by version 7.9.224
|
||||||
|
40:S 15 Dec 2024 13:13:33.436 * RDB age 0 seconds
|
||||||
|
40:S 15 Dec 2024 13:13:33.436 * RDB memory usage when created 2.32 Mb
|
||||||
|
40:S 15 Dec 2024 13:13:33.437 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
40:S 15 Dec 2024 13:13:33.438 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
40:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
40:S 15 Dec 2024 13:30:14.555 * User requested shutdown...
|
||||||
|
40:S 15 Dec 2024 13:30:14.557 * Removing the pid file.
|
||||||
|
40:S 15 Dec 2024 13:30:14.558 # Redis is now ready to exit, bye bye...
|
||||||
|
40:C 15 Dec 2024 13:30:30.736 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
40:C 15 Dec 2024 13:30:30.741 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
40:C 15 Dec 2024 13:30:30.744 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=40, just started
|
||||||
|
40:C 15 Dec 2024 13:30:30.746 * Configuration loaded
|
||||||
|
40:M 15 Dec 2024 13:30:30.750 * monotonic clock: POSIX clock_gettime
|
||||||
|
40:M 15 Dec 2024 13:30:30.757 * Running mode=cluster, port=16384.
|
||||||
|
40:M 15 Dec 2024 13:30:30.769 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
40:M 15 Dec 2024 13:30:30.796 * Server initialized
|
||||||
|
40:M 15 Dec 2024 13:30:30.801 * Loading RDB produced by version 7.9.224
|
||||||
|
40:M 15 Dec 2024 13:30:30.804 * RDB age 1017 seconds
|
||||||
|
40:M 15 Dec 2024 13:30:30.806 * RDB memory usage when created 2.32 Mb
|
||||||
|
40:M 15 Dec 2024 13:30:30.808 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
40:M 15 Dec 2024 13:30:30.810 * DB loaded from disk: 0.012 seconds
|
||||||
|
40:M 15 Dec 2024 13:30:30.811 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
40:M 15 Dec 2024 13:30:30.812 * Ready to accept connections tcp
|
||||||
|
40:M 15 Dec 2024 13:30:30.814 * Ready to accept connections tls
|
||||||
|
40:S 15 Dec 2024 13:30:30.815 * Discarding previously cached master state.
|
||||||
|
40:S 15 Dec 2024 13:30:30.817 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
40:S 15 Dec 2024 13:30:30.819 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
40:S 15 Dec 2024 13:30:30.820 * MASTER <-> REPLICA sync started
|
||||||
|
40:S 15 Dec 2024 13:30:30.821 * Cluster state changed: ok
|
||||||
|
40:S 15 Dec 2024 13:30:30.823 * Non blocking connect for SYNC fired the event.
|
||||||
|
40:S 15 Dec 2024 13:30:30.837 * Master replied to PING, replication can continue...
|
||||||
|
40:S 15 Dec 2024 13:30:30.844 * Trying a partial resynchronization (request 1eb61977880f8a02dd803b64f567fd89265f2147:1).
|
||||||
|
40:S 15 Dec 2024 13:30:35.915 * Full resync from master: 5ce586d5064369cac1806b5289cce0d21a9616ed:0
|
||||||
|
40:S 15 Dec 2024 13:30:35.919 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
40:S 15 Dec 2024 13:30:35.920 * Discarding previously cached master state.
|
||||||
|
40:S 15 Dec 2024 13:30:35.921 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
40:S 15 Dec 2024 13:30:35.923 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
40:S 15 Dec 2024 13:30:35.924 * Loading RDB produced by version 7.9.224
|
||||||
|
40:S 15 Dec 2024 13:30:35.925 * RDB age 0 seconds
|
||||||
|
40:S 15 Dec 2024 13:30:35.925 * RDB memory usage when created 2.32 Mb
|
||||||
|
40:S 15 Dec 2024 13:30:35.925 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
40:S 15 Dec 2024 13:30:35.926 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
40:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
40:S 15 Dec 2024 13:36:35.441 * User requested shutdown...
|
||||||
|
40:S 15 Dec 2024 13:36:35.441 * Removing the pid file.
|
||||||
|
40:S 15 Dec 2024 13:36:35.444 # Redis is now ready to exit, bye bye...
|
||||||
|
38:C 15 Dec 2024 13:37:03.401 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
38:C 15 Dec 2024 13:37:03.407 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
38:C 15 Dec 2024 13:37:03.409 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=38, just started
|
||||||
|
38:C 15 Dec 2024 13:37:03.412 * Configuration loaded
|
||||||
|
38:M 15 Dec 2024 13:37:03.413 * monotonic clock: POSIX clock_gettime
|
||||||
|
38:M 15 Dec 2024 13:37:03.423 * Running mode=cluster, port=16384.
|
||||||
|
38:M 15 Dec 2024 13:37:03.431 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
38:M 15 Dec 2024 13:37:03.458 * Server initialized
|
||||||
|
38:M 15 Dec 2024 13:37:03.460 * Loading RDB produced by version 7.9.224
|
||||||
|
38:M 15 Dec 2024 13:37:03.463 * RDB age 388 seconds
|
||||||
|
38:M 15 Dec 2024 13:37:03.465 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:M 15 Dec 2024 13:37:03.465 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:M 15 Dec 2024 13:37:03.479 * DB loaded from disk: 0.016 seconds
|
||||||
|
38:M 15 Dec 2024 13:37:03.482 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:M 15 Dec 2024 13:37:03.483 * Ready to accept connections tcp
|
||||||
|
38:M 15 Dec 2024 13:37:03.484 * Ready to accept connections tls
|
||||||
|
38:S 15 Dec 2024 13:37:03.486 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:37:03.488 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
38:S 15 Dec 2024 13:37:03.490 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
38:S 15 Dec 2024 13:37:03.492 * MASTER <-> REPLICA sync started
|
||||||
|
38:S 15 Dec 2024 13:37:03.493 * Cluster state changed: ok
|
||||||
|
38:S 15 Dec 2024 13:37:03.494 * Non blocking connect for SYNC fired the event.
|
||||||
|
38:S 15 Dec 2024 13:37:03.512 * Master replied to PING, replication can continue...
|
||||||
|
38:S 15 Dec 2024 13:37:03.513 * Trying a partial resynchronization (request 5ce586d5064369cac1806b5289cce0d21a9616ed:1).
|
||||||
|
38:S 15 Dec 2024 13:37:08.626 * Full resync from master: 123337652bfe383fdf6accb304f63a8ec6e19d7e:0
|
||||||
|
38:S 15 Dec 2024 13:37:08.630 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
38:S 15 Dec 2024 13:37:08.632 * Discarding previously cached master state.
|
||||||
|
38:S 15 Dec 2024 13:37:08.633 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
38:S 15 Dec 2024 13:37:08.636 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
38:S 15 Dec 2024 13:37:08.637 * Loading RDB produced by version 7.9.224
|
||||||
|
38:S 15 Dec 2024 13:37:08.639 * RDB age 0 seconds
|
||||||
|
38:S 15 Dec 2024 13:37:08.641 * RDB memory usage when created 2.32 Mb
|
||||||
|
38:S 15 Dec 2024 13:37:08.642 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
38:S 15 Dec 2024 13:37:08.644 * MASTER <-> REPLICA sync: Finished with success
|
||||||
|
38:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
38:S 15 Dec 2024 13:39:04.660 * User requested shutdown...
|
||||||
|
38:S 15 Dec 2024 13:39:04.661 * Removing the pid file.
|
||||||
|
38:S 15 Dec 2024 13:39:04.663 # Redis is now ready to exit, bye bye...
|
||||||
|
39:C 15 Dec 2024 13:39:11.109 # WARNING: Changing databases number from 16 to 1 since we are in cluster mode
|
||||||
|
39:C 15 Dec 2024 13:39:11.113 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
39:C 15 Dec 2024 13:39:11.117 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=39, just started
|
||||||
|
39:C 15 Dec 2024 13:39:11.119 * Configuration loaded
|
||||||
|
39:M 15 Dec 2024 13:39:11.124 * monotonic clock: POSIX clock_gettime
|
||||||
|
39:M 15 Dec 2024 13:39:11.135 * Running mode=cluster, port=16384.
|
||||||
|
39:M 15 Dec 2024 13:39:11.141 * Node configuration loaded, I'm 16151e686272aa1dd2d15d4af407b6be45c9eca1
|
||||||
|
39:M 15 Dec 2024 13:39:11.158 * Server initialized
|
||||||
|
39:M 15 Dec 2024 13:39:11.162 * Loading RDB produced by version 7.9.224
|
||||||
|
39:M 15 Dec 2024 13:39:11.167 * RDB age 123 seconds
|
||||||
|
39:M 15 Dec 2024 13:39:11.172 * RDB memory usage when created 2.32 Mb
|
||||||
|
39:M 15 Dec 2024 13:39:11.173 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
39:M 15 Dec 2024 13:39:11.175 * DB loaded from disk: 0.015 seconds
|
||||||
|
39:M 15 Dec 2024 13:39:11.177 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
39:M 15 Dec 2024 13:39:11.179 * Ready to accept connections tcp
|
||||||
|
39:M 15 Dec 2024 13:39:11.180 * Ready to accept connections tls
|
||||||
|
39:S 15 Dec 2024 13:39:11.185 * Discarding previously cached master state.
|
||||||
|
39:S 15 Dec 2024 13:39:11.187 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
39:S 15 Dec 2024 13:39:11.202 * Connecting to MASTER 127.0.0.1:16379
|
||||||
|
39:S 15 Dec 2024 13:39:11.207 * MASTER <-> REPLICA sync started
|
||||||
|
39:S 15 Dec 2024 13:39:11.209 * Cluster state changed: ok
|
||||||
|
39:S 15 Dec 2024 13:39:11.212 * Non blocking connect for SYNC fired the event.
|
||||||
|
39:S 15 Dec 2024 13:39:11.220 * Master replied to PING, replication can continue...
|
||||||
|
39:S 15 Dec 2024 13:39:11.225 * Trying a partial resynchronization (request 123337652bfe383fdf6accb304f63a8ec6e19d7e:1).
|
||||||
|
39:S 15 Dec 2024 13:39:16.287 * Full resync from master: a48e35bf7dec518913cc372e97cafbcccb2abfd5:0
|
||||||
|
39:S 15 Dec 2024 13:39:16.291 * MASTER <-> REPLICA sync: receiving streamed RDB from master with EOF to disk
|
||||||
|
39:S 15 Dec 2024 13:39:16.292 * Discarding previously cached master state.
|
||||||
|
39:S 15 Dec 2024 13:39:16.293 * MASTER <-> REPLICA sync: Loading DB in memory
|
||||||
|
39:S 15 Dec 2024 13:39:16.300 * MASTER <-> REPLICA sync: Flushing old data
|
||||||
|
39:S 15 Dec 2024 13:39:16.302 * Loading RDB produced by version 7.9.224
|
||||||
|
39:S 15 Dec 2024 13:39:16.304 * RDB age 0 seconds
|
||||||
|
39:S 15 Dec 2024 13:39:16.306 * RDB memory usage when created 2.32 Mb
|
||||||
|
39:S 15 Dec 2024 13:39:16.307 * Done loading RDB, keys loaded: 0, keys expired: 0.
|
||||||
|
39:S 15 Dec 2024 13:39:16.309 * MASTER <-> REPLICA sync: Finished with success
|
|
@ -0,0 +1 @@
|
||||||
|
39
|
|
@ -0,0 +1 @@
|
||||||
|
node-0 node-1 node-2 node-3 node-4 node-5
|
|
@ -0,0 +1 @@
|
||||||
|
node-0 node-1 node-2 node-3 node-4 node-5
|
|
@ -0,0 +1,31 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIFSzCCAzOgAwIBAgIUCb57sxI5QUUUshObYCbY3CPCPlkwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwNTETMBEGA1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUg
|
||||||
|
QXV0aG9yaXR5MB4XDTI0MTIwNTA4NTI1MloXDTM0MTIwMzA4NTI1MlowNTETMBEG
|
||||||
|
A1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUgQXV0aG9yaXR5
|
||||||
|
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAyuqfbpBEOMm68KmKnZ1X
|
||||||
|
g4lTn/YyrbaJ9Ooi3A2a7MEqJyHzh8KcOBMgqTH0E5M6B4eVeHnOd078mCilAEQ5
|
||||||
|
8ws5yQyaAZV20uYRY7ddY8lFzg2gwg0Vw+cDvZ4MdVGw0hh3NT71M2S4I8nmbn/u
|
||||||
|
EQVcpu+Yj/l9u8yq0aYwPr7jRgnLnGuRTl9ADBNnizuZuQ9NMFlBqF/WiVCFjimr
|
||||||
|
RPdavRSjE90qI/0gUyznrsIT1nSudEGxqw+eZHPGZpmd4ap1khjucfq4yaGLn7N/
|
||||||
|
E/j29cn2dYfK9R4hzIFKfy6W9PuD/OjrOb4wlJFaVPyeyotGauRPPvKDhcFA8Xbv
|
||||||
|
vsuBlXc7PxhSURPT5V8O4NtI/K70Jt3Y6em3vqfO66zkpjkqimaMgL5q/zj0UOfy
|
||||||
|
RLHCN+0Bn0wUg/HQu/6pBie21Xd+xGHOrQCfXCq1twhd/wmlmobI3zyZN5F13Lcv
|
||||||
|
Gx9SSeuSrmaNhwTun75amMASWv21cKmj+NR9qb8JIlMbkR4mInR08sfdZi/4ccoh
|
||||||
|
E9eGfaG7q1QzTUs1yvWQU00Qpf9NElowqq7kK8RZud6M/FtYedgP1f2tkHDBYBVe
|
||||||
|
VLbEqiEFd9RS5kJd+rGJkkQ1X1FDUQG43p4lCeX03ieLpaG02XqvkPP45jcFIGwX
|
||||||
|
cQvVqQLf1NR5aa+10Yp3kr8CAwEAAaNTMFEwHQYDVR0OBBYEFO2CQuy/DyMe9wlY
|
||||||
|
357pkhmpPdA0MB8GA1UdIwQYMBaAFO2CQuy/DyMe9wlY357pkhmpPdA0MA8GA1Ud
|
||||||
|
EwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggIBALLf1lyOGJqZaG3Ltrp3rBDO
|
||||||
|
x4wKFIS7lDfWO6B+S/PDEFbvZh5/KzxlWNnOP2FDdoC8Cs+iM2DXYMpBrhaPUUHs
|
||||||
|
Njbv7aj4IkePXZFN0C+4hNkrDlFj29SXlxDc3sdEy9oeNkrWS/EQeu2ZVfoEq15p
|
||||||
|
5zRBGKF8AuJ8mCrlTJihXiKlTJcNXGU/NEnXbEDHsyVwNbaqMKUzivjmYnHvjrVX
|
||||||
|
30LRem+rWFw6BxA+/MoEKe6H2rRGHvk5KEKZI5YYL9Y7otDxJCy6w+cvlstSuDv6
|
||||||
|
85BCMa3VK/yyCju3w/lWBd0bhF4EpiVlGHQkFlGAvaABSE/9UmnyB6Tn1EvELbKS
|
||||||
|
hZ5/xjblsH2MuZxJUFy9ZVzbFMXIcb6q7wOFfhge/ngOuoZaDjs+3I4aj4v9CfHX
|
||||||
|
LbGP5bR7/qXi5UyZwFcucvsQZqTSkoWXXWqRdw+HcjYMBNNrulEeIZ59PjxEX0d1
|
||||||
|
tgKUe1xinDQ48isLY/DkKUXZ48X6XbOk4Pq7VGc/YrDnemBh7PPr+bpNy1LhA/pw
|
||||||
|
4C6Nv3SjBBPQ7+SpQC83vkbGmsOA03hVHdd8Z1uaKKm4HVuxyg4+VO+fvgWRZ+36
|
||||||
|
vEEo+tt7zrDGBdvWj7EYQuVt4av/mNF8pgP4E1qKFlJjht01BF3LyfY5La/Nzlr1
|
||||||
|
YGc8d1iOOzREtYCTlS0o
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,52 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQDK6p9ukEQ4ybrw
|
||||||
|
qYqdnVeDiVOf9jKtton06iLcDZrswSonIfOHwpw4EyCpMfQTkzoHh5V4ec53TvyY
|
||||||
|
KKUARDnzCznJDJoBlXbS5hFjt11jyUXODaDCDRXD5wO9ngx1UbDSGHc1PvUzZLgj
|
||||||
|
yeZuf+4RBVym75iP+X27zKrRpjA+vuNGCcuca5FOX0AME2eLO5m5D00wWUGoX9aJ
|
||||||
|
UIWOKatE91q9FKMT3Soj/SBTLOeuwhPWdK50QbGrD55kc8ZmmZ3hqnWSGO5x+rjJ
|
||||||
|
oYufs38T+Pb1yfZ1h8r1HiHMgUp/Lpb0+4P86Os5vjCUkVpU/J7Ki0Zq5E8+8oOF
|
||||||
|
wUDxdu++y4GVdzs/GFJRE9PlXw7g20j8rvQm3djp6be+p87rrOSmOSqKZoyAvmr/
|
||||||
|
OPRQ5/JEscI37QGfTBSD8dC7/qkGJ7bVd37EYc6tAJ9cKrW3CF3/CaWahsjfPJk3
|
||||||
|
kXXcty8bH1JJ65KuZo2HBO6fvlqYwBJa/bVwqaP41H2pvwkiUxuRHiYidHTyx91m
|
||||||
|
L/hxyiET14Z9oburVDNNSzXK9ZBTTRCl/00SWjCqruQrxFm53oz8W1h52A/V/a2Q
|
||||||
|
cMFgFV5UtsSqIQV31FLmQl36sYmSRDVfUUNRAbjeniUJ5fTeJ4ulobTZeq+Q8/jm
|
||||||
|
NwUgbBdxC9WpAt/U1Hlpr7XRineSvwIDAQABAoICAAt0OSHO76UyZ6SjEw44txuO
|
||||||
|
UUF4XFAeYC4u6hXT9esDMAy7lWJdXM0ZOin1GGZ1nWnf0pww1thdYRzoPwCxEBQO
|
||||||
|
RM5D1gzKaLN0M0/NlACawWjA+OSUaF0vVOdd05rq3uunYAhleZjTkdfvUyVW7cFZ
|
||||||
|
flkHaEeR9KidX5h+ZGN+UxhYyVhNqmZ0Vq730blhxoZB6smUqoQOhpNxRlwcMZqu
|
||||||
|
yStfBMZo6elmk6TAk/A8WikHgBblv0dPcZqjRz08G+gpUUs4+Xr9vAWPYoNWMf8W
|
||||||
|
sKzkaTxub8laLACruIVNxARejwrRu0lsEAIYmg5kxPtKDAkHngpkOsui+TZIGX6x
|
||||||
|
7F5F8ba7JzmVBGTDtHFEbSWHmCKMZCfWKa3gXeJEN8lkdJDMII2s+WX5fvP+yx9m
|
||||||
|
F0t7XYlmAKTB1Uo0gYv+c1zpyyFZ/DLdtG/0GDjVCO2LkdPtD5dBd8KdRF11g2sb
|
||||||
|
/954J5Wo/bX+3fzJBS76xx+YAaXlEHfuT7Rllnkx7ntcDi/izqZosO6zsqau0PRw
|
||||||
|
Tyl3IlY+Gk8oLcHV36Iy7NJ3TXmvckubZ4i/GYchpTh0piu62TF5mDfXD0LtIYcn
|
||||||
|
xi9efrNmr+ycNRzKKLwFRcYXWEqA6wvZa1jP2OdUTvygf6gXpM9tG5q4/n3NM8g4
|
||||||
|
cnXYUb+fvkz2/cexXIu5AoIBAQDuep54v67Q5vdq876YcKU4W2nBSTZDmANf6E0S
|
||||||
|
OaSFlX9dhztfJjDjsv6ChKptkW9glMtRSyMjKVWxUMxRIMYwHUJ954GxbS8IvsNa
|
||||||
|
2QdStHQBm7Uh0zkJ/2z1GyqPuduwoz6GSHk8JcFRXCUEDDtNNopPhbgaFiaDx/49
|
||||||
|
6zPzBSBEfOI7gtRO3gMFTL7w2gzRWWvglXz/MQFe+DskXaMCTq/KUGPIHOpimMed
|
||||||
|
VANB2apLC9xRANKbBlKKhfwL2hzrLJf1mN5nW7ioRsvaXoLoNkwmtwRyhAgub0fx
|
||||||
|
bxaMIygZ0EQCfBhXzS5NojU1oZvUw9po6bdkiqpFnvP2a/WpAoIBAQDZ0yJkKjSX
|
||||||
|
dWIJOaJEu52hJkrVblRZbrX3eS/FUaJpu9Wkust/qC9zkv0WPso33iNveB8130A/
|
||||||
|
pz8kwvrMfL4hjPld+qIf0iq4j9uZS22emGfCO7nnd4mptbLVU/zOUgun4Af/i6e6
|
||||||
|
W5V6RlZvpmnoVd2F6M5xfFLoB0sOoy7oOArmQemtRUEYGOP1/TTFdifU+haukAIP
|
||||||
|
8pCisMLURk/ivy0wR8z4XiYN8b7U069DyYMn95wqvBZ5kLdke4qQopAJHDDeIGax
|
||||||
|
rz4fO61Kt70S3Ww/5lrrQ+jx8+8KiI4pCooSdCKu+H31gyp2Z1ZMT+u/vACFR1EP
|
||||||
|
2NTEepOhx7YnAoIBAQCuyN4W/94/q9hQ4f6iOYVOjekvydnkpqhqhZbfMbI8Wfq0
|
||||||
|
cOX58cLJUCorPNKwZXRtJAD0Pw6suaHdyKtHFq9LGlbecmviv3RGg5IopoIwgqO3
|
||||||
|
fgi+ltHqWvPfnR6Pope6mZq8zqdUhxNt7wwOMGzSRZQPfqEVNYDa+xyDAzza87nX
|
||||||
|
mHQzS8sRVrR+EOatHhNg6JohS08GtkMb+PFX0O0lRsiejlbjlxXOV82NqMKOY9rl
|
||||||
|
D/dUwzaYeoTKlDLL+PtS/icN0RHITThE1UaZcMWfLhSYF3FCATUB23uuH042PZop
|
||||||
|
eTQvYgZxa6dxLN60xRKyWS1d0VYhcWQkjMCfrjapAoIBAQCvCD+caWW1RveuHgfM
|
||||||
|
X048zf5YHr3c11+VKmY+kmiFug/kvM0FGWp33mdMVsw7tF6ZFddOfMSt4YCV06+g
|
||||||
|
XaSSZSuEXv+jvkfh4oc9WSUOybymkUPDQYT3QDAhx8lfKQKAtT74E4qF703f4WFX
|
||||||
|
ekukDEtjbT1mZ9Ze6G1hp7Lrmwz3FYPmXb3+1RFo+zxKZ7V+KC/NuZ5OnkWm1Y7Y
|
||||||
|
8F8E/0Yag7eq5EyD6/vCHQ+60tR3azqsBFOy/5y+O5+OtXI0P9jsxPCAWyb6BgQs
|
||||||
|
BBUEcbSobDwmzH0E31T4C97gD73/Mh8kpjzg6bNXTZZE3/u6KCHq9vGmYEAoWa8D
|
||||||
|
0u0FAoIBAQCdmL+zMiaKlrzqksEjxGBFD3uToDt+4gFaL+WpkZ7kI01lWgvDYhKa
|
||||||
|
HrSdSUsWMYMBVjlq6D1ZAVDs0BJtpzQOm7WkPrqZ1W4pm3Hm9Km3f0Ulan0Va6iQ
|
||||||
|
nFKImxx+h1v5RHVAn8uh0g0fLLGD3KGt60fNQ3iHYatWuvPBQg+SBJNkR7XT6ieY
|
||||||
|
kFj2iyUhSh1lCKzRfZR7EZRguFZbw592XZDsfZXt6DDB+p7e+XAn2VKb7zCs9ErE
|
||||||
|
Gxto1CMa8YmKoNKH/Hrm5eZk6nYW2h0/0I9tRZ72t6yEBFAoC74VFnxS22ZiCgMZ
|
||||||
|
EwYEQDcavmiS5KfgiuLMFVISaxm/muHy
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -0,0 +1 @@
|
||||||
|
219144ADBDB81F1179B7D1B9BB97871843C68412
|
|
@ -0,0 +1,26 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVTCCAj2gAwIBAgIUIZFErb24HxF5t9G5u5eHGEPGhBIwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwNTETMBEGA1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUg
|
||||||
|
QXV0aG9yaXR5MB4XDTI0MTIwNTA4NTI1M1oXDTI1MTIwNTA4NTI1M1owMDETMBEG
|
||||||
|
A1UECgwKUmVkaXMgVGVzdDEZMBcGA1UEAwwQQ2xpZW50LVRlc3QtY2VydDCCASIw
|
||||||
|
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANV7yUl18UdOoO8ndcf2IYpPsjib
|
||||||
|
2OKC0ZVp7nGrUzyoXmZOjXymUZKN1jL1luMxFcjsnWvS5exWe652xFbl7RjKrGor
|
||||||
|
fvc58O66ll/IH2dW7V8Ef8cfN/LwfyQUyQ0VecLBpVHuZqfQUQOZnEe7M6NzAYlX
|
||||||
|
SzstDQPJtWvhm3q/xpVfVpIvOjuN+znsdA2Mxfc7MhHBPbL0gWYt6RE6A/GaQSWB
|
||||||
|
fRRUH7Sd0INNwGai0Lj2gugoNg3eNQF8YQMUiwdB8Be8cF/DMcCh+3CzZ3ElzH7E
|
||||||
|
DhU3Y2o7LHTizcdQq5FyvYQnSw6gtpuYTGV/QCilCI72AqxE6Fx4mZOnA4ECAwEA
|
||||||
|
AaNiMGAwCwYDVR0PBAQDAgWgMBEGCWCGSAGG+EIBAQQEAwIHgDAdBgNVHQ4EFgQU
|
||||||
|
EHq/4l1wDIG+OHzX8rbfDpWEOSYwHwYDVR0jBBgwFoAU7YJC7L8PIx73CVjfnumS
|
||||||
|
Gak90DQwDQYJKoZIhvcNAQELBQADggIBAKjayQdEaqJIof9W7Zf4mIcFDysNJOMO
|
||||||
|
UxV/6ufm0Ucwj2g+cc+96DMafDb8j/m9kbixFEOpNPMCqgrH4NAcj6pphzn7Y4rg
|
||||||
|
TUW5v1PYPNh4v4rwVVOFs8fa6lABMXKv0gP7Ikg6Q/n9FWdXEMpj7G4oZGlnEcp3
|
||||||
|
LyUB+Vt/IvDpdj8NeW2dsZiaBJ+O3ccN0fQPMBNlLS08iMBVReQTiaRlm3f5DDRE
|
||||||
|
6qajQKIY30JST7KUkNV3/6vb8vRSuGdjgUBetia9d+SmSy101PDeHPdFgcw+PEw5
|
||||||
|
oAYHbStvMNdQ5fh1JzBntdAo/aFGlW9Q9MG04ZslplV/lzm8VUfihysteJ+xWagX
|
||||||
|
uQti0v5SRK+4mMkpIovWG6K6GNwLG/lZSYtTgVBudsfZ4IsVNdgUl8jGkkshDPVa
|
||||||
|
36Ui2iOlnKOrH5RvtQI96MEZAUck2s0zASzXFrxcyHoS5S0qMh5Nmyu2tvFRgncc
|
||||||
|
MTPxsYD65flwOwuM+4LzL+ZollBk7ARHgTPgu74HM33OX5usvVnhUfKNXpcqPK9a
|
||||||
|
GuLaimaY9AZg3C1isLbqWIfgdyykw+7UU3X1mXrsij1f7az9jcTLmyCKrMGJNVTd
|
||||||
|
JSs+Txf+G4k5DY10NoNtDMo0LFRFtxjeU6DoIEdxKgJCnwU5t6HDfLnlfFI0dZaB
|
||||||
|
DmTG4P52DbZ3
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,28 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDVe8lJdfFHTqDv
|
||||||
|
J3XH9iGKT7I4m9jigtGVae5xq1M8qF5mTo18plGSjdYy9ZbjMRXI7J1r0uXsVnuu
|
||||||
|
dsRW5e0YyqxqK373OfDuupZfyB9nVu1fBH/HHzfy8H8kFMkNFXnCwaVR7man0FED
|
||||||
|
mZxHuzOjcwGJV0s7LQ0DybVr4Zt6v8aVX1aSLzo7jfs57HQNjMX3OzIRwT2y9IFm
|
||||||
|
LekROgPxmkElgX0UVB+0ndCDTcBmotC49oLoKDYN3jUBfGEDFIsHQfAXvHBfwzHA
|
||||||
|
oftws2dxJcx+xA4VN2NqOyx04s3HUKuRcr2EJ0sOoLabmExlf0AopQiO9gKsROhc
|
||||||
|
eJmTpwOBAgMBAAECggEABLT/AiykjkLwj3VaRndp0+ff8RmWlZ/2yQmV5VG2ux6n
|
||||||
|
PjA7NGViZQ3VjDgYBJhfd5en/Omggi6B+Z3KxHO7X5GQbaLZ4M+ZPVpF2ITMFHY5
|
||||||
|
M6AgxR4uGKAu3XfL2wr/LUkhwQW1o7uXHbI0XOyGvfLaNNIE6aAbqlq3MlK+H92y
|
||||||
|
S4UGEpy6oYc0RN+dr8KVlVXaDpE6TimnPzflKnjvxsBcMb8dNXxXSpb7h3s09kxX
|
||||||
|
jYc+Uni4Jy5xTMbgOoitbUlh+rajGyGhr6Uc5H5QKT1en+4jNdUjNSu5M1TdMC9d
|
||||||
|
YP1zWfV0lu1gEkzjhrJypBHLG1W+tXqWr7/+CrMUwQKBgQD2QWTUhpcKEWjY/qJC
|
||||||
|
6XEoqKJEPWITrTqiYdjDV+4AU+yaR4MuYsShP7TuMhTkN70PM5FtuZLeUjTnU6U/
|
||||||
|
cCtKgY30fQS+H9PtrnNhLpWszJAokfdXSLuO47VgfvDyeqLpkkzGke8ymjRWlrXu
|
||||||
|
pJsLidmBn5QHT9q9zsW7LISOiQKBgQDd7mhryYxGcQoQUwzLYhEZ3dhIo8dbvGNX
|
||||||
|
3VTm8XB3LmVhC9LpErmyu181Ja/Vt0JC3233pXO/kWQf7qaWbbk/dzWeZlhqL4FH
|
||||||
|
vhC+eB1CQGTEeETOMITbvAm3k8kEZH9rH8bEjzgs8BbORY4+pW+Smhyi52/K9LjM
|
||||||
|
ENsfHy9POQKBgQDFPSORxit7+O3NwEYe6fOk6Uzu82t27y0jmtOPwwHyaUX9XIIJ
|
||||||
|
yTpNHUXB84MgODTJ1DgLdrPYNmgBUNHuud0y1AnrZadC0SNiIHRxxmpD+aUNmbxO
|
||||||
|
wQbZMDG6lHJRBUEva+rqsUCxeymooRYfiuBUoZkBZdue76r4lIFzpfiWYQKBgFBM
|
||||||
|
8Cl4DrJ6Ojr34dxBSpDCbXyzDfJKcuOa6Rp658en2PTJU3IT3W8nTuarETlSCr6p
|
||||||
|
m1+M1RnOoJzRPCOX5fxpxNPgkkMxlyR/SA2y5ltPc2aHYdX9RkU/f4CWD5jwSA5Z
|
||||||
|
vBDpBVl1MbtG/ZX7RCiWbKAg/5k+/RKRUseq//I5AoGAT45zB2ucDennVOnD1i7i
|
||||||
|
g6mZfipepkn5ic38cwByJc+pB36u2bl2kK3Xdd2mbS88+LhcOR7W+Se2b+N/WGQQ
|
||||||
|
0vCYroo2S78iPbt65eVWnLzLuJSNXvKWnbe6+DCroAo9aeriNO5L/6+6fh9dGz9e
|
||||||
|
n7z+1jy3eE6fMDhmK3mL5SU=
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -0,0 +1,3 @@
|
||||||
|
tls-cert-file "/redis/work/tls/redis.crt"
|
||||||
|
tls-key-file "/redis/work/tls/redis.key"
|
||||||
|
tls-ca-cert-file "/redis/work/tls/ca.crt"
|
|
@ -0,0 +1,23 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIID5TCCAc0CFCGRRK29uB8RebfRubuXhxhDxoQRMA0GCSqGSIb3DQEBCwUAMDUx
|
||||||
|
EzARBgNVBAoMClJlZGlzIFRlc3QxHjAcBgNVBAMMFUNlcnRpZmljYXRlIEF1dGhv
|
||||||
|
cml0eTAeFw0yNDEyMDUwODUyNTJaFw0yNTEyMDUwODUyNTJaMCkxEzARBgNVBAoM
|
||||||
|
ClJlZGlzIFRlc3QxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEB
|
||||||
|
BQADggEPADCCAQoCggEBAK2GbUOw2j615aUUTfCYnS7p+N7uSp6GHlfznH/ld6xS
|
||||||
|
H/7EOK8GuujvNVlEunLjjxu5pzehMnzMzDJag3nskAtph84EQKJvNwCPeUcgfQx6
|
||||||
|
Zp3+lYU5uURXM05aX6tULcnd2rM7xZilmzGx4hM3WYQr6zeulNnhCWKyQa7HHYmm
|
||||||
|
kchL6mAOPU+XoiTHIKfJGzU00WrGvqNpIaxXnMbDWhkYmQM4ziPMWXbTvjz7gNLo
|
||||||
|
OM0n9sbz5fvlDYuV74Sm3nmc+WlMRBQxrlFa+gLLTyxWEl+51yOd/4E4mYbCFCS4
|
||||||
|
Txn7Uke4ky6LvPJRNnNEEVQ0wBfEudDSDPtrJhU5ElUCAwEAATANBgkqhkiG9w0B
|
||||||
|
AQsFAAOCAgEAeC9fI6FeRHcgGqragKODjU45RPUnwTRYRXUILbC7BUxOitWg5nVr
|
||||||
|
XkVJrm3z3qjwu4a8+uIgEDUE/FZ7OLvPtmn3zC5QXw+jpsbro9wwz4rQvmXmysXz
|
||||||
|
eQnUXKWyPDelFx+zyfWYVOHMXM1vvHTbpDelXM+z5GiS+BsIQr0ncGmmCtOKQex5
|
||||||
|
TFzMFFHkyfGPfK3/rTZRpVQ0iAxJCvAZUUjUXpuxhFSuv7jvjboCZ5Dots5DmeuD
|
||||||
|
7GWf1ExhEphCO0ZoocTuncR9/P6FZ4OIS1klMWTja9BjyCh8eeTe2jRVWoI7s9o+
|
||||||
|
mMBjwHRs+RMTY56bRuuF4CBe1z64p9xq3kbN7InDKy2jSPX8rAAYcRA7Pjwb4O4g
|
||||||
|
rdUGsAUyX884ZfeTlf/PKQmj5cIonfi6g5t4UmXVD5MCC9wRB0FqSTaSeMyvS4wy
|
||||||
|
VGxUlZThFW9N8iuM2OqBzaklJhZQUc8WR7j1SBJxlQ9iJRTRU0EWkCn700Ul5QbU
|
||||||
|
StIbEaG4I0CmKCJs40bxazH2tR0wWsRlM9KHgl62KE68Z4rDSM7GzCEeGnfbYrue
|
||||||
|
uXClUlD3uhVJG3GrNslS9T/nP/vxN720WzCSWT70Gw1d+4SbGBqalgvIsmcz2V70
|
||||||
|
+WDoKbYzKRr6qv/oR7OysAD2WniTv+qUdPMde0Pl9K6+V8JDCRwYmjA=
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,28 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQCthm1DsNo+teWl
|
||||||
|
FE3wmJ0u6fje7kqehh5X85x/5XesUh/+xDivBrro7zVZRLpy448buac3oTJ8zMwy
|
||||||
|
WoN57JALaYfOBECibzcAj3lHIH0Memad/pWFOblEVzNOWl+rVC3J3dqzO8WYpZsx
|
||||||
|
seITN1mEK+s3rpTZ4QliskGuxx2JppHIS+pgDj1Pl6IkxyCnyRs1NNFqxr6jaSGs
|
||||||
|
V5zGw1oZGJkDOM4jzFl20748+4DS6DjNJ/bG8+X75Q2Lle+Ept55nPlpTEQUMa5R
|
||||||
|
WvoCy08sVhJfudcjnf+BOJmGwhQkuE8Z+1JHuJMui7zyUTZzRBFUNMAXxLnQ0gz7
|
||||||
|
ayYVORJVAgMBAAECggEAMopEqMKJzloMWNhhGwJYRaG/6q5c7W8Cx3scyeN7x6Tj
|
||||||
|
zMA6AkBjkBSb5TQvWecNd3XLTliU6+R6VPAn+wr7qVdDRq3WZXke+/rNx/meclP0
|
||||||
|
L3BG/Fajr1P2jYuk8bHC5FjJqgpustcJLKAyyIYGfIiOKdmfYRY6NZTVrKIx6DUw
|
||||||
|
2BLMpSCT9fKc+uK0cKdBZkoqkElwgyFFEtAdhTUWcgyUMkSkgP7cYWknTIAqGPmx
|
||||||
|
xY7hrm3yRieVrJEYcEt+zLpFDNTNfQpf0+RuoQA6stXoW8abqstZEiF4+DgRg/3S
|
||||||
|
wTcv1yXpiIVmakfDofu5HF33K/3dwEbTbco1RXckwQKBgQDVOajuKv2SZZPW7eBJ
|
||||||
|
KKJ39CRw754a+07Yn5Fk8NhlXU2w0P3HXtOZc2lx9scejyY5uWAvUFdP0wmhNEad
|
||||||
|
wcFLOG7G/Qt4NzxIhhAaKd6Nr4z6+DjA6KyBZfSy2B/wwYlZmZbI5c3Z5ihIvhIb
|
||||||
|
yLuRZsqOdoNl/VN9nkBzuL3GrwKBgQDQVe/1O/gVQsPO5V0WUzf914wuV7LSRILk
|
||||||
|
kb9Yz3H9AbTvgfALoRdBnnxrvg6+MvgkbNMOGQ68g+xubmTs4z8Rv+DsKIbTxy4X
|
||||||
|
EIvcIGWf+JfNIqLkNo67TAyalszsuJjfoHJ4c91pDIiXZnvcF1YjVS3ZFlnfwrIC
|
||||||
|
v7FqQ9o4OwKBgQDHGuGJDLHd22ZSw6u1BPG5S0wf/VDI5zR4CYDOHiwjcx3R50Wi
|
||||||
|
vwSd/OxQ09yZx5gtPNH5PG9bhbgvRM5QD5Y8dETVIYNtTT7Ihg9RLxm3el8OF21/
|
||||||
|
jYVQC3GU80XYHhDwjwADNrujJk0lp/7m3OlxW+f3YelO+l/VJEoRBUiI1wKBgQCL
|
||||||
|
CE7TAepVhfDWqgqtU2wSYz6RzsTvvfj8QKfJxOb1SaZOEBD6Mc8rY3D1FikQlUM0
|
||||||
|
S8utpNtIw2GNcO65iA4W8k5QS9tuiYYgrlIn3Rb04xmrNGowkpg+NkpTAEBR2f9r
|
||||||
|
fc/mwqwH5u1g3GvcPVamzbmDHn9r7KqPWw4zNIT08QKBgQCLOMYmMOIb7BdOPjqa
|
||||||
|
6TmgszrFO9MoW0whiN3gL8QxYi4qpWkuG+RPdQMg60C3eHCJGSGFjYZdIHYmBkxy
|
||||||
|
PDulYN0M68BK5umPOzwaR83kW4wrpnXMSii86UGCrPwsj05k83ESj13oii5DDaSr
|
||||||
|
4yK6twMrusHNUxusPZ7+Qc9bDw==
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -0,0 +1,5 @@
|
||||||
|
sentinel resolve-hostnames yes
|
||||||
|
sentinel monitor redis-standalone 127.0.0.1 6379 2
|
||||||
|
sentinel down-after-milliseconds redis-standalone 2000
|
||||||
|
sentinel failover-timeout redis-standalone 10000
|
||||||
|
sentinel parallel-syncs redis-standalone 1
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
port 6379
|
||||||
|
|
||||||
|
tls-port 6666
|
||||||
|
|
||||||
|
include /redis/work/tls/redis-tls.conf
|
||||||
|
|
||||||
|
protected-mode no
|
|
@ -0,0 +1,496 @@
|
||||||
|
27:C 05 Dec 2024 08:52:52.311 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
27:C 05 Dec 2024 08:52:52.312 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=27, just started
|
||||||
|
27:C 05 Dec 2024 08:52:52.312 * Configuration loaded
|
||||||
|
27:M 05 Dec 2024 08:52:52.313 * monotonic clock: POSIX clock_gettime
|
||||||
|
27:M 05 Dec 2024 08:52:52.314 * Running mode=standalone, port=6379.
|
||||||
|
27:M 05 Dec 2024 08:52:52.316 * Server initialized
|
||||||
|
27:M 05 Dec 2024 08:52:52.316 * Ready to accept connections tcp
|
||||||
|
27:M 05 Dec 2024 08:52:52.316 * Ready to accept connections tls
|
||||||
|
27:M 05 Dec 2024 08:52:52.504 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 08:52:52.504 * Full resync requested by replica 172.21.0.5:6379
|
||||||
|
27:M 05 Dec 2024 08:52:52.505 * Replication backlog created, my new replication IDs are '01ba0054c5168e7801b93a965f375df43cbd49ae' and '0000000000000000000000000000000000000000'
|
||||||
|
27:M 05 Dec 2024 08:52:52.505 * Delay next BGSAVE for diskless SYNC
|
||||||
|
27:M 05 Dec 2024 08:52:57.459 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
27:M 05 Dec 2024 08:52:57.460 * Background RDB transfer started by pid 57
|
||||||
|
57:C 05 Dec 2024 08:52:57.460 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
27:M 05 Dec 2024 08:52:57.461 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
27:M 05 Dec 2024 08:52:57.463 * Background RDB transfer terminated with success
|
||||||
|
27:M 05 Dec 2024 08:52:57.463 * Streamed RDB transfer with replica 172.21.0.5:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
27:M 05 Dec 2024 08:52:57.464 * Synchronization with replica 172.21.0.5:6379 succeeded
|
||||||
|
27:M 05 Dec 2024 10:54:04.647 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 05 Dec 2024 10:54:04.649 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 10:54:04.653 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 10:54:04.654 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 33793.
|
||||||
|
27:M 05 Dec 2024 13:52:40.557 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 13:52:40.559 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 13:52:40.560 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 38483.
|
||||||
|
27:M 05 Dec 2024 15:54:50.048 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 15:54:50.050 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 15:54:50.051 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 38525.
|
||||||
|
27:M 05 Dec 2024 17:56:40.964 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 17:56:40.965 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 17:56:40.965 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 38553.
|
||||||
|
27:M 05 Dec 2024 18:09:24.075 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 18:09:24.076 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 18:09:24.077 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 38595.
|
||||||
|
27:M 05 Dec 2024 22:02:39.906 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 05 Dec 2024 22:02:39.909 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 05 Dec 2024 22:02:39.909 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43621.
|
||||||
|
27:M 06 Dec 2024 00:04:43.299 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 00:04:43.299 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 00:04:43.301 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 00:04:43.302 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43663.
|
||||||
|
27:M 06 Dec 2024 04:08:36.158 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 04:08:36.159 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 04:08:36.161 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 04:08:36.162 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43705.
|
||||||
|
27:M 06 Dec 2024 06:10:40.379 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 06:10:40.380 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 06:10:40.382 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 06:10:40.382 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43747.
|
||||||
|
27:M 06 Dec 2024 09:13:44.329 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 09:13:44.331 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 09:13:44.332 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43789.
|
||||||
|
27:M 06 Dec 2024 12:16:43.149 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 12:16:43.151 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 12:16:43.155 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 12:16:43.156 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 14 bytes of backlog starting from offset 43817.
|
||||||
|
27:M 06 Dec 2024 14:18:39.965 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 14:18:39.966 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 14:18:39.967 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43859.
|
||||||
|
27:M 06 Dec 2024 17:21:38.373 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 17:21:38.374 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 17:21:38.378 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 17:21:38.379 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43901.
|
||||||
|
27:M 06 Dec 2024 18:22:39.761 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 18:22:39.762 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 18:22:39.763 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 18:22:39.764 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43943.
|
||||||
|
27:M 06 Dec 2024 21:25:36.104 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 21:25:36.105 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 21:25:36.109 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 21:25:36.110 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 43985.
|
||||||
|
27:M 06 Dec 2024 22:26:41.981 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 06 Dec 2024 22:26:41.983 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 06 Dec 2024 22:26:41.986 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 06 Dec 2024 22:26:41.987 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44013.
|
||||||
|
27:M 07 Dec 2024 01:29:37.439 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 07 Dec 2024 01:29:37.440 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 01:29:37.441 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 01:29:37.441 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44055.
|
||||||
|
27:M 07 Dec 2024 04:32:40.080 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 07 Dec 2024 04:32:40.081 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 04:32:40.082 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 04:32:40.083 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44097.
|
||||||
|
27:M 07 Dec 2024 07:35:36.458 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 07 Dec 2024 07:35:36.460 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 07:35:36.464 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 07:35:36.465 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44139.
|
||||||
|
27:M 07 Dec 2024 09:37:47.655 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 09:37:47.657 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 09:37:47.658 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44181.
|
||||||
|
27:M 07 Dec 2024 12:40:38.373 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 07 Dec 2024 12:40:38.374 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 12:40:38.376 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 12:40:38.378 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44209.
|
||||||
|
27:M 07 Dec 2024 14:42:36.713 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 07 Dec 2024 14:42:36.714 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 14:42:36.718 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 14:42:36.719 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44251.
|
||||||
|
27:M 07 Dec 2024 16:44:45.784 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 16:44:45.785 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 16:44:45.786 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44293.
|
||||||
|
27:M 07 Dec 2024 19:47:46.146 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 19:47:46.149 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 19:47:46.150 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44335.
|
||||||
|
27:M 07 Dec 2024 22:20:20.015 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 07 Dec 2024 22:20:20.017 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 07 Dec 2024 22:20:20.018 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44363.
|
||||||
|
27:M 08 Dec 2024 00:52:41.823 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 08 Dec 2024 00:52:41.827 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 00:52:41.830 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 00:52:41.831 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44405.
|
||||||
|
27:M 08 Dec 2024 02:54:50.247 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 08 Dec 2024 02:54:50.248 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 02:54:50.251 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 02:54:50.252 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44447.
|
||||||
|
27:M 08 Dec 2024 05:57:37.045 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 05:57:37.047 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 05:57:37.048 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44489.
|
||||||
|
27:M 08 Dec 2024 06:58:42.865 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 06:58:42.867 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 06:58:42.868 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44531.
|
||||||
|
27:M 08 Dec 2024 10:01:41.784 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 08 Dec 2024 10:01:41.786 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 10:01:41.790 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 10:01:41.791 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44559.
|
||||||
|
27:M 08 Dec 2024 10:43:04.444 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 08 Dec 2024 10:43:04.445 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 08 Dec 2024 10:43:04.446 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 44601.
|
||||||
|
27:M 09 Dec 2024 08:51:08.931 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 08:51:08.992 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 08:51:09.073 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 08:51:09.087 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 85145.
|
||||||
|
27:M 09 Dec 2024 11:19:14.239 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 11:19:14.242 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 11:19:14.243 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 96989.
|
||||||
|
27:M 09 Dec 2024 11:20:41.439 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 11:20:41.447 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 11:20:41.448 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 97017.
|
||||||
|
27:M 09 Dec 2024 13:18:55.122 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 13:18:55.123 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 13:18:55.126 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 13:18:55.126 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 97101.
|
||||||
|
27:M 09 Dec 2024 13:25:09.844 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 13:25:09.846 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 13:25:09.846 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 97143.
|
||||||
|
27:M 09 Dec 2024 14:25:30.782 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 14:25:30.784 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 14:25:30.788 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 14:25:30.789 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 14 bytes of backlog starting from offset 101021.
|
||||||
|
27:M 09 Dec 2024 14:31:59.494 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 14:31:59.496 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 14:31:59.500 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 14:31:59.501 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101063.
|
||||||
|
27:M 09 Dec 2024 14:33:53.882 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 14:33:53.884 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 14:33:53.884 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101105.
|
||||||
|
27:M 09 Dec 2024 15:26:25.101 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 15:26:25.102 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 15:26:25.106 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 15:26:25.106 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101147.
|
||||||
|
27:M 09 Dec 2024 16:28:34.958 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 16:28:34.960 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 16:28:34.960 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101189.
|
||||||
|
27:M 09 Dec 2024 16:31:14.620 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 16:31:14.623 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 16:31:14.625 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101217.
|
||||||
|
27:M 09 Dec 2024 16:33:25.834 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 16:33:25.836 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 16:33:25.837 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101259.
|
||||||
|
27:M 09 Dec 2024 16:35:42.515 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 16:35:42.516 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 16:35:42.519 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 16:35:42.520 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101301.
|
||||||
|
27:M 09 Dec 2024 16:39:42.262 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 16:39:42.264 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 16:39:42.265 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101343.
|
||||||
|
27:M 09 Dec 2024 17:24:49.392 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 17:24:49.393 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 17:24:49.397 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 17:24:49.398 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 14 bytes of backlog starting from offset 101371.
|
||||||
|
27:M 09 Dec 2024 18:23:35.982 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 18:23:35.983 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 18:23:35.985 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 18:23:35.986 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101413.
|
||||||
|
27:M 09 Dec 2024 18:25:27.115 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 18:25:27.117 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 18:25:27.120 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 18:25:27.120 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101455.
|
||||||
|
27:M 09 Dec 2024 20:27:25.601 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 09 Dec 2024 20:27:25.602 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 20:27:25.606 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 20:27:25.607 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101497.
|
||||||
|
27:M 09 Dec 2024 22:29:37.250 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 09 Dec 2024 22:29:37.250 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 09 Dec 2024 22:29:37.251 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101539.
|
||||||
|
27:M 10 Dec 2024 00:31:37.935 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 00:31:37.938 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 00:31:37.939 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101567.
|
||||||
|
27:M 10 Dec 2024 03:34:24.371 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 03:34:24.372 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 03:34:24.374 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 03:34:24.375 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101609.
|
||||||
|
27:M 10 Dec 2024 05:36:37.934 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 05:36:38.045 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 05:36:38.047 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 05:36:38.048 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101651.
|
||||||
|
27:M 10 Dec 2024 07:57:06.696 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 07:57:06.700 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 07:57:06.703 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 07:57:06.704 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101693.
|
||||||
|
27:M 10 Dec 2024 08:22:15.489 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 08:22:15.489 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 08:22:15.492 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 08:22:15.492 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 101735.
|
||||||
|
27:M 10 Dec 2024 11:44:54.371 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 11:44:54.373 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 11:44:54.375 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 11:44:54.375 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 117919.
|
||||||
|
27:M 10 Dec 2024 12:01:11.659 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 10 Dec 2024 12:01:11.660 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 10 Dec 2024 12:01:11.669 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 10 Dec 2024 12:01:11.670 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 118003.
|
||||||
|
27:M 11 Dec 2024 16:23:34.957 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 16:23:34.960 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 16:23:34.961 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 253061.
|
||||||
|
27:M 11 Dec 2024 16:36:13.344 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 16:36:13.345 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 16:36:13.345 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 253103.
|
||||||
|
27:M 11 Dec 2024 16:38:27.678 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 11 Dec 2024 16:38:27.680 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 16:38:27.683 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 16:38:27.684 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 253145.
|
||||||
|
27:M 11 Dec 2024 16:53:05.155 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 11 Dec 2024 16:53:05.157 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 16:53:05.160 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 16:53:05.161 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 14 bytes of backlog starting from offset 253859.
|
||||||
|
27:M 11 Dec 2024 20:00:58.000 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 11 Dec 2024 20:00:58.001 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 20:00:58.006 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 20:00:58.007 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 268895.
|
||||||
|
27:M 11 Dec 2024 21:00:31.698 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 11 Dec 2024 21:00:31.706 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 11 Dec 2024 21:00:31.708 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 11 Dec 2024 21:00:31.709 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 268937.
|
||||||
|
27:M 12 Dec 2024 00:01:46.470 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 12 Dec 2024 00:01:46.472 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 12 Dec 2024 00:01:46.476 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 12 Dec 2024 00:01:46.477 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 14 bytes of backlog starting from offset 268965.
|
||||||
|
27:M 12 Dec 2024 02:35:21.563 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 12 Dec 2024 02:35:21.563 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 12 Dec 2024 02:35:21.565 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 12 Dec 2024 02:35:21.566 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 269007.
|
||||||
|
27:M 12 Dec 2024 06:07:37.151 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 12 Dec 2024 06:07:37.152 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 12 Dec 2024 06:07:37.153 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 269049.
|
||||||
|
27:M 12 Dec 2024 09:10:38.917 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 12 Dec 2024 09:10:38.919 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 12 Dec 2024 09:10:38.923 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 12 Dec 2024 09:10:38.924 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 269091.
|
||||||
|
27:M 12 Dec 2024 09:24:18.812 # Disconnecting timedout replica (streaming sync): 172.21.0.5:6379
|
||||||
|
27:M 12 Dec 2024 09:24:18.813 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 12 Dec 2024 09:24:18.815 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 12 Dec 2024 09:24:18.815 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 269133.
|
||||||
|
27:M 15 Dec 2024 08:15:45.040 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 15 Dec 2024 08:15:45.063 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 15 Dec 2024 08:15:45.069 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 316677.
|
||||||
|
27:M 15 Dec 2024 11:09:23.133 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
27:M 15 Dec 2024 11:09:23.135 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
27:M 15 Dec 2024 11:09:23.136 * Partial resynchronization request from 172.21.0.5:6379 accepted. Sending 0 bytes of backlog starting from offset 327723.
|
||||||
|
27:signal-handler (1734261519) Received SIGTERM scheduling shutdown...
|
||||||
|
27:M 15 Dec 2024 11:18:39.452 * User requested shutdown...
|
||||||
|
27:M 15 Dec 2024 11:18:39.455 * 1 of 1 replicas are in sync when shutting down.
|
||||||
|
27:M 15 Dec 2024 11:18:39.455 * Removing the pid file.
|
||||||
|
27:M 15 Dec 2024 11:18:39.457 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 11:18:41.351 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 11:18:41.352 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 11:18:41.352 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 11:18:41.354 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 11:18:41.358 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 11:18:41.365 * Server initialized
|
||||||
|
13:M 15 Dec 2024 11:18:41.366 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 11:18:41.367 * Ready to accept connections tls
|
||||||
|
13:signal-handler (1734261737) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 11:22:17.495 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 11:22:17.504 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 11:22:17.510 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 11:22:19.241 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 11:22:19.250 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 11:22:19.256 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 11:22:19.258 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 11:22:19.265 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 11:22:19.276 * Server initialized
|
||||||
|
13:M 15 Dec 2024 11:22:19.277 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 11:22:19.277 * Ready to accept connections tls
|
||||||
|
13:M 15 Dec 2024 11:22:19.535 * Replica 172.21.0.4:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:22:19.536 * Partial resynchronization not accepted: Replication ID mismatch (Replica asked for '01ba0054c5168e7801b93a965f375df43cbd49ae', my replication IDs are '7a382c162bb42195472953794e4e35afa2765fe4' and '0000000000000000000000000000000000000000')
|
||||||
|
13:M 15 Dec 2024 11:22:19.536 * Replication backlog created, my new replication IDs are '85660648d35e865e8b5311062d817c7e91b0fd68' and '0000000000000000000000000000000000000000'
|
||||||
|
13:M 15 Dec 2024 11:22:19.536 * Delay next BGSAVE for diskless SYNC
|
||||||
|
13:M 15 Dec 2024 11:22:24.422 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
13:M 15 Dec 2024 11:22:24.427 * Background RDB transfer started by pid 43
|
||||||
|
43:C 15 Dec 2024 11:22:24.427 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
13:M 15 Dec 2024 11:22:24.443 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
13:M 15 Dec 2024 11:22:24.447 * Background RDB transfer terminated with success
|
||||||
|
13:M 15 Dec 2024 11:22:24.447 * Streamed RDB transfer with replica 172.21.0.4:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
13:M 15 Dec 2024 11:22:24.448 * Synchronization with replica 172.21.0.4:6379 succeeded
|
||||||
|
13:M 15 Dec 2024 11:24:03.169 * Connection with replica 172.21.0.4:6379 lost.
|
||||||
|
13:M 15 Dec 2024 11:24:03.170 * Replica 172.21.0.4:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:24:03.171 * Partial resynchronization request from 172.21.0.4:6379 accepted. Sending 0 bytes of backlog starting from offset 43.
|
||||||
|
13:M 15 Dec 2024 11:36:32.691 * Connection with replica 172.21.0.4:6379 lost.
|
||||||
|
13:M 15 Dec 2024 11:36:32.692 * Replica 172.21.0.4:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:36:32.693 * Partial resynchronization request from 172.21.0.4:6379 accepted. Sending 0 bytes of backlog starting from offset 57452251.
|
||||||
|
13:M 15 Dec 2024 11:36:33.831 * CONFIG REWRITE executed with success.
|
||||||
|
13:M 15 Dec 2024 11:36:33.872 * DB saved on disk
|
||||||
|
13:S 15 Dec 2024 11:36:33.878 * Before turning into a replica, using my own master parameters to synthesize a cached master: I may be able to synchronize with the new master with just a partial transfer.
|
||||||
|
13:S 15 Dec 2024 11:36:33.878 * Connecting to MASTER localhost:8888
|
||||||
|
13:S 15 Dec 2024 11:36:33.881 * MASTER <-> REPLICA sync started
|
||||||
|
13:S 15 Dec 2024 11:36:33.882 * REPLICAOF localhost:8888 enabled (user request from 'id=700 addr=192.168.65.1:47367 laddr=172.21.0.2:6379 fd=15 name= age=0 idle=0 flags=N db=15 sub=0 psub=0 ssub=0 multi=-1 watch=0 qbuf=42 qbuf-free=20432 argv-mem=20 multi-mem=0 rbs=16384 rbp=16384 obl=0 oll=0 omem=0 tot-mem=37804 events=r cmd=slaveof user=default redir=-1 resp=3 lib-name=go-redis(,go1.23.1) lib-ver=9.6.2')
|
||||||
|
13:S 15 Dec 2024 11:36:33.884 # Error condition on socket for SYNC: Connection refused
|
||||||
|
13:M 15 Dec 2024 11:36:33.885 * Discarding previously cached master state.
|
||||||
|
13:M 15 Dec 2024 11:36:33.885 * Setting secondary replication ID to 85660648d35e865e8b5311062d817c7e91b0fd68, valid up to offset: 57452574. New replication ID is acf2b69a233b3c0cc712ab21f05055b1e50f12eb
|
||||||
|
13:M 15 Dec 2024 11:36:33.885 * Connection with replica 172.21.0.4:6379 lost.
|
||||||
|
13:M 15 Dec 2024 11:36:33.885 * MASTER MODE enabled (user request from 'id=700 addr=192.168.65.1:47367 laddr=172.21.0.2:6379 fd=15 name= age=0 idle=0 flags=N db=15 sub=0 psub=0 ssub=0 multi=-1 watch=0 qbuf=34 qbuf-free=20440 argv-mem=12 multi-mem=0 rbs=16384 rbp=5 obl=0 oll=0 omem=0 tot-mem=37796 events=r cmd=slaveof user=default redir=-1 resp=3 lib-name=go-redis(,go1.23.1) lib-ver=9.6.2')
|
||||||
|
13:M 15 Dec 2024 11:36:33.886 * Replica 172.21.0.4:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:36:33.887 * Partial resynchronization request from 172.21.0.4:6379 accepted. Sending 0 bytes of backlog starting from offset 57452574.
|
||||||
|
13:M 15 Dec 2024 11:36:37.458 # Module /path/to/non-existent-library.so failed to load: /path/to/non-existent-library.so: cannot open shared object file: No such file or directory
|
||||||
|
13:M 15 Dec 2024 11:36:56.787 # Slow script detected: still in execution after 5000 milliseconds. You can try killing the script using the FUNCTION KILL command. Script name is: lib1_func1.
|
||||||
|
13:M 15 Dec 2024 11:36:56.789 * Lua script killed by user with SCRIPT KILL.
|
||||||
|
13:M 15 Dec 2024 11:47:34.858 * Connection with replica 172.21.0.4:6379 lost.
|
||||||
|
13:signal-handler (1734263255) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 11:47:35.162 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 11:47:35.162 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 11:47:35.163 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 11:49:55.732 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 11:49:55.733 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 11:49:55.734 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 11:49:55.738 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 11:49:55.742 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 11:49:55.750 * Server initialized
|
||||||
|
13:M 15 Dec 2024 11:49:55.751 * Loading RDB produced by version 7.9.224
|
||||||
|
13:M 15 Dec 2024 11:49:55.751 * RDB age 802 seconds
|
||||||
|
13:M 15 Dec 2024 11:49:55.752 * RDB memory usage when created 2.29 Mb
|
||||||
|
13:M 15 Dec 2024 11:49:55.752 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
13:M 15 Dec 2024 11:49:55.753 * DB loaded from disk: 0.003 seconds
|
||||||
|
13:M 15 Dec 2024 11:49:55.754 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 11:49:55.754 * Ready to accept connections tls
|
||||||
|
13:M 15 Dec 2024 11:49:55.882 * Replica 172.21.0.4:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:49:55.883 * Full resync requested by replica 172.21.0.4:6379
|
||||||
|
13:M 15 Dec 2024 11:49:55.885 * Delay next BGSAVE for diskless SYNC
|
||||||
|
13:M 15 Dec 2024 11:50:00.921 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
13:M 15 Dec 2024 11:50:00.924 * Background RDB transfer started by pid 37
|
||||||
|
37:C 15 Dec 2024 11:50:00.925 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
13:M 15 Dec 2024 11:50:00.926 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
13:M 15 Dec 2024 11:50:00.928 * Background RDB transfer terminated with success
|
||||||
|
13:M 15 Dec 2024 11:50:00.929 * Streamed RDB transfer with replica 172.21.0.4:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
13:M 15 Dec 2024 11:50:00.929 * Synchronization with replica 172.21.0.4:6379 succeeded
|
||||||
|
13:M 15 Dec 2024 11:51:28.978 * Connection with replica 172.21.0.4:6379 lost.
|
||||||
|
13:signal-handler (1734263489) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 11:51:29.224 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 11:51:29.224 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 11:51:29.225 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 11:52:57.865 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 11:52:57.866 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 11:52:57.866 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 11:52:57.867 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 11:52:57.869 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 11:52:57.877 * Server initialized
|
||||||
|
13:M 15 Dec 2024 11:52:57.892 * Loading RDB produced by version 7.9.224
|
||||||
|
13:M 15 Dec 2024 11:52:57.894 * RDB age 984 seconds
|
||||||
|
13:M 15 Dec 2024 11:52:57.894 * RDB memory usage when created 2.29 Mb
|
||||||
|
13:M 15 Dec 2024 11:52:57.894 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
13:M 15 Dec 2024 11:52:57.895 * DB loaded from disk: 0.017 seconds
|
||||||
|
13:M 15 Dec 2024 11:52:57.895 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 11:52:57.896 * Ready to accept connections tls
|
||||||
|
13:M 15 Dec 2024 11:52:58.058 * Replica 172.21.0.5:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 11:52:58.059 * Full resync requested by replica 172.21.0.5:6379
|
||||||
|
13:M 15 Dec 2024 11:52:58.059 * Delay next BGSAVE for diskless SYNC
|
||||||
|
13:M 15 Dec 2024 11:53:03.064 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
13:M 15 Dec 2024 11:53:03.066 * Background RDB transfer started by pid 43
|
||||||
|
43:C 15 Dec 2024 11:53:03.067 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
13:M 15 Dec 2024 11:53:03.068 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
13:M 15 Dec 2024 11:53:03.071 * Background RDB transfer terminated with success
|
||||||
|
13:M 15 Dec 2024 11:53:03.071 * Streamed RDB transfer with replica 172.21.0.5:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
13:M 15 Dec 2024 11:53:03.071 * Synchronization with replica 172.21.0.5:6379 succeeded
|
||||||
|
13:M 15 Dec 2024 13:10:27.920 * Connection with replica 172.21.0.5:6379 lost.
|
||||||
|
13:signal-handler (1734268228) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 13:10:28.208 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 13:10:28.209 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 13:10:28.210 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 13:13:28.148 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 13:13:28.151 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 13:13:28.154 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 13:13:28.159 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 13:13:28.167 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 13:13:28.184 * Server initialized
|
||||||
|
13:M 15 Dec 2024 13:13:28.189 * Loading RDB produced by version 7.9.224
|
||||||
|
13:M 15 Dec 2024 13:13:28.190 * RDB age 5815 seconds
|
||||||
|
13:M 15 Dec 2024 13:13:28.191 * RDB memory usage when created 2.29 Mb
|
||||||
|
13:M 15 Dec 2024 13:13:28.192 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
13:M 15 Dec 2024 13:13:28.193 * DB loaded from disk: 0.009 seconds
|
||||||
|
13:M 15 Dec 2024 13:13:28.194 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 13:13:28.196 * Ready to accept connections tls
|
||||||
|
13:M 15 Dec 2024 13:13:28.386 * Replica 172.21.0.7:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 13:13:28.389 * Full resync requested by replica 172.21.0.7:6379
|
||||||
|
13:M 15 Dec 2024 13:13:28.391 * Delay next BGSAVE for diskless SYNC
|
||||||
|
13:M 15 Dec 2024 13:13:33.351 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
13:M 15 Dec 2024 13:13:33.353 * Background RDB transfer started by pid 43
|
||||||
|
43:C 15 Dec 2024 13:13:33.354 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
13:M 15 Dec 2024 13:13:33.355 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
13:M 15 Dec 2024 13:13:33.358 * Background RDB transfer terminated with success
|
||||||
|
13:M 15 Dec 2024 13:13:33.359 * Streamed RDB transfer with replica 172.21.0.7:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
13:M 15 Dec 2024 13:13:33.359 * Synchronization with replica 172.21.0.7:6379 succeeded
|
||||||
|
13:M 15 Dec 2024 13:30:14.636 * Connection with replica 172.21.0.7:6379 lost.
|
||||||
|
13:signal-handler (1734269414) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 13:30:14.899 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 13:30:14.899 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 13:30:14.900 # Redis is now ready to exit, bye bye...
|
||||||
|
12:C 15 Dec 2024 13:30:30.638 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
12:C 15 Dec 2024 13:30:30.639 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=12, just started
|
||||||
|
12:C 15 Dec 2024 13:30:30.639 * Configuration loaded
|
||||||
|
12:M 15 Dec 2024 13:30:30.641 * monotonic clock: POSIX clock_gettime
|
||||||
|
12:M 15 Dec 2024 13:30:30.646 * Running mode=standalone, port=6379.
|
||||||
|
12:M 15 Dec 2024 13:30:30.653 * Server initialized
|
||||||
|
12:M 15 Dec 2024 13:30:30.655 * Loading RDB produced by version 7.9.224
|
||||||
|
12:M 15 Dec 2024 13:30:30.670 * RDB age 6837 seconds
|
||||||
|
12:M 15 Dec 2024 13:30:30.671 * RDB memory usage when created 2.29 Mb
|
||||||
|
12:M 15 Dec 2024 13:30:30.673 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
12:M 15 Dec 2024 13:30:30.678 * DB loaded from disk: 0.024 seconds
|
||||||
|
12:M 15 Dec 2024 13:30:30.679 * Ready to accept connections tcp
|
||||||
|
12:M 15 Dec 2024 13:30:30.680 * Ready to accept connections tls
|
||||||
|
12:M 15 Dec 2024 13:30:30.922 * Replica 172.21.0.9:6379 asks for synchronization
|
||||||
|
12:M 15 Dec 2024 13:30:30.924 * Full resync requested by replica 172.21.0.9:6379
|
||||||
|
12:M 15 Dec 2024 13:30:30.928 * Delay next BGSAVE for diskless SYNC
|
||||||
|
12:M 15 Dec 2024 13:30:35.807 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
12:M 15 Dec 2024 13:30:35.809 * Background RDB transfer started by pid 42
|
||||||
|
42:C 15 Dec 2024 13:30:35.809 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
12:M 15 Dec 2024 13:30:35.810 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
12:M 15 Dec 2024 13:30:35.812 * Background RDB transfer terminated with success
|
||||||
|
12:M 15 Dec 2024 13:30:35.812 * Streamed RDB transfer with replica 172.21.0.9:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
12:M 15 Dec 2024 13:30:35.813 * Synchronization with replica 172.21.0.9:6379 succeeded
|
||||||
|
12:M 15 Dec 2024 13:36:35.527 * Connection with replica 172.21.0.9:6379 lost.
|
||||||
|
12:signal-handler (1734269795) Received SIGTERM scheduling shutdown...
|
||||||
|
12:M 15 Dec 2024 13:36:35.733 * User requested shutdown...
|
||||||
|
12:M 15 Dec 2024 13:36:35.734 * Removing the pid file.
|
||||||
|
12:M 15 Dec 2024 13:36:35.735 # Redis is now ready to exit, bye bye...
|
||||||
|
13:C 15 Dec 2024 13:37:03.304 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
13:C 15 Dec 2024 13:37:03.306 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=13, just started
|
||||||
|
13:C 15 Dec 2024 13:37:03.308 * Configuration loaded
|
||||||
|
13:M 15 Dec 2024 13:37:03.309 * monotonic clock: POSIX clock_gettime
|
||||||
|
13:M 15 Dec 2024 13:37:03.312 * Running mode=standalone, port=6379.
|
||||||
|
13:M 15 Dec 2024 13:37:03.322 * Server initialized
|
||||||
|
13:M 15 Dec 2024 13:37:03.326 * Loading RDB produced by version 7.9.224
|
||||||
|
13:M 15 Dec 2024 13:37:03.327 * RDB age 7230 seconds
|
||||||
|
13:M 15 Dec 2024 13:37:03.328 * RDB memory usage when created 2.29 Mb
|
||||||
|
13:M 15 Dec 2024 13:37:03.329 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
13:M 15 Dec 2024 13:37:03.330 * DB loaded from disk: 0.006 seconds
|
||||||
|
13:M 15 Dec 2024 13:37:03.331 * Ready to accept connections tcp
|
||||||
|
13:M 15 Dec 2024 13:37:03.333 * Ready to accept connections tls
|
||||||
|
13:M 15 Dec 2024 13:37:03.605 * Replica 172.21.0.7:6379 asks for synchronization
|
||||||
|
13:M 15 Dec 2024 13:37:03.607 * Full resync requested by replica 172.21.0.7:6379
|
||||||
|
13:M 15 Dec 2024 13:37:03.608 * Delay next BGSAVE for diskless SYNC
|
||||||
|
13:M 15 Dec 2024 13:37:08.490 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
13:M 15 Dec 2024 13:37:08.491 * Background RDB transfer started by pid 43
|
||||||
|
43:C 15 Dec 2024 13:37:08.492 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
13:M 15 Dec 2024 13:37:08.493 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
13:M 15 Dec 2024 13:37:08.496 * Background RDB transfer terminated with success
|
||||||
|
13:M 15 Dec 2024 13:37:08.496 * Streamed RDB transfer with replica 172.21.0.7:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
13:M 15 Dec 2024 13:37:08.496 * Synchronization with replica 172.21.0.7:6379 succeeded
|
||||||
|
13:M 15 Dec 2024 13:39:04.666 * Connection with replica 172.21.0.7:6379 lost.
|
||||||
|
13:signal-handler (1734269944) Received SIGTERM scheduling shutdown...
|
||||||
|
13:M 15 Dec 2024 13:39:04.968 * User requested shutdown...
|
||||||
|
13:M 15 Dec 2024 13:39:04.969 * Removing the pid file.
|
||||||
|
13:M 15 Dec 2024 13:39:04.970 # Redis is now ready to exit, bye bye...
|
||||||
|
12:C 15 Dec 2024 13:39:11.113 * oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
|
||||||
|
12:C 15 Dec 2024 13:39:11.116 * Redis version=7.9.224, bits=64, commit=00000000, modified=1, pid=12, just started
|
||||||
|
12:C 15 Dec 2024 13:39:11.118 * Configuration loaded
|
||||||
|
12:M 15 Dec 2024 13:39:11.120 * monotonic clock: POSIX clock_gettime
|
||||||
|
12:M 15 Dec 2024 13:39:11.128 * Running mode=standalone, port=6379.
|
||||||
|
12:M 15 Dec 2024 13:39:11.142 * Server initialized
|
||||||
|
12:M 15 Dec 2024 13:39:11.145 * Loading RDB produced by version 7.9.224
|
||||||
|
12:M 15 Dec 2024 13:39:11.146 * RDB age 7358 seconds
|
||||||
|
12:M 15 Dec 2024 13:39:11.148 * RDB memory usage when created 2.29 Mb
|
||||||
|
12:M 15 Dec 2024 13:39:11.149 * Done loading RDB, keys loaded: 10, keys expired: 0.
|
||||||
|
12:M 15 Dec 2024 13:39:11.151 * DB loaded from disk: 0.008 seconds
|
||||||
|
12:M 15 Dec 2024 13:39:11.153 * Ready to accept connections tcp
|
||||||
|
12:M 15 Dec 2024 13:39:11.154 * Ready to accept connections tls
|
||||||
|
12:M 15 Dec 2024 13:39:11.346 * Replica 172.21.0.8:6379 asks for synchronization
|
||||||
|
12:M 15 Dec 2024 13:39:11.346 * Full resync requested by replica 172.21.0.8:6379
|
||||||
|
12:M 15 Dec 2024 13:39:11.347 * Delay next BGSAVE for diskless SYNC
|
||||||
|
12:M 15 Dec 2024 13:39:16.293 * Starting BGSAVE for SYNC with target: replicas sockets
|
||||||
|
12:M 15 Dec 2024 13:39:16.295 * Background RDB transfer started by pid 42
|
||||||
|
42:C 15 Dec 2024 13:39:16.296 * Fork CoW for RDB: current 0 MB, peak 0 MB, average 0 MB
|
||||||
|
12:M 15 Dec 2024 13:39:16.299 * Diskless rdb transfer, done reading from pipe, 1 replicas still up.
|
||||||
|
12:M 15 Dec 2024 13:39:16.304 * Background RDB transfer terminated with success
|
||||||
|
12:M 15 Dec 2024 13:39:16.306 * Streamed RDB transfer with replica 172.21.0.8:6379 succeeded (socket). Waiting for REPLCONF ACK from replica to enable streaming
|
||||||
|
12:M 15 Dec 2024 13:39:16.307 * Synchronization with replica 172.21.0.8:6379 succeeded
|
|
@ -0,0 +1 @@
|
||||||
|
12
|
|
@ -0,0 +1 @@
|
||||||
|
node-0
|
|
@ -0,0 +1 @@
|
||||||
|
node-0
|
|
@ -0,0 +1,31 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIFSzCCAzOgAwIBAgIUHHFTUwN2eqisba5Z/5hpOHPwxgcwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwNTETMBEGA1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUg
|
||||||
|
QXV0aG9yaXR5MB4XDTI0MTIwNTA4NTI1MVoXDTM0MTIwMzA4NTI1MVowNTETMBEG
|
||||||
|
A1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUgQXV0aG9yaXR5
|
||||||
|
MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmOr+GX8wmexDBrgydT3M
|
||||||
|
bL9tkF8sRZmkHvuzVS2VQt8SiKe8crP4ZGv8/Ivqwcajx08oG+VPSD/huCuDvNpW
|
||||||
|
wfdGR8/dkGh5sJeGHCui+KJ/onfhgehMPs3Z+hizfXPiUmZdx58N8SzPWfZVn6cn
|
||||||
|
NE7C9hT8CGDgLrlIOLP00y6jeiiwWLv70W8DzuxAazNHM0bBHMrss/V5YLrpe0yc
|
||||||
|
r94xXax2WvGI9sNv4h2XA9KFVcILMhhSAR2PWztWZrXebADjrMCymxJeYeUlmFVF
|
||||||
|
7JalvikOoyfcBCM5IsWU8RMRth3HaDKe6V5XZ3LKdnUWgPbN51atw+VKXAYDGOqV
|
||||||
|
G9BZdZTQHdQaLRZx7f9bOuH/u4w0P/cGCkaZcehRR9O5o8NuojC6Fcmwl1OlXXCN
|
||||||
|
sblP/y627E14l07EZtEEvwXbakDTL5lYuF9lFo0MlQVBDWA/iuFLdPWid05vuntD
|
||||||
|
WlhC++DoB+cu2mNYbaVwJwxm4rtunoV+XLU2gBhoJy/xWN6efjmB+pxWHlLLPRCY
|
||||||
|
+A1RpvFOn0KU3+09Hewmqf69AJ6MuTI2loFFR77M7DPKE4VOWksDGuyNmjS2qGTg
|
||||||
|
6IEK3IbZt5FWgORofece7Z25aZQlD7qHs9iLVinngYUH3yzm5qFfS3RKvvFIxtS3
|
||||||
|
pCajezD69FIbT4DcS5dJvMMCAwEAAaNTMFEwHQYDVR0OBBYEFBQP3AreHQ7M9fW/
|
||||||
|
B5ueRD4Mj0W7MB8GA1UdIwQYMBaAFBQP3AreHQ7M9fW/B5ueRD4Mj0W7MA8GA1Ud
|
||||||
|
EwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggIBAB6AGszBsmhlxw5fPLUjSuGm
|
||||||
|
6E7aa8EGlY6+2EJqw6oAR2v0x7+5RPuRyD1jtAk8k7Fs7xrZKvxmRhOhC4n9m2KZ
|
||||||
|
PQNghSquSvswRQSizHvR5UZPGJPJFnV3nf+TIyP9sGx8Qjaup5WBq6ivhvfJe6Jc
|
||||||
|
8MTV3hdnI3SU/IA8U8CuGcAL3xkHw482GI/awxQU3wgN1E3FrWqM9PO1GR9vviEX
|
||||||
|
PZTheSzZXi+79JbHXrrdvwwPogBDB5mSG0freUqV+mb7Km2E9HbHMA4TslrQ6kvh
|
||||||
|
077gBr0gRLCK1qzfHM3njxSeozbiiTZoFgyWBYh/oEhaUO0kAJ7cM0KMEjxdIEh5
|
||||||
|
Ew9M52Cx7CCZ9bkHPCGQWRa84ixWHryYhWpRePJT49bSmk76B2/cgx9XFDq6424w
|
||||||
|
wDctnAbnp98fWxL91pR2NHO856BVYg6PwVK+mnwMmgdXM72gvRko6LIpAY8Ecn0v
|
||||||
|
3/XOelbUl/Lq1s8H1iSurZEhdHwRMUDuCiOBLeVVBgoS9C4rfcs0XeWBceHAtE7V
|
||||||
|
F99LffTG7sm10LbX+zNlZXEtrkuAQuzmS4WlDvBy5v841WVZrayfgd1qhyaRIPDU
|
||||||
|
HmCW/do+Khg38T48q4RfEhvlsCP4bK2qPOxM620AVjoUG0VZWhDJOX+BoFowkes0
|
||||||
|
qYYLUM2lpSO+oU8shp7C
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,52 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQCY6v4ZfzCZ7EMG
|
||||||
|
uDJ1Pcxsv22QXyxFmaQe+7NVLZVC3xKIp7xys/hka/z8i+rBxqPHTygb5U9IP+G4
|
||||||
|
K4O82lbB90ZHz92QaHmwl4YcK6L4on+id+GB6Ew+zdn6GLN9c+JSZl3Hnw3xLM9Z
|
||||||
|
9lWfpyc0TsL2FPwIYOAuuUg4s/TTLqN6KLBYu/vRbwPO7EBrM0czRsEcyuyz9Xlg
|
||||||
|
uul7TJyv3jFdrHZa8Yj2w2/iHZcD0oVVwgsyGFIBHY9bO1Zmtd5sAOOswLKbEl5h
|
||||||
|
5SWYVUXslqW+KQ6jJ9wEIzkixZTxExG2HcdoMp7pXldncsp2dRaA9s3nVq3D5Upc
|
||||||
|
BgMY6pUb0Fl1lNAd1BotFnHt/1s64f+7jDQ/9wYKRplx6FFH07mjw26iMLoVybCX
|
||||||
|
U6VdcI2xuU//LrbsTXiXTsRm0QS/BdtqQNMvmVi4X2UWjQyVBUENYD+K4Ut09aJ3
|
||||||
|
Tm+6e0NaWEL74OgH5y7aY1htpXAnDGbiu26ehX5ctTaAGGgnL/FY3p5+OYH6nFYe
|
||||||
|
Uss9EJj4DVGm8U6fQpTf7T0d7Cap/r0Anoy5MjaWgUVHvszsM8oThU5aSwMa7I2a
|
||||||
|
NLaoZODogQrchtm3kVaA5Gh95x7tnblplCUPuoez2ItWKeeBhQffLObmoV9LdEq+
|
||||||
|
8UjG1LekJqN7MPr0UhtPgNxLl0m8wwIDAQABAoICAAQcMNc7mXFRrd2E3upSzmdP
|
||||||
|
3+CFBloajpQ8nK3Z60ygVU2yAHkuyCre0i5xjk5GCgnl4USarb5Z5TW/iatuTO2q
|
||||||
|
uUtd1W03uama8QJZ0+gN6hNSWI/W0BHSE51Kw6xIDJm9YaDncAb+9tXKrrN7WSzp
|
||||||
|
PwlBOCL7g5sN5NiNUbPJaaBzboX8C4EuFDKgG/0lpDDHIpKlC6asnuYQMA1d2kpJ
|
||||||
|
1RbY91drbYyAZUX1GKWEJ4xOCmH+0FlyU3OWzTQ2iDNr9LKkfUh4vmuwLooBJL9+
|
||||||
|
rxbE4L1W6W19CuCZ4e523j+AXmc5ERdhr0S7C6ESdZfiylcA9+uvgoelq7ikOXy6
|
||||||
|
uVuzwDLhUV17/MUgcJGRgyBoURTeaE9GXzM+ObbYouqRrqLDTk0iwRH4dFtLJqYJ
|
||||||
|
xJt71jF0ZlbBRfmjkMLXVArGSISIc4RYgwt2agBJ5j+fgFrBpBe0bX8vzHiDamtF
|
||||||
|
BSKXgnYI/byqVgaxTYURQSDR10STpNOWTzw47M73oHVCi05SQ91/RjaTzv97jWWJ
|
||||||
|
20rtFMNjNhfkbIIuLgr79Kx3iSihXWOorSPeMvs77nyWXoMLaflI4a23IwBoac+w
|
||||||
|
MHuAborSwMNeTwQ8okm2aNURtZByZp1F8UQVcWDPjFZh54j+oYh6Tsm8srX+/uES
|
||||||
|
0Pyh4iSUpr6C1pBQ0dghAoIBAQDWzN+j+BLscg3ocxiQ0vPiiTit5f7+dyY5smiw
|
||||||
|
Ajbsw/LOJ6gQ1uON7oN8NqJ1Lo3O/DF1iNKCBmNV1+wvCsyga4Xk0TBUpFeDbvv9
|
||||||
|
Gxpolw5wFyFb+sXZg0qL2u7dyMnnkSBoVWpkZXO49Z3ok8PUGRj1yx23EGOHpd8L
|
||||||
|
RadUoczQaHJtEBAROtgRuVo2LToZg1wa3bdV3Nrnld+SJFV3L6c5xx2Vfm/R2yZb
|
||||||
|
OZeBhSwQQjRXo5lONNXT83/GcSdnd6aDzqU0raUFmVhTYLjmK+X/BlgbPRTXYntc
|
||||||
|
OuzaQj4bghIVafY3OmDn/ioI82sj/GgpHlHsn6ScLYq1F/qjAoIBAQC2P5I4EgKw
|
||||||
|
+gtdC63MddG0THMbtaEucy3Hgr27QgxrLCkPQv0KJrX3tqLqfvisdyo/1VROxbYC
|
||||||
|
/g+yL9pBIMODnDP0DcuuNRkiY9UHDAuFZ938AW0U/xpvAO3vLMQTD6WFot86gkJS
|
||||||
|
pIl2LzcFIc1FgCJtoNOVw8HuvDlDDEeM6mnUbr6eIUrOADEa+3aAeo1yoaJ9izci
|
||||||
|
NAtXao2Hia6P4r4BM76PkGZUnLL2BKA1U0oDKpuIsptKWdfOdJnYBz8slqvQm2uy
|
||||||
|
iZhakzD2tadarhI38ZHExyTrIuRwA5jR2Cs+BbnauTkRR+CLloUBHvi+63W6prjO
|
||||||
|
p8B2gtdapndhAoIBACLLXQ66iJY0g3w76KbNBSSVBdFliEDAHDkMZVjdgvgnZZVv
|
||||||
|
ZxITPRkoobPlRbulpuL4hyp6116omj61k1SrcyopQK8oE6QiWuq3d6owUb7PeU8+
|
||||||
|
7/BuVs49Lj4pYLgcZlhUceN0sp9Ar9YuMz4RcY9R4XEvTcjxpq26eL7isZBMBVld
|
||||||
|
EewIxhGEbquwUqSj/t1TIgBYGfKWq/8HkAekSxPbbEM3tdsZeBOOZFAyrBAW+mRH
|
||||||
|
1SK9JYA9nsWOlAwZGEDyaM7BEpHN7wVRKbWX3VurkL4W0P7Yjh+1nDX8dZGFWXor
|
||||||
|
P7KoT3Hyyu/JhBWfGKPjpxvCBZNG6OtDlUxwbfECggEAJe5FOHZHKR5hjxQHMC61
|
||||||
|
Xpkqu/GpgklmlceYRYkRnJysTwjaMWqtJMlWTwfuKbcDjBWSXnK31xeZnLRo8HUp
|
||||||
|
PBMenQTiB3f1qzqr87OGElXz1adWVLBjiAbhfo4KoQz4nj+vxjWmKB0mnvpksSS/
|
||||||
|
3F82yypV3y3HBzEVmebMXX/MVvJVqgOz1fwkPEFqAIOBPQJ3FzoKV4wNcDw1CKiX
|
||||||
|
NEs00Hs8hhS/t4yFkr6TuYWEOfR8Oo8x0t+wEsAh5NxdQaJ6UAiI+be5heBsqGxW
|
||||||
|
UIE6OXqFpDbucCHq+YVGISakmVwHuoYiYn5bNbI2LG2Nx+6pqhdZD2nKnN/Ogodz
|
||||||
|
AQKCAQEAoZ7CXth4+DkslbyCy//m2pK8reeqD0gWDdKxBnTuDmQ2AlSlRr59Y0vo
|
||||||
|
+7p2uDqgsrWhj30fcynIR2xZNCAzRcY/oBwo0F1iW7HKrv0ieroQuAk/VylrTz8i
|
||||||
|
AZLBibb6D6tu3tofHsb5wqUeR1piCJgUDKI8yr/9izM6BgbQXag7Y5zlwCElnl/T
|
||||||
|
lBdnQd51dJD3aTLRgWFKMo5eoFywCppMvQli4NLirHZnEQCgvhiRaMPrGUzjyfH1
|
||||||
|
xEL4skH3g7PiQdV4hGhS1I2I42zAVQ3lY5dLDwAuu4gYPT6f+7UJbebUcVMGzayH
|
||||||
|
f+bkTtlZSoPUK/jxzJ2OBfzlDigrnw==
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -0,0 +1 @@
|
||||||
|
69E2533F47DC36AD20D771330D94D4BF122624D3
|
|
@ -0,0 +1,26 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIEVTCCAj2gAwIBAgIUaeJTP0fcNq0g13EzDZTUvxImJNMwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwNTETMBEGA1UECgwKUmVkaXMgVGVzdDEeMBwGA1UEAwwVQ2VydGlmaWNhdGUg
|
||||||
|
QXV0aG9yaXR5MB4XDTI0MTIwNTA4NTI1MloXDTI1MTIwNTA4NTI1MlowMDETMBEG
|
||||||
|
A1UECgwKUmVkaXMgVGVzdDEZMBcGA1UEAwwQQ2xpZW50LVRlc3QtY2VydDCCASIw
|
||||||
|
DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMagmtya1IiZaOuYTLoXVqesa99
|
||||||
|
IkBKzVdELvrdo6ZA9RyYsqg1Us6i1WhxDaIrG3dlLm15ijDy71+Lq0E3c4csfpZv
|
||||||
|
5urlWXTpNiFn74ZI8U6XJiJIOe/XjoQczjIJWJNkIQdYsZy2uODxXjEnScJSSRTJ
|
||||||
|
mUj8KyzuWb0qpl+E7zhYNH0lEAhY++3X4yy7khiyyoE8bVosTmv+O2qbtWnlquma
|
||||||
|
AtNAoQHivF8khXgNd2Pa/yoTXONLI1DUti/hNtKY8Xlh02BgOoEO486YKu8L4iYI
|
||||||
|
4T/pGqfWwtklqc1ChyM8aCQfKbfxYR/o8jmzjQ/vyRj7l5JnNnqAr6uU1nsCAwEA
|
||||||
|
AaNiMGAwCwYDVR0PBAQDAgWgMBEGCWCGSAGG+EIBAQQEAwIHgDAdBgNVHQ4EFgQU
|
||||||
|
7EoS5YDwj9rPcXF/sFCw1aff04IwHwYDVR0jBBgwFoAUFA/cCt4dDsz19b8Hm55E
|
||||||
|
PgyPRbswDQYJKoZIhvcNAQELBQADggIBAG45iOPOIayzaK+PLKx8KuLEODGaHub8
|
||||||
|
og+nN5MZ6tbSka8rVRHmwjlwuy8TBO0ZgG25a5RPX2EkmG/FF2aLZW3RysDB8ABq
|
||||||
|
FJyjg0yGJ5kKwDJTz+ePt5/FUChpj5TmJ2eXqeT4N/PRi/Tm9luYD9fOWIFZBdj3
|
||||||
|
BxBqMc9bQg5vnFE5oGEsG4QPW9nYjGantAWmg/ztc/4ywagA8iKjg+yRtBSgEOHK
|
||||||
|
k0PsV3TIijvP8FlYguTDujFWpgGkib/FgxG69Wf74SwEGJokmnE4QkXWRI/xYCYd
|
||||||
|
x070ysYqy5fTk8xnN/RskNPBazXXlqK+NMObDirHqitsoOzCpCr37lm489LqEnF7
|
||||||
|
L7za1FrrXVDTQ8v4Qvxf2FMZp/VuL9MfkfETi9goaAG1cG3i6wK8WeebHKZtEGfM
|
||||||
|
/VewM2eZiN3I3eOKTi/3DEOA9dHbVUvYnmLt8duRHFagRCkn9tsXzjf2HjhWAst0
|
||||||
|
h/daTvkij+OB6+Q9NNz33XkS5VKLfilVdwjJye0i4H4mf/XTbz0f3qO1Na/rPkWw
|
||||||
|
/SZgHSXEmuw5OY6KAwaZWin9Li+v2Ukxn/wFFBk9OV43kfFis+LnKwD5VPO7lw+S
|
||||||
|
t61MlABqV2YSVzX1Agy8h+YUkeW/WVR6amBj+McNsh/LPlQY5Id6Po4IT/Jf3oa6
|
||||||
|
RiDAyjLWzwiG
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,28 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCjGoJrcmtSImWj
|
||||||
|
rmEy6F1anrGvfSJASs1XRC763aOmQPUcmLKoNVLOotVocQ2iKxt3ZS5teYow8u9f
|
||||||
|
i6tBN3OHLH6Wb+bq5Vl06TYhZ++GSPFOlyYiSDnv146EHM4yCViTZCEHWLGctrjg
|
||||||
|
8V4xJ0nCUkkUyZlI/Css7lm9KqZfhO84WDR9JRAIWPvt1+Msu5IYssqBPG1aLE5r
|
||||||
|
/jtqm7Vp5arpmgLTQKEB4rxfJIV4DXdj2v8qE1zjSyNQ1LYv4TbSmPF5YdNgYDqB
|
||||||
|
DuPOmCrvC+ImCOE/6Rqn1sLZJanNQocjPGgkHym38WEf6PI5s40P78kY+5eSZzZ6
|
||||||
|
gK+rlNZ7AgMBAAECggEANExNwVIg42cwG/nQJNipBmOYKeL/1omlqfOs9LeYv7hY
|
||||||
|
X+D+eD0Q3j0MHL8TVgpodjI1Xtj33JYo9wP715+GJbO4q1gaPPtpYbldp/yBqxc8
|
||||||
|
eKyyh4+NNEBz7ByoaRbiFfCnPonL+aoFQeti/nPQjMSBtm6l/ecNmQycLbG9QycD
|
||||||
|
JxjchufXbyGgfi6YhUM3+2R2Qg/Fa3kOrxWGEUIRq534wAow0hXfgHccRqqpbLA9
|
||||||
|
SdyantjwUpW4wy2YvR0hUC9qdqj7Hucz7dRNSHh90vmUUG3bvSskZxzwCraKOx1W
|
||||||
|
BYIjTSyIPr9eImApAwwIm8WyOFbEY/89Q7p6aXLj0QKBgQDinYj53E4gt+suXUnd
|
||||||
|
YyKzRhHUkiN7aBbTN5/PNV1W2Q/tOWjvl8rRGSB3xDjlJartyY8c78cfZlGHZsvX
|
||||||
|
+9NtZKmIKqH2bM6dREx6LurwmDySQ1e6mVURrtbadJcQ3abZwtwcokPp/AhyEXwK
|
||||||
|
Jz0AHsQyrehZt467+kUJYnA4XwKBgQC4QLVoMXCM2DNVDyP6lNnJhUPwwySlf5ac
|
||||||
|
wMe2gsU9udhX8OrSOU7Csw00bgE8lKL7gao+Cmb0OrPWIogy72VMtv7/MskZmLu0
|
||||||
|
z09yQ4g23IfVrAozspqLr6t+jofDh5m22BP5jYE6euKc1B346vSFMksdl96tlQVX
|
||||||
|
yzTTYrwHZQKBgHEFvQFRHS44THWNVX+zJ+Vdtxrb4BJ2cZvajDveE7VzAPyBu5Jz
|
||||||
|
lFYBQC47kVzIEp4R/uyhsiA4+cScQmJwWJygreUZzjmHPu002Se/KrHgW6VfLOwF
|
||||||
|
+WWeW84MhCOHSOYmx30IePLEHro1ejXeKBBdR+E210GXyPp78d6iV/HlAoGBAKlV
|
||||||
|
1yMeJOlcnbizxIY8nPfHQYyZXCm52+rOhf1nq+yxy3HvGXEBeDAaLK2d2AccN7nc
|
||||||
|
DmEcYEhfVv4bGH9vYvMhT7OssgOTShe/W62RATQic7hdd7bRk5WDaqJSTdXW3t+b
|
||||||
|
MKhuc3ESlQg7Lhyhmv57HWviMqXnSlTIjhEkMdi9AoGASBdRe3ephlr6BZoC2yd8
|
||||||
|
ot9gEcrqL8Hdt8cWLJtUj5ugpxcuzLeKiW5jfc+hpcqg3WKvre5/zTDuuylNXlFE
|
||||||
|
YSHms+BUCuf7bA6NU3Zr7vc3bkZcERNY1fywlul/790dpNGwDEAkq/O5Ic/+BdWe
|
||||||
|
x3QQ+tIyv7gFA+cpjcgpp78=
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -0,0 +1,3 @@
|
||||||
|
tls-cert-file "/redis/work/tls/redis.crt"
|
||||||
|
tls-key-file "/redis/work/tls/redis.key"
|
||||||
|
tls-ca-cert-file "/redis/work/tls/ca.crt"
|
|
@ -0,0 +1,23 @@
|
||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIID5TCCAc0CFGniUz9H3DatINdxMw2U1L8SJiTSMA0GCSqGSIb3DQEBCwUAMDUx
|
||||||
|
EzARBgNVBAoMClJlZGlzIFRlc3QxHjAcBgNVBAMMFUNlcnRpZmljYXRlIEF1dGhv
|
||||||
|
cml0eTAeFw0yNDEyMDUwODUyNTJaFw0yNTEyMDUwODUyNTJaMCkxEzARBgNVBAoM
|
||||||
|
ClJlZGlzIFRlc3QxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEB
|
||||||
|
BQADggEPADCCAQoCggEBAN0UupJfOjjYlDF5k3TfoUkuzwcVvrvMWealk1qkK1Zs
|
||||||
|
YVJfOKT9rweuTOsTYDUhZvLhIV+lVXl5Fn0XUq9ItHXRel8wdgTCGwoIGQdhVICA
|
||||||
|
SWXHWEIccTjR6q2FGK57fnL+meyMR7ry4pUky0dBrfnbWfSlPKboFcJvs6m1mojH
|
||||||
|
bh7iM/5Hgo7+/dWUCOtaAx0rDmzHnO967RInoNNHN7BXIZGCVZDNvmWKjuZJ7evi
|
||||||
|
tsJp90sMslcmwu+XGErNnxs4dnwLsstNYT3XthQQ1NBsKqIO43SqURIzJbtr41nQ
|
||||||
|
LrCIrUyl1eaLfJayq8Eqk96VQy57n6lA8sOFP9FoEc8CAwEAATANBgkqhkiG9w0B
|
||||||
|
AQsFAAOCAgEAHYU/qrd2anMqTx4FxW5Uh0MWke/Hq/kvKYUY6AnJZu6QjeG8NblY
|
||||||
|
CjgYXn/uWWJMD2s0v0/0VXUUQq5zKpUZFeGjbNFttJGI6872Brt7/M5eZL2Cse8l
|
||||||
|
JuHrkMC0dp+4UuocSFuZn7uT4w1MnX89xLZair4Vf+2sjncBq7CbPfntk23XIZJn
|
||||||
|
hlexhOBVmHEMYVT7ROqdhScA7PixbvBZ3hbgROtWwlWDcNaeaH2sW/xf4aSM2QmX
|
||||||
|
Cck7YSU3dKlGTL1yIFHXByGWh8T8kT6ZhW9keW3QiySTkmWtpnlGQf5x36D7HOFR
|
||||||
|
4l0HwOwHwEiIikExsrSZKSAG94M2zbQg5FEvEvVJeoezwn5unx9gAlgO28lh+Ef3
|
||||||
|
NHfL20096nJoxKXubc0dGv3bQ81E0fRfcir4wGi44r3nyoliKvBOOu6qsUEzuli2
|
||||||
|
DoDu1hLh1+Z8IsxLil63EQ9y3pn1TzMapkKkXhCUSBwYP54F3IEGxSbDIMgmHtlF
|
||||||
|
3tAcekLe8/9mM1D564/W1Uf0t1sBu6+vBM8f0jh3c2JU2Ak6cNtyu4anaFA9h5ZN
|
||||||
|
QeLz/AdQwvpR6kOuIJor54CiNLA5igLlrApArL6DPmMwHcjkiEFbdJqZs1gkSVjS
|
||||||
|
3IR45sGVdBXjNI4gAnn0lJMgMOQ3d2kFhM5BcRwEKa8NJmwuinSut84=
|
||||||
|
-----END CERTIFICATE-----
|
|
@ -0,0 +1,28 @@
|
||||||
|
-----BEGIN PRIVATE KEY-----
|
||||||
|
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDdFLqSXzo42JQx
|
||||||
|
eZN036FJLs8HFb67zFnmpZNapCtWbGFSXzik/a8HrkzrE2A1IWby4SFfpVV5eRZ9
|
||||||
|
F1KvSLR10XpfMHYEwhsKCBkHYVSAgEllx1hCHHE40eqthRiue35y/pnsjEe68uKV
|
||||||
|
JMtHQa3521n0pTym6BXCb7OptZqIx24e4jP+R4KO/v3VlAjrWgMdKw5sx5zveu0S
|
||||||
|
J6DTRzewVyGRglWQzb5lio7mSe3r4rbCafdLDLJXJsLvlxhKzZ8bOHZ8C7LLTWE9
|
||||||
|
17YUENTQbCqiDuN0qlESMyW7a+NZ0C6wiK1MpdXmi3yWsqvBKpPelUMue5+pQPLD
|
||||||
|
hT/RaBHPAgMBAAECggEAWYXNTvw0rVQ2Hhqm9UqhGutTdgD+LTnApb8ifi/ARMy6
|
||||||
|
VAqu+1CmkaupBf/gk2MlNvCm/P4MMJYx3xGUr9n3CUZ8EROklqSrIlLJH83v0+Ee
|
||||||
|
15HzUUIHLwUBzKX6qpzjRVmHptvfJ/q2ecJedkpIUsbaFFDc0JFmTkfBLtWU8BFg
|
||||||
|
pzjlNF8RMAAf2pM2GmfM/P5O+nnFLODBu9vJ1VNfbexFix1GiOyGfgRMSJl5sCGe
|
||||||
|
ssSBMj3mbXtnOwl649dlRh9RHscg9FqxS6pFqEX256nc/T5k6ecr5OCTwxG3cx50
|
||||||
|
ywqPXqUChsWopwj05/ArTMzA66cEwVfgSpzwJVA5wQKBgQD8qp8RVnbyjW8YXMNJ
|
||||||
|
TsSq39yUgGNR5zYiJv3Rl993oRbeOsqWCKZiPY+Gn9t8PlmntNCLVFuCch4P3Ci3
|
||||||
|
eE9u63B+U7r3jtn7G3mBGSRnHHEjuDReIy9vSdNMIWkxHnrHXpyPNvApfj5VC7NZ
|
||||||
|
hUL63omc9eSgjfkg1Lh/c8sIUQKBgQDf/216xi3tEM9uD20huIBcEjZrBYYAYY7L
|
||||||
|
h7FYrz+m444YtPnUlCTRpVbnMrdZkLfbF9UTiUU8XSx2R3UwevUZnk43zfGyOzM7
|
||||||
|
yE/g9BjyE5b3fNWUiaQwv7UPuN1+f7qADwA3ikFr2te5FVUjMFZ2jXuNSlv+iyez
|
||||||
|
WTpZID0QHwKBgDeCTJwEgPFcvTF+/7BVS8O2lsFRS4Cs6Smro0uur/uaOmnsRKGd
|
||||||
|
mOAwYh3TdObg09WSVdamW8xWwd/+IDvehKT7uKUoRAUrLxyJtrH0EhlNGFYem/Kq
|
||||||
|
jDtI3tD07iVKavLuCDs2eKDFCXCpt2dNbZ+r0FPZebcEOd1KnpXxnINhAoGBAI34
|
||||||
|
1SkV5xH0r6Rwfpj62dCBcqBOdepT6y+xJ4SwPsXGQNAEFLzZ0KRYCUasbG2GPiHN
|
||||||
|
by3cuVdTLtUg4XQC2sqL/cN88o4m24gupAJOdGkqZWsjYjOtMbX8LAR1BV4iEtEL
|
||||||
|
sPWC2YhEwqn6jWWqQ4MMlZyt3rTs+hLAoSzQNCO9AoGBAMNEoeaSq/tJ+V5kVAFX
|
||||||
|
ylsXLNJnDelTnfkOxgOxKAWeJfV7osUQfIZqC5+9SaJp/LdbKQp/vdup/BrHMRZ6
|
||||||
|
fzhdB5eTt9Y+c6JK7ruautuMcvKyeO/J56kcQZb1pjuDC1sqGex1Faw7AK4+ZGaW
|
||||||
|
k9VH43cC0xd08MiMLxLS3bWw
|
||||||
|
-----END PRIVATE KEY-----
|
|
@ -39,7 +39,7 @@ var _ = Describe("RedisGears commands", Label("gears"), func() {
|
||||||
var client *redis.Client
|
var client *redis.Client
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
client = redis.NewClient(&redis.Options{Addr: ":6379"})
|
client = redis.NewClient(&redis.Options{Addr: rediStackAddr})
|
||||||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
||||||
client.TFunctionDelete(ctx, "lib1")
|
client.TFunctionDelete(ctx, "lib1")
|
||||||
})
|
})
|
||||||
|
|
|
@ -21,7 +21,7 @@ var _ = Describe("JSON Commands", Label("json"), func() {
|
||||||
|
|
||||||
setupRedisClient := func(protocolVersion int) *redis.Client {
|
setupRedisClient := func(protocolVersion int) *redis.Client {
|
||||||
return redis.NewClient(&redis.Options{
|
return redis.NewClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: rediStackAddr,
|
||||||
DB: 0,
|
DB: 0,
|
||||||
Protocol: protocolVersion,
|
Protocol: protocolVersion,
|
||||||
UnstableResp3: true,
|
UnstableResp3: true,
|
||||||
|
@ -682,7 +682,7 @@ var _ = Describe("Go-Redis Advanced JSON and RediSearch Tests", func() {
|
||||||
|
|
||||||
setupRedisClient := func(protocolVersion int) *redis.Client {
|
setupRedisClient := func(protocolVersion int) *redis.Client {
|
||||||
return redis.NewClient(&redis.Options{
|
return redis.NewClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: rediStackAddr,
|
||||||
DB: 0,
|
DB: 0,
|
||||||
Protocol: protocolVersion, // Setting RESP2 or RESP3 protocol
|
Protocol: protocolVersion, // Setting RESP2 or RESP3 protocol
|
||||||
UnstableResp3: true, // Enable RESP3 features
|
UnstableResp3: true, // Enable RESP3 features
|
||||||
|
|
121
main_test.go
121
main_test.go
|
@ -6,7 +6,6 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
@ -22,13 +21,13 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
ringShard1Port = "6390"
|
ringShard1Port = "16379"
|
||||||
ringShard2Port = "6391"
|
ringShard2Port = "16380"
|
||||||
ringShard3Port = "6392"
|
ringShard3Port = "16381"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
sentinelName = "mymaster"
|
sentinelName = "redis-standalone"
|
||||||
sentinelMasterPort = "9123"
|
sentinelMasterPort = "9123"
|
||||||
sentinelSlave1Port = "9124"
|
sentinelSlave1Port = "9124"
|
||||||
sentinelSlave2Port = "9125"
|
sentinelSlave2Port = "9125"
|
||||||
|
@ -43,7 +42,7 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
rediStackPort = "6379"
|
rediStackPort = "6349"
|
||||||
rediStackAddr = ":" + rediStackPort
|
rediStackAddr = ":" + rediStackPort
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -80,59 +79,59 @@ var _ = BeforeSuite(func() {
|
||||||
redisPort = addr
|
redisPort = addr
|
||||||
redisAddr = ":" + redisPort
|
redisAddr = ":" + redisPort
|
||||||
}
|
}
|
||||||
var err error
|
// var err error
|
||||||
RECluster, _ = strconv.ParseBool(os.Getenv("RE_CLUSTER"))
|
// RECluster, _ = strconv.ParseBool(os.Getenv("RE_CLUSTER"))
|
||||||
|
|
||||||
if !RECluster {
|
// if !RECluster {
|
||||||
|
|
||||||
redisMain, err = startRedis(redisPort)
|
// redisMain, err = startRedis(redisPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
ringShard1, err = startRedis(ringShard1Port)
|
// ringShard1, err = startRedis(ringShard1Port)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
ringShard2, err = startRedis(ringShard2Port)
|
// ringShard2, err = startRedis(ringShard2Port)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
ringShard3, err = startRedis(ringShard3Port)
|
// ringShard3, err = startRedis(ringShard3Port)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinelMaster, err = startRedis(sentinelMasterPort)
|
// sentinelMaster, err = startRedis(sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinel1, err = startSentinel(sentinelPort1, sentinelName, sentinelMasterPort)
|
// err = startSentinel(sentinelPort1, sentinelName, sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinel2, err = startSentinel(sentinelPort2, sentinelName, sentinelMasterPort)
|
// err = startSentinel(sentinelPort2, sentinelName, sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinel3, err = startSentinel(sentinelPort3, sentinelName, sentinelMasterPort)
|
// err = startSentinel(sentinelPort3, sentinelName, sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinelSlave1, err = startRedis(
|
// sentinelSlave1, err = startRedis(
|
||||||
sentinelSlave1Port, "--slaveof", "127.0.0.1", sentinelMasterPort)
|
// sentinelSlave1Port, "--slaveof", "127.0.0.1", sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
sentinelSlave2, err = startRedis(
|
// sentinelSlave2, err = startRedis(
|
||||||
sentinelSlave2Port, "--slaveof", "127.0.0.1", sentinelMasterPort)
|
// sentinelSlave2Port, "--slaveof", "127.0.0.1", sentinelMasterPort)
|
||||||
Expect(err).NotTo(HaveOccurred())
|
// Expect(err).NotTo(HaveOccurred())
|
||||||
|
|
||||||
Expect(startCluster(ctx, cluster)).NotTo(HaveOccurred())
|
// Expect(startCluster(ctx, cluster)).NotTo(HaveOccurred())
|
||||||
} else {
|
// } else {
|
||||||
redisPort = rediStackPort
|
redisPort = rediStackPort
|
||||||
redisAddr = rediStackAddr
|
redisAddr = rediStackAddr
|
||||||
}
|
// }
|
||||||
})
|
})
|
||||||
|
|
||||||
var _ = AfterSuite(func() {
|
var _ = AfterSuite(func() {
|
||||||
if !RECluster {
|
// if !RECluster {
|
||||||
Expect(cluster.Close()).NotTo(HaveOccurred())
|
// Expect(cluster.Close()).NotTo(HaveOccurred())
|
||||||
|
|
||||||
for _, p := range processes {
|
// // for _, p := range processes {
|
||||||
Expect(p.Close()).NotTo(HaveOccurred())
|
// // Expect(p.Close()).NotTo(HaveOccurred())
|
||||||
}
|
// // }
|
||||||
}
|
// }
|
||||||
processes = nil
|
// processes = nil
|
||||||
})
|
})
|
||||||
|
|
||||||
func TestGinkgoSuite(t *testing.T) {
|
func TestGinkgoSuite(t *testing.T) {
|
||||||
|
@ -367,26 +366,26 @@ func startRedis(port string, args ...string) (*redisProcess, error) {
|
||||||
return p, nil
|
return p, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func startSentinel(port, masterName, masterPort string) (*redisProcess, error) {
|
func startSentinel(port, masterName, masterPort string) error {
|
||||||
dir, err := redisDir(port)
|
// dir, err := redisDir(port)
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
return nil, err
|
// return nil, err
|
||||||
}
|
// }
|
||||||
|
|
||||||
sentinelConf := filepath.Join(dir, "sentinel.conf")
|
// sentinelConf := filepath.Join(dir, "sentinel.conf")
|
||||||
if err := os.WriteFile(sentinelConf, nil, 0o644); err != nil {
|
// if err := os.WriteFile(sentinelConf, nil, 0o644); err != nil {
|
||||||
return nil, err
|
// return nil, err
|
||||||
}
|
// }
|
||||||
|
|
||||||
process, err := execCmd(redisServerBin, sentinelConf, "--sentinel", "--port", port, "--dir", dir)
|
// process, err := execCmd(redisServerBin, sentinelConf, "--sentinel", "--port", port, "--dir", dir)
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
return nil, err
|
// return nil, err
|
||||||
}
|
// }
|
||||||
|
|
||||||
client, err := connectTo(port)
|
client, err := connectTo(port)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
process.Kill()
|
// process.Kill()
|
||||||
return nil, err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// set down-after-milliseconds=2000
|
// set down-after-milliseconds=2000
|
||||||
|
@ -399,14 +398,14 @@ func startSentinel(port, masterName, masterPort string) (*redisProcess, error) {
|
||||||
} {
|
} {
|
||||||
client.Process(ctx, cmd)
|
client.Process(ctx, cmd)
|
||||||
if err := cmd.Err(); err != nil {
|
if err := cmd.Err(); err != nil {
|
||||||
process.Kill()
|
// process.Kill()
|
||||||
return nil, fmt.Errorf("%s failed: %w", cmd, err)
|
return fmt.Errorf("%s failed: %w", cmd, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p := &redisProcess{process, client}
|
// p := &redisProcess{process, client}
|
||||||
registerProcess(port, p)
|
// registerProcess(port, p)
|
||||||
return p, nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
|
@ -16,7 +16,7 @@ var _ = Describe("Probabilistic commands", Label("probabilistic"), func() {
|
||||||
|
|
||||||
setupRedisClient := func(protocolVersion int) *redis.Client {
|
setupRedisClient := func(protocolVersion int) *redis.Client {
|
||||||
return redis.NewClient(&redis.Options{
|
return redis.NewClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: rediStackAddr,
|
||||||
DB: 0,
|
DB: 0,
|
||||||
Protocol: protocolVersion,
|
Protocol: protocolVersion,
|
||||||
})
|
})
|
||||||
|
|
|
@ -29,7 +29,7 @@ var _ = Describe("RediSearch commands Resp 2", Label("search"), func() {
|
||||||
var client *redis.Client
|
var client *redis.Client
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
client = redis.NewClient(&redis.Options{Addr: ":6379", Protocol: 2})
|
client = redis.NewClient(&redis.Options{Addr: rediStackAddr, Protocol: 2})
|
||||||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -1424,8 +1424,8 @@ var _ = Describe("RediSearch commands Resp 3", Label("search"), func() {
|
||||||
var client2 *redis.Client
|
var client2 *redis.Client
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
client = redis.NewClient(&redis.Options{Addr: ":6379", Protocol: 3, UnstableResp3: true})
|
client = redis.NewClient(&redis.Options{Addr: rediStackAddr, Protocol: 3, UnstableResp3: true})
|
||||||
client2 = redis.NewClient(&redis.Options{Addr: ":6379", Protocol: 3})
|
client2 = redis.NewClient(&redis.Options{Addr: rediStackAddr, Protocol: 3})
|
||||||
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
Expect(client.FlushDB(ctx).Err()).NotTo(HaveOccurred())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ var _ = Describe("RedisTimeseries commands", Label("timeseries"), func() {
|
||||||
|
|
||||||
setupRedisClient := func(protocolVersion int) *redis.Client {
|
setupRedisClient := func(protocolVersion int) *redis.Client {
|
||||||
return redis.NewClient(&redis.Options{
|
return redis.NewClient(&redis.Options{
|
||||||
Addr: "localhost:6379",
|
Addr: rediStackAddr,
|
||||||
DB: 0,
|
DB: 0,
|
||||||
Protocol: protocolVersion,
|
Protocol: protocolVersion,
|
||||||
UnstableResp3: true,
|
UnstableResp3: true,
|
||||||
|
|
Loading…
Reference in New Issue