Postgresql:在不同机器之间分割数据库
我想对一个非常大的 PostgreSQL 8.3 数据库进行分区。 引用手册,
分区可以提供多种 好处:
...
很少使用的数据可以 迁移到更便宜且速度较慢的存储 媒体。
将表格重新定位到其他媒体或计算机的正确方法是什么? 亚当
I want to partition a very large PostgreSQL 8.3 database. Quoting the manual,
Partitioning can provide several
benefits:...
Seldom-used data can be
migrated to cheaper and slower storage
media.
What's the right way to relocate tables to another media or computer?
Adam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所说的通常称为复制或集群,具体取决于系统的设置方式。
您具体想要做的是集群,您可以在 PostgreSQL 上实现。
wiki 列出了一些现有的解决方案:
What you are talking about is commonly referred to as Replication or Clustering, depending on how the system is set up.
What you want to do specifically is clustering, and you can do it on PostgreSQL.
The wiki lists some of the existing solutions: