You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "EMing Zhou (Jira)" <ji...@apache.org> on 2022/06/17 08:21:00 UTC

[jira] [Commented] (FLINK-28027) Initialise Async Sink maximum number of in flight messages to low number for rate limiting strategy

    [ https://issues.apache.org/jira/browse/FLINK-28027?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17555460#comment-17555460 ] 

EMing Zhou commented on FLINK-28027:
------------------------------------

Hi [~CrynetLogistics] ,When I use jdbc sink, I found that there are several parameters. I don't know if it can help you. I will provide you with reference.
{code:java}
//代码占位符
{code}
JdbcExecutionOptions.builder() .withBatchSize(4000) .withBatchIntervalMs(200) .withMaxRetries(3) .build()

> Initialise Async Sink maximum number of in flight messages to low number for rate limiting strategy
> ---------------------------------------------------------------------------------------------------
>
>                 Key: FLINK-28027
>                 URL: https://issues.apache.org/jira/browse/FLINK-28027
>             Project: Flink
>          Issue Type: Bug
>          Components: Connectors / Common, Connectors / Kinesis
>    Affects Versions: 1.15.0
>            Reporter: Zichen Liu
>            Priority: Minor
>             Fix For: 1.16.0
>
>
> *Background*
> In the AsyncSinkWriter, we implement a rate limiting strategy.
> The initial value for the maximum number of in flight messages is set extremely high ({{{}maxBatchSize * maxInFlightRequests{}}}).
> However, in accordance with the AIMD strategy, the TCP implementation for congestion control has found a small value to start with [is better]([https://en.wikipedia.org/wiki/TCP_congestion_control#Slow_start]).
> *Suggestion*
> A better default might be:
>  * maxBatchSize
>  * maxBatchSize / parallelism



--
This message was sent by Atlassian Jira
(v8.20.7#820007)