DBZ-7443 Correct debezium.sink.pubsub.flowcontrol variables

Correct case discrepancy for configuration variables between docs and pubsub sink connector
df95323322/debezium-server-pubsub/src/main/java/io/debezium/server/pubsub/PubSubChangeConsumer.java (L98C3-L98C88)
This commit is contained in:
Clifford Cheefoon 2024-02-02 19:57:46 -05:00 committed by Jiri Pechanec
parent 57c4e2a876
commit d53ca0daec
3 changed files with 5 additions and 3 deletions

View File

@ -581,3 +581,4 @@ Pavithrananda Prabhu
Peter Hamer
Artem Shubovych
leoloel
Clifford Cheefoon

View File

@ -620,15 +620,15 @@ This is not supported by Pub/Sub so a surrogate key must be used.
|`10000000L`
|Once the number of bytes in the batched request reaches this threshold, send all of the messages in a single call, even if neither the delay or message count thresholds have been exceeded yet.
|[[flowControl-enabled]]<<flowControl-enabled, `debezium.sink.pubsub.flowControl.enabled`>>
|[[flowcontrol-enabled]]<<flowcontrol-enabled, `debezium.sink.pubsub.flowcontrol.enabled`>>
|`false`
|When enabled, configures your publisher client with flow control to limit the rate of publish requests.
|[[flowControl-max-outstanding-messages]]<<flowControl-max-outstanding-messages, `debezium.sink.pubsub.flowControl.max.outstanding.messages`>>
|[[flowcontrol-max-outstanding-messages]]<<flowcontrol-max-outstanding-messages, `debezium.sink.pubsub.flowcontrol.max.outstanding.messages`>>
|`Long.MAX_VALUE`
|(Optional) If flow control enabled, the maxmium number of messages before messages are blocked from being published
|[[flowControl-max-outstanding-bytes]]<<flowControl-max-outstanding-bytes, `debezium.sink.pubsub.flowControl.max.outstanding.bytes`>>
|[[flowcontrol-max-outstanding-bytes]]<<flowcontrol-max-outstanding-bytes, `debezium.sink.pubsub.flowcontrol.max.outstanding.bytes`>>
|`Long.MAX_VALUE`
|(Optional) If flow control enabled, the maxmium number of bytes before messages are blocked from being published

View File

@ -251,3 +251,4 @@ wukachn,Peter Hamer
shybovycha,Artem Shubovych
Liaoyuxing,leoloel
iankko,Jan Lieskovsky
CliffordCheefoon,Clifford Cheefoon