Show / Hide Table of Contents

Class KafkaSettings

Settings for the Kafka compatibility layer.

Inheritance
object
KafkaSettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StreamingService.Models
Assembly: OCI.DotNetSDK.Streaming.dll
Syntax
public class KafkaSettings

Properties

AutoCreateTopicsEnable

Declaration
[JsonProperty(PropertyName = "autoCreateTopicsEnable")]
public bool? AutoCreateTopicsEnable { get; set; }
Property Value
Type Description
bool?

Enable auto creation of topic on the server.

BootstrapServers

Declaration
[JsonProperty(PropertyName = "bootstrapServers")]
public string BootstrapServers { get; set; }
Property Value
Type Description
string

Bootstrap servers.

LogRetentionHours

Declaration
[JsonProperty(PropertyName = "logRetentionHours")]
public int? LogRetentionHours { get; set; }
Property Value
Type Description
int?

The number of hours to keep a log file before deleting it (in hours).

NumPartitions

Declaration
[JsonProperty(PropertyName = "numPartitions")]
public int? NumPartitions { get; set; }
Property Value
Type Description
int?

The default number of log partitions per topic.

In this article
Back to top