Strategies to improve database performance #463
programarivm
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The chess database is running on an Ubuntu Server that only has 1 GB of RAM and 8 GB of disk space.
While it may be too early to draw any conclusions, it seems that the
games
table is now more efficient with a MyISAM engine than with InnoDB. No inserts or updates of any kind are performed on this table. Since it is only used to query the data, the primary key has been removed along with theid
column. For further details please check out the cli/db-create.php script in the Chess Data repo which is responsible for creating the database.At this moment, the
games
table contains259734
records.And it is taking about 66 MB of disk space.
The
df
command shows the disk space usage.Hopefully with the new set up in docker/mysql/conf.d/custom.cnf, the MySQL server shouldn't go away because of 75% disk space usage in
/dev/root
.See:
Keep it up,
Beta Was this translation helpful? Give feedback.
All reactions