Skip to main content

GroupMemberDescription

Type Alias GroupMemberDescription 

Source
pub type GroupMemberDescription = ConsumerGroupMemberDescription;
Expand description

Backwards-compatible alias for ConsumerGroupMemberDescription.

Aliased Type§

pub struct GroupMemberDescription {
    pub member_id: String,
    pub group_instance_id: Option<String>,
    pub client_id: String,
    pub client_host: String,
    pub member_metadata_bytes: usize,
    pub member_assignment_bytes: usize,
}

Fields§

§member_id: String

Kafka-assigned member ID.

§group_instance_id: Option<String>

Static membership instance ID, when configured.

§client_id: String

Client ID reported by the member.

§client_host: String

Host reported by the member.

§member_metadata_bytes: usize

Count derived from member metadata. For consumer/share groups this is the number of subscribed topic names; for classic groups it is decoded from the classic subscription payload when possible.

§member_assignment_bytes: usize

Count derived from member assignment metadata. For consumer/share groups this is the number of assigned partitions; for classic groups it is decoded from the classic assignment payload when possible.