Subversion:转储备份,我需要增量备份吗?

发布于 2024-09-28 02:33:55 字数 219 浏览 6 评论 0原文

我是一个颠覆菜鸟。我计划使用以下命令从存储库进行备份:

svnadmin dump C:\Repositories\Dev > D:\backups\repo_dev.bak

我的目的是将其放入计划任务(Windows Server 2008)中并每天或每周运行它。我可以只使用这个命令(旧备份被新备份替换)还是需要单独进行增量备份?或者热拷贝备份?

I'm a subversion noob. I was plannig to take backups from the repo using this command:

svnadmin dump C:\Repositories\Dev > D:\backups\repo_dev.bak

My intention is to put this into Scheduled Task (Windows Server 2008) and run this on daily or weekly basis. Can I use this command only (old backup is replaced by the new one) or do I need incremental backups separately? Or hotcopy backups?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感性 2024-10-05 02:33:55

您可以执行完整转储或增量转储。增量的主要问题是需要多次备份来重建数据。完整转储是一个独立的全包数据集。

您选择哪一个取决于以下几个因素:

  1. 转储有多大
  2. 存储库更改的速度
  3. 存储库存储系统的可靠性
  4. 备份期间系统的可用性要求
  5. 存储库死亡时可以容忍的中断时间 备份
  6. 完成的认真
  7. 程度可能还有其他几个因素(已经晚了)

You can do either a full dump or an incremental. The chief problem with an incremental is that several backups are needed to reconstruct the data. A full dump is a stand alone all-inclusive data set.

Which one you choose depends on several factors:

  1. how big the dumps are
  2. how fast the repository changes
  3. how reliable the repository storage system is
  4. availability requirement for the system during backup
  5. how long an outage is tolerable in case the repository dies
  6. how conscientiously the backups are done
  7. probably several other factors (it's late)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文