Dayz Epoch Server on VM
-
- New to forums
- Posts: 4
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Sat Aug 31, 2013 9:13 am
Re: Dayz Epoch Server on VM
I see. No, I am not running the game off an SSD. Maybe this is something I will give a shot in the near future. Thank you.
-
- New to forums
- Posts: 12
- Joined: Sat May 04, 2013 5:49 pm
Re: Dayz Epoch Server on VM
yea, we use a 10gb ssd for database and hard drive swap file. 5gb for swap file and then 5gb for MySQL database. The rest of the game files run on the regular hard drive.
I just think in my case that we need more CPU Turbo power and with the VM we don't get all the turbo or at least it's not turbo on all threads. so depending on the threads being used and the hypervisor, this will cause a slight reduction in performance vs a dedicated server which is what I am thinking about moving to next.
I just think in my case that we need more CPU Turbo power and with the VM we don't get all the turbo or at least it's not turbo on all threads. so depending on the threads being used and the hypervisor, this will cause a slight reduction in performance vs a dedicated server which is what I am thinking about moving to next.
Re: Dayz Epoch Server on VM
I was able to resolve the issue by tweaking MySQL settings.
Re: Dayz Epoch Server on VM
What settings?Anthony wrote:I was able to resolve the issue by tweaking MySQL settings.
Re: Dayz Epoch Server on VM
C:\ProgramData\MySQL\MySQL Server 5.6\my.ini
Leading # is the default value on my MySQL install.
#innodb_flush_log_at_trx_commit=1
innodb_flush_log_at_trx_commit=2
#innodb_buffer_pool_size=8M
innodb_buffer_pool_size=1024M
#innodb_log_buffer_size=1M
innodb_log_buffer_size=4M
#innodb_log_file_size=48M
innodb_log_file_size=256M
I saw a dramatic decrease in the amount of disk I/O from the SQL DB so there is no need to put the DB on an SSD. Users have reported improved performance since making the changes, but there is still room for improvement, which I am still working on.
Leading # is the default value on my MySQL install.
#innodb_flush_log_at_trx_commit=1
innodb_flush_log_at_trx_commit=2
#innodb_buffer_pool_size=8M
innodb_buffer_pool_size=1024M
#innodb_log_buffer_size=1M
innodb_log_buffer_size=4M
#innodb_log_file_size=48M
innodb_log_file_size=256M
I saw a dramatic decrease in the amount of disk I/O from the SQL DB so there is no need to put the DB on an SSD. Users have reported improved performance since making the changes, but there is still room for improvement, which I am still working on.