MySQL“文件组”?
由于使用有文件组的 Sql Server,我想知道 MySQL 中是否有(我确信有)类似的东西。毕竟数据库不能仅限于一个硬盘驱动器(如果使用 Windows 的话)。我尝试过搜索,但很难找到你不知道名字的东西!
Coming for using Sql Server where there are file-groups, i was wondering if there is (i'm sure there is) something similar in MySQL. After all the database cant be limited to just one hard drive( if using windows that is). I've tried to search but its hard to find the something that you don't know the name of!.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,MySQL 服务器实例将所有数据文件存储在单个数据目录下。
有多种方法可以使用符号链接来传播文件如果你聪明的话,可以通过多个驱动器。
或者您可以使用 分区 将数据库存储在多个目录中。但我个人认为MySQL 5.5之前的Partitioning实现太笨拙,没有什么用处。
关于使用 SAN 的评论:这是一篇文章:您什么时候会结合使用 SAN 和 MySQL?
By default a MySQL Server instance stores all data files under a single data directory.
There are ways to use symbolic links to spread files over multiple drives if you're clever.
Or you can use Partitioning to store your database over multiple directories. But I personally think the implementation of Partitioning prior to MySQL 5.5 is too awkward to be useful.
Re your comment about using a SAN: Here's an article: When would you use a SAN with MySQL?