SQLStreams

the messaging platform that is just Postgres

You last visited on 9999-99-99 Show what's new since then
[SOLVED]

consumer group not found [SQL0014]

Edit this page
code SQL0014 · recovery permanent — an unchanged retry cannot succeed; retry machinery stops immediately
the log line · Report this thread
SQL0014 Permanent error

As it arrives in your log or error chain — example values stand where yours will:

consumer group not found: schema "sqlstreams", stream "orders.created", group_id 7 -- register a consumer with this group name to create it [SQL0014]
ACCEPTED ANSWER Posted: 2026-09-09
brandon Site Admin brandon profile Posts: 677

register a consumer with this group name to create it

brandon Site Admin brandon profile Posts: 677

Helpful info.

  1. every group registered on this stream

    SELECT
    	consumer_group_config.id,
    	consumer_group_config.name,
    	consumer_group_config.created_at
    FROM {schema}.consumer_group_config
    JOIN {schema}.stream_config ON stream_config.id = consumer_group_config.stream_id
    WHERE stream_config.name = '{stream}'
    ORDER BY consumer_group_config.name;
  2. the group row behind an id, if that is what the line carried

    SELECT
    	id,
    	stream_id,
    	name,
    	created_at
    FROM {schema}.consumer_group_config
    WHERE id = {group_id};
Nothing pasted yet — the queries above show their blanks.

Looking for a different code? Search every thread.