lidavidm commented on pull request #10242: URL: https://github.com/apache/arrow/pull/10242#issuecomment-831985814
I tested this between two AWS EC2 instances (t3.xlarge) using a self-signed elliptic-curve certificate and one month's worth of the NYC taxi dataset. The performance impact is about 20%. Plaintext: ``` $ arrow-flight-benchmark -server_host ip-172-31-73-63.ec2.internal -test_put -num_perf_runs=4 -num_streams=4 -num_threads=1 -data_file ~/data.feather Testing method: DoPut Using standalone TCP server Server host: ip-172-31-73-63.ec2.internal Server port: 31337 Number of perf runs: 4 Number of concurrent gets/puts: 1 Batch size: 5265782 Batches written: 3456 Bytes written: 18198543232 Nanos: 36934869371 Speed: 469.894 MB/s Throughput: 93.5701 batches/s Latency mean: 8501 us Latency quantile=0.5: 8676 us Latency quantile=0.95: 9189 us Latency quantile=0.99: 10791 us Latency max: 20421 us ``` TLS: ``` $ arrow-flight-benchmark -server_host ip-172-31-73-63.ec2.internal -test_put -num_perf_runs=4 -num_streams=4 -num_threads=1 -data_file ~/data.feather -cert_file cert.pem Testing method: DoPut Using standalone TCP server Server host: ip-172-31-73-63.ec2.internal Server port: 31337 Number of perf runs: 4 Number of concurrent gets/puts: 1 Batch size: 5265782 Batches written: 3456 Bytes written: 18198543232 Nanos: 43250718195 Speed: 401.276 MB/s Throughput: 79.9062 batches/s Latency mean: 9448 us Latency quantile=0.5: 8728 us Latency quantile=0.95: 15231 us Latency quantile=0.99: 18009 us Latency max: 24841 us ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
