Skip to main content

connector_offsets

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

Overview

Nameconnector_offsets
TypeResource
Idconfluent.connect.connector_offsets

Fields

NameDatatypeDescription
idstringThe ID of the connector.
namestringThe name of the connector.
metadataobjectMetadata of the connector offset.
offsetsarrayArray of offsets which are categorised into partitions.

Methods

NameAccessible byRequired ParamsDescription
get_connectv1connector_offsetsSELECTconnector_name, environment_id, kafka_cluster_idGeneral Availability Get the current offsets for the connector. The offsets provide information on the point in the source system, from which the connector is pulling in data. The offsets of a connector are continuously observed periodically and are queryable via this API.

SELECT examples

General Availability Get the current offsets for the connector. The offsets provide information on the point in the source system, from which the connector is pulling in data. The offsets of a connector are continuously observed periodically and are queryable via this API.

SELECT
id,
name,
metadata,
offsets
FROM confluent.connect.connector_offsets
WHERE connector_name = '{{ connector_name }}'
AND environment_id = '{{ environment_id }}'
AND kafka_cluster_id = '{{ kafka_cluster_id }}';