Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • org/apache/kafka/connect/mirror/MirrorMetrics - new metrics templates for max, min, avg and value replication-offset-lag

    Code Block
    languagejava
    titleMirrorMetrics.java
     replicationOffsetLag = new MetricNameTemplate(
    
     "replication-offset-lag", SOURCE_CONNECTOR_GROUP,
    
     "Count of records to be replicated from source to target cluster.", partitionTags);
    
     replicationOffsetLagMax = new MetricNameTemplate(
    
     "replication-offset-lag-max", SOURCE_CONNECTOR_GROUP,
    
     "Max count of records to be replicated from source to target cluster.", partitionTags);
    
     replicationOffsetLagMin = new MetricNameTemplate(
    
     "replication-offset-lag-min", SOURCE_CONNECTOR_GROUP,
    
     "Min count of records to be replicated from source to target cluster.", partitionTags);
    
     replicationOffsetLagAvg = new MetricNameTemplate(
    
     "replication-offset-lag-avg", SOURCE_CONNECTOR_GROUP,
    
     "Average count of records to be replicated from source to target cluster.", partitionTags)


  • (Optional) - MirrorConnectorConfig org/apache/kafka/connect/mirror/MirrorSourceTaskConfig - a configuration to control the poll interval for the Consumer.endOffsets() call at LEO acquisition mentioned below. 
    Proposed name: `replication.lag.metric.refresh.interval`

Proposed Changes

This proposal aims to enhance Kafka's monitoring capabilities by introducing a new metric to track the replication offset lag for a given topic-partition. The metric will be calculated by taking the difference between the LEO of a partition, which will be periodically updated by calling Consumer.endOffsets() , and the LRO of a partition, which will be stored in an in-memory "cache" and updated during the task's producer callback.

...