1s4ha Posted November 22, 2016 Posted November 22, 2016 Hi, I really love this free host, it's even better than the paid ones. One small question, is there a limit for database usage? Or it is depended on the disk usage?
wolstech Posted November 22, 2016 Posted November 22, 2016 The database size just counts toward your account's disk space quota I believe. The only other limit we have on it is overuse/abuse of CPU time. Running complex or badly written queries that monopolize the server (or crash it...) can get you suspended for high load. Pretty much all common software doesn't have any issues with the load though. Finally, I recommend staying away from the innodb storage engine in MySQL if you're on Stevie, it is subject to going read only or just losing your data without notice if the database server crashes (can happen due to abuse on occasion). 1
1s4ha Posted November 23, 2016 Author Posted November 23, 2016 The database size just counts toward your account's disk space quota I believe. The only other limit we have on it is overuse/abuse of CPU time. Running complex or badly written queries that monopolize the server (or crash it...) can get you suspended for high load. Pretty much all common software doesn't have any issues with the load though. Finally, I recommend staying away from the innodb storage engine in MySQL if you're on Stevie, it is subject to going read only or just losing your data without notice if the database server crashes (can happen due to abuse on occasion).Thanks, I'm using phpBB that uses innodb storage engine on Stevie, can I change the engine? If not, what should I do?
wolstech Posted November 23, 2016 Posted November 23, 2016 It's not as common as it sounds, but it has happened once or twice this year. If you want to convert it, the safest way is export the database to a .sql file, replace all the Engine=InnoDB with Engine=MyISAM in the .sql file, then create a new database and import the edited file. After that, just point PhpBB to the new database, test, and drop the old one. Many people report newer PhpBB having trouble on MyISAM though, so if it acts strange, you may need to find other forum software or just make frequent backups (which we recommend anyway!) so you can restore it if InnoDB decides to go belly up. 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now