What is the maximum number of tables, rows per table and columns per table can be created in Managed MySQL database cluster?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hello,
MySQL has no limit on the number of databases. The underlying file system may have a limit on the number of directories.
MySQL has no limit on the number of tables. The underlying file system may have a limit on the number of files that represent tables. Individual storage engines may impose engine-specific constraints. Our managed database cluster uses InnoDB. InnoDB permits up to 4 billion tables.
For reference: https://dev.mysql.com/doc/refman/8.0/en/database-count-limit.html
Hope that this helps. Regards, Priyanka