Hi,<br>As part of my studies, I have recently been doing some performance evaluations on Erlang SMP improvements  for IO-bound applications.<br><br>The applications I considered for the evaluation were Emysql driver (<a href="https://github.com/Eonblast/Emysql" target="_blank">https://github.com/Eonblast/Emysql</a>) and Mnesia.<br>


I have created an Erlang module for performing reads/writes from/to Mysql DB through Emysql driver, and another Erlang module for communicating with Mnesia.<br>Both the modules have two methods write(nr_records) which writes nr_records records to the database (MySQL, or Mnesia), and read(nr_records) which reads nr_records random records from the db. (both the reads and writes are consecutive, not in chunks)<br>


I have a load generator tool which simulates simultaneous requests to both the modules and gathers performance statistics. I generate as much load as needed to stress the applications (near the saturation point)<br>The metrics I uses are the throughput (no. of sessions/sec), and the session duration. A session is a call to write(nr_records) or read(nr_records) function depending on the test case (read or write). So if I call write(500), I measure the duration of a session that does 500 hundred inserts into the database.<br>

<br><div>The tests I run have these parameters:<br>
<br>A)Type of operations: 1- Reads 2-Writes<div>I have just one table with 20 fields, and the reads and writes are just select and insert operations in that table<br><br>B) I/O applications: 1- Emysql 2-Mnesia<br><br>C) SMP parameters: <br>


1- SMP enabled, no. of schedulers = no. of cpu cores <br>2-SMP  enabled, no. of schedulers = 1 <br>3- SMP disabled<br><br>D) Erlang OTP versions:<br>1- Erlang R12B (The SMP has only one run-queue and multiple schedulers)<br>


2- Erlang R15B (Improved SMP, 1 run-queue per each scheduler)<br><br>The tests included all possible combinations from A,B,C,D. They were run in Solaris 10 x86 (a 16 cores machine).<br>In general these were the results I got:<br>


<br><b>Emysql driver:</b><br>1- There is a a big difference in performance between SMP enabled and disabled in both the Erlang versions (R12 and R15)  for both read and write tests.  So I can say that SMP rocks! However, you have to have enough load to achieve that (for low load I could not see any difference, sometimes it was even better to disable SMP)<br>


<br>2- I was expecting a much better performance for SMP enabled (no. of cores = no. of schedulers) in R15 than in R12, since the schedulers' logic has changed a lot from R12 to R15. But the results were more or less the same.  I was thinking since I had a multithreaded db like MySql, a multiple db-connections driver as Emysql, and SMP with multiple schedulers with their own run queues, I could get better results than in R12 where there is only one run-queue and multiple schedulers (more lock contention).<div>


Is it maybe because the processes are just doing IO and nothing CPU-intensive?</div><div><br></div><div>3- I realized that CPU usage in R15 SMP enabled is twice higher than the CPU use in R12 SMP enable. All the cores have a CPU usage over 90%, and I can see that the beam process is using up to 75-80% of the CPU, the rest is the mysql daemon process. Is it because in R15 the scheduling algorithm has become more complex? </div>


<div><br></div><div><b>Mnesia</b></div><div><b><br></b></div><div>I have only one table (as I said before) created with the attribute disc_copies, and it is stored only in one node. The whole table fits in RAM, and I tried to keep it simple by controlling the size of the table during my tests, in order not exceed RAM capacity </div>


<div><br></div><div>4-  For the write tests in Mnesia I see the same behavior as in Mysql. However, since the data are all loaded in RAM, the session duration is shorter, and the gain in performance between SMP enabled and disabled is not as huge as in Mysql.</div>

<div><br></div><div>5- For the read tests, I have two observations. First, the dirty reads are 10 times faster than the reads that use transactions. Second, I have better results for SMP disabled (twice faster, though in both cases the session duration is in order of millisecods, 70 msec vs 30 msec).</div>
<div><br></div><div>6- Same as in Mysql, no difference in performance between R12 and R15 with SMP enabled, for both read and write tests.</div><div><br></div><div>If you have read so far, and have a comment on my results, you are welcome. Especially about the no difference btw R12 and R15 and the high CPU usage in R15 when the applications are IO-bound.</div>
<div><br></div><div>Thanks,</div><div>Erisa</div><div><br><br><br><br><br><br><br></div></div>
</div>