- updated bugzilla to 5.2
- fine tuned MariaDB + ZFS
(see jogamp-scripting repo)
After monitoring the server for a while
the load on bugzilla (perl) was visible.
Since the update wasn't good enough, I realized that MariaDB
and the bugzilla/perl processes consumed each 25% CPU.
MariaDB seems to have limited overall performance considerably?
I found this nice page for MariaDB + ZFS:
<
https://shatteredsilicon.net/mysql-mariadb-innodb-on-zfs/>
After creating a ZFS dataset for /var/lib/mysql w/ recordsize 16K
and adding the following to /etc/mysql/my.cnf
[mysqld]
#
# * InnoDB on ZFS
#
https://shatteredsilicon.net/mysql-mariadb-innodb-on-zfs/ #
# innodb_log_write_ahead_size = 16384 (adjusted)
innodb_log_write_ahead_size = 4096
innodb_doublewrite = 0
# innodb_checksum_algorithm = none (no more supported)
innodb_flush_neighbors = 0
innodb_use_native_aio = 0
MariaDB is reduced to < 10%, while bugzilla/perl is at ~100%,
i.e. bugzilla is no more DB limited :)