PartitionConfigArgs

data class PartitionConfigArgs(val capacity: Output<CapacityArgs>? = null, val count: Output<String>? = null, val scale: Output<Int>? = null) : ConvertibleToJava<PartitionConfigArgs>

The settings for a topic's partitions.

Constructors

Link copied to clipboard
fun PartitionConfigArgs(capacity: Output<CapacityArgs>? = null, count: Output<String>? = null, scale: Output<Int>? = null)

Functions

Link copied to clipboard
open override fun toJava(): PartitionConfigArgs

Properties

Link copied to clipboard
val capacity: Output<CapacityArgs>? = null

The capacity configuration.

Link copied to clipboard
val count: Output<String>? = null

The number of partitions in the topic. Must be at least 1. Once a topic has been created the number of partitions can be increased but not decreased. Message ordering is not guaranteed across a topic resize. For more information see https://cloud.google.com/pubsub/lite/docs/topics#scaling_capacity

Link copied to clipboard
val scale: Output<Int>? = null

DEPRECATED: Use capacity instead which can express a superset of configurations. Every partition in the topic is allocated throughput equivalent to scale times the standard partition throughput (4 MiB/s). This is also reflected in the cost of this topic; a topic with scale of 2 and count of 10 is charged for 20 partitions. This value must be in the range 1,4.