Skip to main content

member_target_assignments

Creates, updates, deletes, gets or lists a member_target_assignments resource.

Overview

Namemember_target_assignments
TypeResource
Idconfluent.streams_group.member_target_assignments

Fields

The following fields are returned by SELECT queries:

The streams group member assignments.

NameDatatypeDescription
cluster_idstringThe unique identifier of the Kafka cluster.
group_idstringThe unique identifier of the Streams group.
member_idstringThe unique identifier of the Streams group member.
active_tasksobject
kindstring
metadataobject
standby_tasksobject
warmup_tasksobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_kafka_streams_group_member_target_assignmentsselectcluster_id, group_id, member_idReturn the target assignments of the member specified by the member_id.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
cluster_idstringThe Kafka cluster ID. (example: cluster-1)
group_idstringThe group ID. (example: group-1)
member_idstringThe streams member ID. (example: member-1)

SELECT examples

Return the target assignments of the member specified by the member_id.

SELECT
cluster_id,
group_id,
member_id,
active_tasks,
kind,
metadata,
standby_tasks,
warmup_tasks
FROM confluent.streams_group.member_target_assignments
WHERE cluster_id = '{{ cluster_id }}' -- required
AND group_id = '{{ group_id }}' -- required
AND member_id = '{{ member_id }}' -- required
;