Packages

c

com.adform.streamloader.sink

WrappedPartitionGroupSinker

abstract class WrappedPartitionGroupSinker extends PartitionGroupSinker

A PartitionGroupSinker that wraps another sinker instance and by default forwards all actions to it. Used for implementing other wrapper sinks in order to avoid boilerplate.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. WrappedPartitionGroupSinker
  2. PartitionGroupSinker
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new WrappedPartitionGroupSinker(basesSinker: PartitionGroupSinker)

    basesSinker

    The base sinker to forward to.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def close(): Unit

    Cleans up and closes the sinker.

    Cleans up and closes the sinker.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. val groupName: String

    Name of the partition group, can be used in metrics and logs to differentiate between group sinkers.

    Name of the partition group, can be used in metrics and logs to differentiate between group sinkers.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker
  11. val groupPartitions: Set[TopicPartition]

    The Kafka topic partitions that this sinker is responsible for.

    The Kafka topic partitions that this sinker is responsible for.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def heartbeat(): Unit

    Notifies the sinker that record consumption is still active.

    Notifies the sinker that record consumption is still active. Gives the sinker an opportunity to perform flushing with very low traffic streams.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker
  14. def initialize(kafkaContext: KafkaContext): Map[TopicPartition, Option[StreamPosition]]

    Initializes the sinker and returns the stream positions where topic partitions should be reset to before loading.

    Initializes the sinker and returns the stream positions where topic partitions should be reset to before loading. Should be called once before any subsequent calls to write. This is most likely a blocking call since it queries Kafka/storage for offsets.

    kafkaContext

    Kafka context to use when looking up / committing offsets to Kafka, if needed.

    returns

    The initial loader positions in the owned topic partitions. If no position is returned the position will not be reset explicitly, meaning that the consumer will either reset it to the earliest/latest based on the configuration value of auto.offset.reset, or will reset to the offset stored in Kafka, if any.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. def write(record: StreamRecord): Unit

    Writes a given stream record to storage.

    Writes a given stream record to storage.

    Calling this method does not ensure that the record will be flushed to storage, e.g. the sinker might implement batching thus delaying the actual storage.

    Definition Classes
    WrappedPartitionGroupSinkerPartitionGroupSinker

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from PartitionGroupSinker

Inherited from AnyRef

Inherited from Any

Ungrouped