Class AbstractSourceTask
java.lang.Object
org.apache.kafka.connect.source.SourceTask
io.aiven.kafka.connect.common.source.AbstractSourceTask
- All Implemented Interfaces:
org.apache.kafka.connect.connector.Task
public abstract class AbstractSourceTask
extends org.apache.kafka.connect.source.SourceTask
This class handles extracting records from an iterator and returning them to Kafka. It uses an exponential backoff
with jitter to reduce the number of calls to the backend when there is no data. This solution:
- When polled this implementation moves available records from the SourceRecord iterator to the return array.
- if there are no records
poll()
will return null.- The poll will delay no more than approx 5 seconds.
- Upto
maxPollRecords
will be sent in a single poll request - When the connector is stopped any collected records are returned to kafka before stopping.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
A functional interface that will abort the timer.static class
Performs a delay based on the number of successiveAbstractSourceTask.Backoff.delay()
orAbstractSourceTask.Backoff.cleanDelay()
calls without aAbstractSourceTask.Backoff.reset()
.static interface
An interface to define the Backoff configuration.static interface
A functional interface to return long values.protected static class
Calculates elapsed time and flags when expired. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Duration
The maximum time to spend polling.static final List<org.apache.kafka.connect.source.SourceRecord>
Fields inherited from class org.apache.kafka.connect.source.SourceTask
context
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
Close any resources the source has open.protected abstract SourceCommonConfig
Called bystart(java.util.Map<java.lang.String, java.lang.String>)
to allows the concrete implementation to configure itself based on properties.protected abstract Iterator<org.apache.kafka.connect.source.SourceRecord>
Gets the iterator of SourceRecords.final boolean
Returns the running state of the task.final List<org.apache.kafka.connect.source.SourceRecord>
poll()
final void
protected final boolean
Returnstrue
if the connector is not stopped and the timer has not expired.final void
stop()
Methods inherited from class org.apache.kafka.connect.source.SourceTask
commit, commitRecord, initialize
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.kafka.connect.connector.Task
version
-
Field Details
-
NULL_RESULT
-
MAX_POLL_TIME
The maximum time to spend polling. This is set to 5 seconds as that is the time that is allotted to a system for shutdown.
-
-
Constructor Details
-
AbstractSourceTask
protected AbstractSourceTask(org.slf4j.Logger logger) Constructor.- Parameters:
logger
- the logger to use.
-
-
Method Details
-
getIterator
protected abstract Iterator<org.apache.kafka.connect.source.SourceRecord> getIterator(AbstractSourceTask.BackoffConfig config) Gets the iterator of SourceRecords. The iterator that SourceRecords are extracted from for a poll event. When this iterator runs out of records it should attempt to reset and read more records from the backend on the nexthasNext()
call. In this way it should detect when new data has been added to the backend and continue processing.This method should handle any backend exception that can be retried. Any runtime exceptions that are thrown when this iterator executes may cause the task to abort.
- Parameters:
config
- the configuration for the Backoff.- Returns:
- The iterator of SourceRecords.
-
configure
Called bystart(java.util.Map<java.lang.String, java.lang.String>)
to allows the concrete implementation to configure itself based on properties.- Parameters:
props
- the properties to use for configuration.
-
start
- Specified by:
start
in interfaceorg.apache.kafka.connect.connector.Task
- Specified by:
start
in classorg.apache.kafka.connect.source.SourceTask
-
stillPolling
protected final boolean stillPolling()Returnstrue
if the connector is not stopped and the timer has not expired.- Returns:
true
if the connector is not stopped and the timer has not expired.
-
poll
- Specified by:
poll
in classorg.apache.kafka.connect.source.SourceTask
-
stop
public final void stop()- Specified by:
stop
in interfaceorg.apache.kafka.connect.connector.Task
- Specified by:
stop
in classorg.apache.kafka.connect.source.SourceTask
-
isRunning
public final boolean isRunning()Returns the running state of the task.- Returns:
true
if the connector is running,false
otherwise.
-
closeResources
protected abstract void closeResources()Close any resources the source has open. Called by the IteratorRunnable when it is stopping.
-