Skip to content
This repository was archived by the owner on Sep 2, 2024. It is now read-only.

Change KafkaChannel default replication factor and num partitions #1085

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/common/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import "time"
const (

// DefaultNumPartitions is the KafkaChannel Spec default for the number of partitions
DefaultNumPartitions = 1
DefaultNumPartitions = 10

// DefaultReplicationFactor is the KafkaChannel Spec default for the replication factor
DefaultReplicationFactor = 1
DefaultReplicationFactor = 3

// DefaultRetentionISO8601Duration is the KafkaChannel Spec default for the retention duration as an ISO-8601 string
DefaultRetentionISO8601Duration = "PT168H" // Precise 7 Days
Expand Down