Skip to main content
Version: 0.8

tecton.KafkaOutputStream

Summaryโ€‹

Configuration used for a Kafka output stream.

Attributesโ€‹

The attributes are the same as the __init__ method parameters. See below.

Methodsโ€‹

__init__(...)โ€‹

Parametersโ€‹

  • kafka_bootstrap_servers (str) โ€“ The list of bootstrap servers for your Kafka brokers, e.g: โ€œabc.xyz.com:xxxx,abc2.xyz.com:xxxxโ€.

  • topics (str) โ€“ A comma-separated list of Kafka topics the record will be appended to. Currently only supports one topic.

  • options (Optional[Dict[str, str]]) โ€“ A map of additional Spark readStream options. Some example options are kafka.ssl.endpoint.identification.algorithm, kafka.security.protocol, kafka.sasl.mechanism, and kafka.sasl.jaas.config (Default: None)

  • include_features (bool) โ€“ Return feature values in addition to entity keys. Not supported for window aggregate Feature Views. (Default: False)

Was this page helpful?