SQLStreams

the messaging platform that is just Postgres

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

commit confirmation was lost [SQL0019]

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

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

commit confirmation was lost: schema "sqlstreams", stream_id 1, group_id 7 [SQL0019]
brandon Site Admin brandon profile Posts: 677

Helpful info.

  1. whether the outcomes landed -- rows updated at the commit

    SELECT
    	message_id,
    	status,
    	attempts,
    	updated_at
    FROM {schema}.exception_queue_{stream_id}
    WHERE consumer_group_id = {group_id}
    ORDER BY updated_at DESC
    LIMIT 20;
  2. the range lease whose expiry settles it either way

    SELECT
    	token,
    	low,
    	high,
    	expires_at,
    	reclaims
    FROM {schema}.claim_lease_{stream_id}
    WHERE consumer_group_id = {group_id};
Nothing pasted yet — the queries above show their blanks.

Looking for a different code? Search every thread.