tustvold commented on issue #1473: URL: https://github.com/apache/arrow-rs/issues/1473#issuecomment-1102538209
Latest results from @e-dard, have tokio_par_async_spawn_blocking_test performing the roughly the same as par_sync_file_test :tada: ``` sync_file_test (2048): min: 0.0630s, max: 0.1333s, avg: 0.0660s, p95: 0.0702s sync_mem_test (2048): min: 0.0599s, max: 0.1805s, avg: 0.0634s, p95: 0.0705s par_sync_file_test (2048): min: 0.0544s, max: 0.0679s, avg: 0.0554s, p95: 0.0566s tokio_sync_file_test (2048): min: 0.0545s, max: 0.0677s, avg: 0.0563s, p95: 0.0610s tokio_spawn_file_test (2048): min: 0.0703s, max: 0.0988s, avg: 0.0727s, p95: 0.0815s tokio_spawn_file_buffer_test (2048): min: 0.0892s, max: 0.2146s, avg: 0.0974s, p95: 0.1212s tokio_async_spawn_blocking_test (2048): min: 0.0600s, max: 0.0786s, avg: 0.0640s, p95: 0.0715s tokio_async_blocking_test (2048): min: 0.0633s, max: 0.0746s, avg: 0.0655s, p95: 0.0688s tokio_par_async_spawn_blocking_test (2048): min: 0.0518s, max: 0.0552s, avg: 0.0528s, p95: 0.0540s tokio_par_async_blocking_test (2048): min: 0.0552s, max: 0.0765s, avg: 0.0567s, p95: 0.0582s tokio_par_sync_test (2048): min: 0.0546s, max: 0.0597s, avg: 0.0553s, p95: 0.0562s ``` So I guess I did a better job making the async version faster than I thought I did :sweat_smile: -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
