nickva commented on issue #5342: URL: https://github.com/apache/couchdb/issues/5342#issuecomment-2617364783
I wrote a small benchmark just running items through the couch_work_queue and 25 does seem to show better performance numbers: https://gist.github.com/nickva/f2175a6bee8399f7f9ed38d5e9d3be5d ``` Erlang/OTP 25 [erts-13.2.2.11] [source] [64-bit] [smp:12:12] [ds:12:12:10] [async-threads:1] [jit:ns] Eshell V13.2.2.11 (abort with ^G) ([email protected])1> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 103772749,imax_dt => 33037,imin_dt => 599, p_dt => 103773912} ([email protected])2> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 69403578,imax_dt => 2242,imin_dt => 597, p_dt => 69405621} ([email protected])3> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 85111027,imax_dt => 19165,imin_dt => 597, p_dt => 85112678} ``` ``` Erlang/OTP 27 [erts-15.1.2] [source] [64-bit] [smp:12:12] [ds:12:12:16] [async-threads:1] ([email protected])1> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 110633029,imax_dt => 63506,imin_dt => 702, p_dt => 110634677} ([email protected])2> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 109516657,imax_dt => 75298,imin_dt => 696, p_dt => 109518259} ([email protected])3> bench:main({100000, 100000, 100, all, 10000}). #{c_dt => 104687478,imax_dt => 16934,imin_dt => 925, p_dt => 104688759} ``` -- 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]
