Skip to main content
POST
/
sources
/
stop_blocking_snapshot
Stop Blocking Snapshot
curl --request POST \
  --url https://api.streamkap.com/sources/stop_blocking_snapshot \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source_id": "<string>",
  "topic_names": [
    "<string>"
  ]
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Execute Blocking Snapshot Body.

Blocking snapshots pause streaming during the snapshot operation and use Debezium's initial snapshot process. They are useful for:

  • Snapshotting keyless tables (which incremental snapshots cannot handle)
  • Snapshotting large tables faster than incremental snapshots
  • Adding new tables while the connector is running

Note: additional_conditions filters are not supported for blocking snapshots.

source_id
string
required
topic_names
string[] | null

Response

Successful Response