Class KafkaMessageSource<K,V>
java.lang.Object
org.springframework.integration.util.AbstractExpressionEvaluator
org.springframework.integration.endpoint.AbstractMessageSource<java.lang.Object>
org.springframework.integration.kafka.inbound.KafkaMessageSource<K,V>
- Type Parameters:
K- the key type.V- the value type.
- All Implemented Interfaces:
org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanFactoryAware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.Lifecycle,org.springframework.integration.core.MessageSource<java.lang.Object>,org.springframework.integration.core.Pausable,org.springframework.integration.IntegrationPattern,org.springframework.integration.support.context.NamedComponent,org.springframework.integration.support.management.IntegrationInboundManagement,org.springframework.integration.support.management.IntegrationManagement,org.springframework.integration.support.management.ManageableLifecycle
public class KafkaMessageSource<K,V>
extends org.springframework.integration.endpoint.AbstractMessageSource<java.lang.Object>
implements org.springframework.integration.core.Pausable
Polled message source for Apache Kafka.
Only one thread can poll for data (or acknowledge a message) at a time.
NOTE: If the application acknowledges messages out of order, the acks will be deferred until all messages prior to the offset are ack'd. If multiple records are retrieved and an earlier offset is requeued, records from the subsequent offsets will be redelivered - even if they were processed successfully. Applications should therefore implement idempotency.
Starting with version 3.1.2, this source implements Pausable which
allows you to pause and resume the Consumer. While the consumer is
paused, you must continue to call AbstractMessageSource.receive() within
max.poll.interval.ms, to prevent a rebalance.
- Since:
- 5.4
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classKafkaMessageSource.KafkaAckCallback<K,V>AcknowledgmentCallback for Kafka.static classKafkaMessageSource.KafkaAckCallbackFactory<K,V>AcknowledgmentCallbackFactory for KafkaAckInfo.static interfaceKafkaMessageSource.KafkaAckInfo<K,V>Information for building an KafkaAckCallback.classKafkaMessageSource.KafkaAckInfoImplInformation for building an KafkaAckCallback. -
Field Summary
Fields Modifier and Type Field Description booleannewAssignmentstatic java.lang.StringREMAINING_RECORDSThe number of records remaining from the previous poll. -
Constructor Summary
Constructors Constructor Description KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties)Construct an instance with the supplied parameters.KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, boolean allowMultiFetch)Construct an instance with the supplied parameters.KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, KafkaMessageSource.KafkaAckCallbackFactory<K,V> ackCallbackFactory)Construct an instance with the supplied parameters.KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, KafkaMessageSource.KafkaAckCallbackFactory<K,V> ackCallbackFactory, boolean allowMultiFetch)Construct an instance with the supplied parameters. -
Method Summary
Modifier and Type Method Description protected voidcreateConsumer()voiddestroy()protected java.lang.ObjectdoReceive()java.util.Collection<org.apache.kafka.common.TopicPartition>getAssignedPartitions()Return the currently assigned partitions.protected java.lang.StringgetClientId()protected java.time.DurationgetCommitTimeout()java.lang.StringgetComponentType()org.springframework.kafka.listener.ConsumerPropertiesgetConsumerProperties()Get a reference to the configured consumer properties; allows further customization of the properties before the source is started.protected java.lang.StringgetGroupId()protected org.springframework.kafka.support.converter.RecordMessageConvertergetMessageConverter()protected java.lang.Class<?>getPayloadType()protected longgetPollTimeout()protected org.apache.kafka.clients.consumer.ConsumerRebalanceListenergetRebalanceListener()booleanisPaused()protected booleanisRawMessageHeader()booleanisRunning()protected voidonInit()voidpause()voidresume()voidsetCloseTimeout(java.time.Duration closeTimeout)Set the close timeout - default 30 seconds.voidsetMessageConverter(org.springframework.kafka.support.converter.RecordMessageConverter messageConverter)Set the message converter to replace the defaultMessagingMessageConverter.voidsetPayloadType(java.lang.Class<?> payloadType)Set the payload type.voidsetRawMessageHeader(boolean rawMessageHeader)Set to true to include the rawConsumerRecordas headers with keysKafkaHeaders.RAW_DATAandIntegrationMessageHeaderAccessor.SOURCE_DATA.voidstart()voidstop()Methods inherited from class org.springframework.integration.endpoint.AbstractMessageSource
buildMessage, getBeanName, getComponentName, getManagedName, getManagedType, getOverrides, isLoggingEnabled, receive, registerMetricsCaptor, setBeanName, setHeaderExpressions, setLoggingEnabled, setManagedName, setManagedTypeMethods inherited from class org.springframework.integration.util.AbstractExpressionEvaluator
afterPropertiesSet, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, evaluateExpression, getBeanFactory, getEvaluationContext, getEvaluationContext, getMessageBuilderFactory, setBeanFactory, setConversionServiceMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
REMAINING_RECORDS
public static final java.lang.String REMAINING_RECORDSThe number of records remaining from the previous poll.- Since:
- 3.2
- See Also:
- Constant Field Values
-
newAssignment
public volatile boolean newAssignment
-
-
Constructor Details
-
KafkaMessageSource
public KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties)Construct an instance with the supplied parameters. Fetching multiple records per poll will be disabled.- Parameters:
consumerFactory- the consumer factory.consumerProperties- the consumer properties.- See Also:
KafkaMessageSource(ConsumerFactory, ConsumerProperties, KafkaAckCallbackFactory, boolean)
-
KafkaMessageSource
public KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, boolean allowMultiFetch)Construct an instance with the supplied parameters. Set 'allowMultiFetch' to true to allow up tomax.poll.recordsto be fetched on each poll. When false (default)max.poll.recordsis coerced to 1 if the consumer factory is aDefaultKafkaConsumerFactoryor otherwise rejected with anIllegalArgumentException. IMPORTANT: When true, you must callAbstractMessageSource.receive()at a sufficient rate to consume the number of records received withinmax.poll.interval.ms. When false, you must callAbstractMessageSource.receive()withinmax.poll.interval.ms.pause()will not take effect until the records from the previous poll are consumed.- Parameters:
consumerFactory- the consumer factory.consumerProperties- the consumer properties.allowMultiFetch- true to allowmax.poll.records > 1.
-
KafkaMessageSource
public KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, KafkaMessageSource.KafkaAckCallbackFactory<K,V> ackCallbackFactory)Construct an instance with the supplied parameters. Fetching multiple records per poll will be disabled.- Parameters:
consumerFactory- the consumer factory.consumerProperties- the consumer properties.ackCallbackFactory- the ack callback factory.- See Also:
KafkaMessageSource(ConsumerFactory, ConsumerProperties, KafkaAckCallbackFactory, boolean)
-
KafkaMessageSource
public KafkaMessageSource(org.springframework.kafka.core.ConsumerFactory<K,V> consumerFactory, org.springframework.kafka.listener.ConsumerProperties consumerProperties, KafkaMessageSource.KafkaAckCallbackFactory<K,V> ackCallbackFactory, boolean allowMultiFetch)Construct an instance with the supplied parameters. Set 'allowMultiFetch' to true to allow up tomax.poll.recordsto be fetched on each poll. When false (default)max.poll.recordsis coerced to 1 if the consumer factory is aDefaultKafkaConsumerFactoryor otherwise rejected with anIllegalArgumentException. IMPORTANT: When true, you must callAbstractMessageSource.receive()at a sufficient rate to consume the number of records received withinmax.poll.interval.ms. When false, you must callAbstractMessageSource.receive()withinmax.poll.interval.ms.pause()will not take effect until the records from the previous poll are consumed.- Parameters:
consumerFactory- the consumer factory.consumerProperties- the consumer properties.ackCallbackFactory- the ack callback factory.allowMultiFetch- true to allowmax.poll.records > 1.
-
-
Method Details
-
getAssignedPartitions
public java.util.Collection<org.apache.kafka.common.TopicPartition> getAssignedPartitions()Return the currently assigned partitions.- Returns:
- the partitions.
-
onInit
protected void onInit()- Overrides:
onInitin classorg.springframework.integration.util.AbstractExpressionEvaluator
-
getConsumerProperties
public org.springframework.kafka.listener.ConsumerProperties getConsumerProperties()Get a reference to the configured consumer properties; allows further customization of the properties before the source is started.- Returns:
- the properties.
-
getGroupId
protected java.lang.String getGroupId() -
getClientId
protected java.lang.String getClientId() -
getPollTimeout
protected long getPollTimeout() -
getMessageConverter
protected org.springframework.kafka.support.converter.RecordMessageConverter getMessageConverter() -
setMessageConverter
public void setMessageConverter(org.springframework.kafka.support.converter.RecordMessageConverter messageConverter)Set the message converter to replace the defaultMessagingMessageConverter.- Parameters:
messageConverter- the converter.
-
getPayloadType
protected java.lang.Class<?> getPayloadType() -
setPayloadType
public void setPayloadType(java.lang.Class<?> payloadType)Set the payload type. Only applies if a type-aware message converter is provided.- Parameters:
payloadType- the type to convert to.
-
getRebalanceListener
protected org.apache.kafka.clients.consumer.ConsumerRebalanceListener getRebalanceListener() -
getComponentType
public java.lang.String getComponentType()- Specified by:
getComponentTypein interfaceorg.springframework.integration.support.context.NamedComponent
-
isRawMessageHeader
protected boolean isRawMessageHeader() -
setRawMessageHeader
public void setRawMessageHeader(boolean rawMessageHeader)Set to true to include the rawConsumerRecordas headers with keysKafkaHeaders.RAW_DATAandIntegrationMessageHeaderAccessor.SOURCE_DATA. enabling callers to have access to the record to process errors.- Parameters:
rawMessageHeader- true to include the header.
-
getCommitTimeout
protected java.time.Duration getCommitTimeout() -
setCloseTimeout
public void setCloseTimeout(java.time.Duration closeTimeout)Set the close timeout - default 30 seconds.- Parameters:
closeTimeout- the close timeout.
-
isRunning
public boolean isRunning()- Specified by:
isRunningin interfaceorg.springframework.context.Lifecycle- Specified by:
isRunningin interfaceorg.springframework.integration.support.management.ManageableLifecycle
-
start
public void start()- Specified by:
startin interfaceorg.springframework.context.Lifecycle- Specified by:
startin interfaceorg.springframework.integration.support.management.ManageableLifecycle
-
stop
public void stop()- Specified by:
stopin interfaceorg.springframework.context.Lifecycle- Specified by:
stopin interfaceorg.springframework.integration.support.management.ManageableLifecycle
-
pause
public void pause()- Specified by:
pausein interfaceorg.springframework.integration.core.Pausable
-
resume
public void resume()- Specified by:
resumein interfaceorg.springframework.integration.core.Pausable
-
isPaused
public boolean isPaused()- Specified by:
isPausedin interfaceorg.springframework.integration.core.Pausable
-
doReceive
protected java.lang.Object doReceive()- Specified by:
doReceivein classorg.springframework.integration.endpoint.AbstractMessageSource<java.lang.Object>
-
createConsumer
protected void createConsumer() -
destroy
public void destroy()- Specified by:
destroyin interfaceorg.springframework.beans.factory.DisposableBean- Specified by:
destroyin interfaceorg.springframework.integration.support.management.IntegrationManagement- Overrides:
destroyin classorg.springframework.integration.endpoint.AbstractMessageSource<java.lang.Object>
-