What's the best way to transmit data over a high-latency networks #20570
-
I want to transmit data between two places that are far apart, eg: EU -> ASIA, and I want to send msg from vector to vector,
If vector->vector too slow, queue will block, and it will affect input rate, how to mitigate this situation? There are my configs:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
For Vector to Vector communication, the |
Beta Was this translation helpful? Give feedback.
For Vector to Vector communication, the
vector
source/sink will be the most efficient. You could try setting a static request concurrency to see if that helps in this high-latency situation:request.concurrency = 10
(or 20, 30, 50 etc.) in thevector
sink.