my flink job pretends to fail at sink operator, which sends data to mqtt.
I have tried .setBufferTimeout(0)
at the one before sink operator and increase parallelism, as you can see in the pic. But it doesn't work. Can anyone help? Thanks.
my flink job pretends to fail at sink operator, which sends data to mqtt.
I have tried .setBufferTimeout(0)
at the one before sink operator and increase parallelism, as you can see in the pic. But it doesn't work. Can anyone help? Thanks.
A buffer timeout of 0 should be avoided, because it can cause severe performance degradation.
What sink connector do you use?
What's the batch size of your sink operator?
All these factors will have a relationship with the write performance of your sink.