# Empty consumer group with no id

**URL:** https://forum.confluent.io/t/empty-consumer-group-with-no-id/5195
**Category:** Clients
**Created:** [3 June 2022 01:43 UTC](https://forum.confluent.io/t/empty-consumer-group-with-no-id/5195 "2022-06-03T01:43:32Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![lucasprograms](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.confluent.io/lucasprograms/32/2455_2.png) [@lucasprograms](https://forum.confluent.io/u/lucasprograms)
#### Post date: [3 June 2022 01:43 UTC](https://forum.confluent.io/t/empty-consumer-group-with-no-id/5195/1 "2022-06-03T01:43:32Z")

</div>

In a kafka cluster running on confluent cloud I have a number of consumers. When I make a GET request to `{confluentUrl}/kafka/v3/clusters/{cluster_id}/consumer-groups`, one of the consumer groups has the following properties:

```auto
"consumer_group_id": "",
"is_simple": true,
"partition_assignor": "",
"state": "EMPTY",

```

Everything in the cluster appears to be functioning fine, but I am concerned about this consumer group. It is subscribed to a topic, and is ~100000 messages behind.

How does something like this happen? Is it possible to delete this consumer group?

---

<div class="post-metadata">

### Author: ![riferrei](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.confluent.io/riferrei/32/1848_2.png) [@riferrei](https://forum.confluent.io/u/riferrei)
#### Post date: [3 June 2022 15:41 UTC](https://forum.confluent.io/t/empty-consumer-group-with-no-id/5195/2 "2022-06-03T15:41:58Z")

</div>

This seems to be a consumer group created once but whose threads never finished joining. You can easily delete this consumer group using the `kafka-consumer-groups.sh` utility. But first, check if there are no client threads for it:

```auto
kafka-consumer-groups.sh \
--bootstrap-server <KAFKA_ENDPOINT> \
--command-config consumer.properties \
--group <GROUP_NAME> \
--describe \
--members

```

If there are none (likely) then you can delete the consumer group:

```auto
kafka-consumer-groups.sh \
--bootstrap-server <KAFKA_ENDPOINT> \
--command-config consumer.properties \
--group <GROUP_NAME> \
--delete \

```

— @riferrei
