You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`state` represents the state of the replica client and can be one of the following strings.
637
+
638
+
*`wait_bgsave`: The replica is waiting for the primary to generate the RDB file.
639
+
*`send_bulk`: Primary is sending the RDB file to replica.
640
+
*`online`: RDB file transmitted, sending just updates.
641
+
*`rdb_transmitted`: RDB file transmitted, this state is used for the rdb-channel during dual-channel replication when the RDB transfer is complete but the replica has not yet established its main connection. Added in Valkey 9.1.
642
+
*`bg_transfer`: Main channel of a replica during dual-channel replication. Changes to `online` once sync is complete. Added in Valkey 8.0.
643
+
644
+
`type` added in Valkey 8.0, represents the type of the replica client and can be one of the following strings.
645
+
646
+
*`replica`: Normal replica client.
647
+
*`main-channel`: Main channel of a replica which uses dual-channel replication. Once dual channel replication is complete, the type will become `replica`.
648
+
*`rdb-channel`: RDB channel of a replica which uses dual-channel replication. Once dual channel replication is complete, the replica client will disconnect.
631
649
632
650
Here is the meaning of all fields in the **cpu** section:
0 commit comments