InSyncReplicas returns the set of all in-sync replica IDs for the given partition. In-sync replicas are replicas which are fully caught up with the partition leader.
(topic string, partitionID int32)
| 67 | // partition. In-sync replicas are replicas which are fully caught up with |
| 68 | // the partition leader. |
| 69 | InSyncReplicas(topic string, partitionID int32) ([]int32, error) |
| 70 | |
| 71 | // OfflineReplicas returns the set of all offline replica IDs for the given |
| 72 | // partition. Offline replicas are replicas which are offline |
no outgoing calls