While testing Monetdb on Linux I can see a lot of IO write activity. The data set is 2GB (30 Million rows) and system has 120GB free RAM
The query:
select sum(hits) from (select "hour","minute","second", server, count(*) as hits from iislogs group by server, "hour","minute","second") as xxx;
I run a single query it takes ~400 ms to scan 30 Mil rows, but if i run same query 10 times in parallel each takes 30 s! The 48 CPUs are at 15% and I can see lots of disk writes, no swap activity. I've looking for tweaking some kind of setting or limitation without any luck.
Any idea about why ?
UPDATE:
I've disabled logging and write active has lowered but still having some and no improvement at all.