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/20121006223352.blog

17 lines
6.1 KiB
Plaintext

irker is feature-complete
<p>I&#8217;ve just shipped <a href="http://www.catb.org/esr/irker/">irker 1.8</a>, and I think this brings the wild ride I&#8217;ve been on for the last eleven days approximately to a close. I consider this release feature-complete; it achieves all the goals I had in mind when the CIA service died and I decided it was up to me to rescue the situation. I expect the development pace to slow down a lot from the almost daily release I&#8217;ve been doing.</p>
<p>The last really major feature was irkerhook support for Mercurial repositories. I&#8217;d be mildly interested in a bzr extractor class if anyone wanted to contribute one, and that probably wouldn&#8217;t be hard &#8211; the git and hg extractors are about 70 lines each. But with git, hg, and Subversion covered it&#8217;s good enough.</p>
<p>Uptake of irker continues at a pleasingly rapid pace. There&#8217;s now a second symbiote application, a poller daemon that watches the log of a specified Subversion repository and uses irkerd to ship notifications from it. This can be useful if you don&#8217;t have write access to the repo hooks and thus cannot install irkerhook.</p>
<p>Time for a pause and some reflection on lessons to be learned.</p>
<p><span id="more-4636"></span></p>
<p>I think the most interesting aspect of the project, after I got the basic irkerd design in working shape, was hardening the implementation against denial-of-service attacks. I got some high-powered volunteer help with this, including from A&#038;D regulars Daniel Franke and Peter Scott. Reasoning out the attack paths and the simplest possible countermeasures was just plain <em>fun</em>, possibly more fun because I&#8217;ve never had to do this kind of analysis before.</p>
<p>The willingness of hackers to step up and contribute to a project like this continues to be a wonderful thing about which I hope never to become jaded. Because this project spun up so fast and still doesn&#8217;t have a mailing list, I know many of my contributers mainly by IRC nicks. Thank you, AI0867, birkenfeld, KingPin, laurentb, dak180, nenolod, and everybody else who showed up on <a href="irc://chat.freenode.net/#irker">#irker</a> to help and contribute and critique and report bugs and ask questions. It has been a pleasure working with all of you and watching a healthy micro-community form around this project within <em>hours</em> of my first release.</p>
<p>irker does have some has competition for its goal of replacing the CIA notification service. Some Debian people dusted off a project called &#8220;KGB&#8221;; I gave its principal designer a bit of a hard time when he showed up in A&#038;D&#8217;s comments because KGB is heavier and more elaborate than it needs to be, but in truth it&#8217;s not actually horrible. CIA&#8217;s <a href="http://scanlime.org/wp-content/uploads/2011/05/cia-architecture.png">spaghetti architecture</a> was horrible; KGB is merely somewhat overweight.</p>
<p>KGB is also, judging by the traffic on freenode #commits, losing the adoption race. They got to the party late with software that&#8217;s more difficult to grok and get running than irker is. Though, to be fair, irker&#8217;s minimalistic design might not have gained an advantage without also having better documentation. I <em>never</em> consider high-quality documentation a mere optional extra on my projects. This is certainly a lesson more developers could stand to learn&#8230;</p>
<p>I will admit, however, that one KGB feature I initially scoffed at turned out to be sufficiently useful and lightweight that I added it &#8211; that is, support for color-highlighting notication lines. The key to that decision was that I found a way to implement it in a handful of lines of code in irkerhook.py; the feature doesn&#8217;t touch irkerd at all.</p>
<p>This is an example of a larger theme in irker&#8217;s design &#8211; policy/mechanism separation. The irker daemon is pure mechanism; it has no options or control knobs of any kind (other than one to enable debugging messages and another to dump the version and exit). It&#8217;s just a message bus. All the policy stuff (choices about what to put in a notification) lives in irkerhook.py. And you damn betcha that I plan to keep it that way!</p>
<p>Because all irkerhook.py does is gather information that it ships as JSON, the addition of one simple option &#8211; to dump the JSON to stdout rather than trying to ship to the configured irker instance &#8211; makes changes in the the policy stuff very easy to test. Which is as unlike the huge, nigh-untestable and thus extremely failure-prone hairball that was CIA as it is possible to be and do an even remotely similar job.</p>
<p>Generally, policy needs to change more often than than mechanism. So, when you partition your system into a mechanism part (irkerd) and a policy part (irkerhook.py), the policy part is the part where there is greater <em>need</em> for testability. Or, to put it differently: when you partition your code and you find that the least stable part is most amenable to testing, you&#8217;re doing it right.</p>
<p>Yes, this is the old-time Unix gospel of minimalism and design for testability I&#8217;m preaching here, brothers and sisters, and I&#8217;m doin&#8217; it for a reason. The total line count of irkerd and irkerhook.py code is 689 LOC (measured by sloccount), compared to 1957 LOC for KGB and probably tens of thousands of lines for CIA (I haven&#8217;t measured that). When you pay proper attention to separation of function and separation of policy from mechanism, your code gets not larger but <em>smaller</em>. With virtuous consequences, the most important of which is <em>fewer failure modes</em>.</p>
<p>Comprehensibility helps deployment, too. It&#8217;s not that I think every project administrator who has adopted irker has actually read the daemon code, but I&#8217;m certain its smallness and lightness &#8211; and the fact that you <em>can</em> read through irkerhook.py and grok what what it&#8217;s doing in just a couple of minutes &#8211; has made it an easier sale to people who are chronically short of time and attention to get all their tasks done.</p>