This repository has been archived on 2017-04-03. You can view files and clone it, but cannot push or open issues/pull-requests.
blog_post_tests/20110415131935.blog

16 lines
4.5 KiB
Plaintext

rsnapshot: you’re doing it right!
<p>Some years back I wrote a book titled <a href="http://www.catb.org/esr/writings/taoup/">The Art of Unix Programming</a>. My goal in that book was to convey the Zen of Unix to today&#8217;s generations of eager young Linux and *BSD programmers. In the spirit of that book, I feel impelled to point out out a program I&#8217;ve recently learned as a striking, near-perfect example of Unix style in the modern day. rsnapshot, you&#8217;re doing it right!</p>
<p><span id="more-3124"></span></p>
<p>rsnapshot is <a href="http://www.rsnapshot.org/">a filesystem snapshot utility for making backups of local and remote systems</a>; you save your stuff with it. I can describe it pretty well by just listing the ways that it fulfills classic Unix design patterns.</p>
<p>1. Everything the program does is driven by a single configuration file in a plain-ASCII text format &#8211; easily readable by the Mark One Eyeball, easily editable without special tools.</p>
<p>2. The configuration file is a specification in a declarative minilanguage. That is a bit different and stronger statement than point 1; it implies that, rather than being a series of tweaks of opaque parameters that cannot be understood without intimate knowledge of the rsnapshot code, the configuration is largely self-describing given a certain fairly minimal understanding of the application&#8217;s domain (making backups).</p>
<p>3. rsnapshot delegates everything it can and doesn&#8217;t reinvent wheels. The actual backup engine is rsync, possibly assisted by ssh (two bog-standard Unix tools every sysadmin will have installed). Backup scheduling is handled by putting rsnapshot jobs in a cron file. Notifications to the sysadmin are done through normal email.</p>
<p>4. While high performance of the backup engine is important (and rsync is tuned for it) performance of rsnaphot itself is not. So it&#8217;s written in a scripting language for best flexibility and maintainability. Perl wouldn&#8217;t have been my first choice, but for this application it is a big win over C or any compiled language.</p>
<p>5. rsnapshot doesn&#8217;t have a GUI because it doesn&#8217;t need one; the real &#8220;interface&#8221; to it is a text editor running on its config file. If somebody wanted to give it a GUI, the GUI code could be a separate small program that simply does structured modifications of the config file while remaining completely isolated from the logic of rsnaphot itself. Such separation lowers global complexity, reduces bugs, and increases the options to improve both programs.</p>
<p>6. Mechanism is clearly separated from policy. In this particular case, the portions of the configuration language that describe the tools to use for doing backups are clearly separated from scheduling and the specification of archive locations.</p>
<p>7. rsnapshot run on a config file with a syntactic or other detectable error emits a useful error message including the line number of the error to standard error. The real point is that errors lead to more understanding rather than some bland &#8220;A problem occurred&#8221; pointing nowhere in particular.</p>
<p>8. rsnapshot includes a -t (test) option that allows you to see the rsync and other copy commands a given configuration would emit without committing them. It also includes a -V option to show more detail about how these actions were generated. These options, especially in combination with the previous point, make the program discoverable; they lower the cost of becoming familiar with it.</p>
<p>9. rsnapshot makes as few wired-in assumptions as it can get away with. This future-proofs it against, for example, changes in the preferred backup tools. If rsync were to be obsolesced by a faster and better file-tree-synchronization tool tomorrow, rsnapshot installations would be using it without fuss the next day.</p>
<p>10. rsnapshot isn&#8217;t just good, it&#8217;s <em>unobtrusively</em> good. The design doesn&#8217;t repeatedly hit you over the head with how clever it is or try to impress you with flashiness signifying nothing. It is spare, clean, elegant, and gets out of your way. This is correct Unix style!</p>
<p>I&#8217;m not saying rsnapshot is absolutely perfect &#8211; I could quarrel with the reliance on tabs as field separators in the config file, even though the parser is helpful about telling you when you&#8217;ve used the wrong kind of whitespace. But it&#8217;s near perfect, and a worthy model for programmers trying to improve their Unix style.</p>