Class

com.twitter.finatra.kafkastreams.dsl.FinatraDslToCluster

FinatraKeyValueStream

Related Doc: package FinatraDslToCluster

Permalink

implicit class FinatraKeyValueStream[K, V] extends AnyRef

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FinatraKeyValueStream
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FinatraKeyValueStream(kstream: KStream[K, V])

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. def toCluster(cluster: String, topic: KafkaTopic, clientId: String, statsReceiver: StatsReceiver, kafkaProducerConfig: FinagleKafkaProducerConfig[K, V] = defaultFinagleKafkaProducerConfig, commitInterval: Duration = 1.minute, flushTimeout: Duration = Duration.Top, maxPendingEvents: Int = 1000)(implicit produced: Produced[K, V]): Unit

    Permalink

    Publishes events to a kafka topic on the specified cluster rather than the primary cluster.

    Publishes events to a kafka topic on the specified cluster rather than the primary cluster. This call is needed because KafkaStreams does not natively provide the ability to publish to a cluster different from the cluster from whith it is consuming. Can only be used in at_least_once processing guarantee. Will not work with exactly_once.

    cluster

    Cluster to which events are published (wily path or host:port)

    topic

    Topic to which events are published

    clientId

    ClientId used in the FinagleKafkaProducer

    statsReceiver

    StatsReceiver used both in the FinagleKafkaProducer and AsyncProcessor

    kafkaProducerConfig

    Configuration used to configure the FinagleKafkaProducer

    commitInterval

    Interval at which the AsyncProcessor performs commits

    flushTimeout

    Timeout for which the AsyncProcessor waits for publishes to complete

    maxPendingEvents

    Maximum number of events pending publishing

    produced

    An [org.apache.kafka.streams.scala.Produced] to specify the serializers for the key & value

  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped