Le 24/02/2019 à 18:35, Wes McKinney a écrit : > hi Antoine, > > All of the Flight traffic is going through a hard-coded single port > > https://github.com/apache/arrow/blob/master/cpp/src/arrow/flight/flight-benchmark.cc#L185 > > What happens if you spin up a different server (and use a different > port) for each thread? I'm surprised no one else has mentioned this > yet
Well that's not the expected usage model for a server, either :-) If you run an HTTP server, for example, you don't expect to have to open different ports on the same machine (rather than only port 80 or 443) to get good scalability. Regards Antoine.