Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Software

Knuth Got It Wrong 298

davecb writes "Think you've mastered the art of server performance? Think again. Poul-Henning Kamp, in an article at ACM Queue, finds an off-by-ten error in btrees, because they fail to take virtual memory into account. And he solves the problem in the open source 'Varnish' HTTP accelerator, for all of us to see and use."
This discussion has been archived. No new comments can be posted.

Knuth Got It Wrong

Comments Filter:
  • by KriKit ( 892231 ) on Monday June 14, 2010 @07:37PM (#32572802)
    If were talking about swap then nevermind, nothing you can do there. The filesystem is the swap.
  • Why trust the OS? (Score:5, Interesting)

    by michaelmalak ( 91262 ) <michael@michaelmalak.com> on Monday June 14, 2010 @07:50PM (#32572942) Homepage
    I'm not sure what the advantages are of dancing around with the OS's virtual memory system. If it were me, I would detect the amount of physical memory available, allocate 80% of it, lock it into physical memory and manage the paging myself. It would be portable, not subject to changes in the VM algorithm by the OS authors, and easier to directly monitor and improve performance. But that's just me.
  • by Ungrounded Lightning ( 62228 ) on Monday June 14, 2010 @08:12PM (#32573152) Journal

    I wrote Knuth an email once. He never wrote me back.

    As with the xkdc.org reference in the grandparent, this is something of an in joke. Don doesn't do email. B-)

  • by Lord Crc ( 151920 ) on Monday June 14, 2010 @08:16PM (#32573172)

    Squid is his use case to beat? Has he been in any high performance app stack in the past five years?

    Squid... really?

    Considering Varnish was written due primarily to the lacking performance of Squid, I don't see why this is so bad?

  • by Cirvam ( 216911 ) <slashdot AT sublevo DOT com> on Monday June 14, 2010 @08:20PM (#32573226)

    Other then varnish and squid what caching reverse proxy software is there? It looks like Nginx added caching to their core recently, although I'm not exactly sure if its intended to act in the same capacity as squid and varnish or to be more like mod_cache for lighttpd. I guess you could use apache and mod_proxy but that's not exactly high performance. I know my employer looked at the various offerings and we ended up writing our own on top of a webserver called OKWS.

  • by peter303 ( 12292 ) on Monday June 14, 2010 @08:28PM (#32573294)
    I forget the exact amount, but it was like PI or E dollars for every typo. I am not sure what the payment is for an algorithmic error.
  • Re:Nope, he didn't (Score:3, Interesting)

    by lalena ( 1221394 ) on Monday June 14, 2010 @08:41PM (#32573388) Homepage
    Yes, you are correct. I think the author could have just showed figures 5 & 6 and said obviously figure 6 is better and I would have gotten the point.
    Instead I had to read a bunch of text and timing charts before he simply showed what his improvement was. Yes, cache oblivious is worse, but that wasn't the problem Knuth was trying to solve. You could make further arguments that the paging system should group links by location AND popularity. You could move more popular links to the top of the tree so you don't have to traverse past the first page to find them. Also, I would think different applications would have different potential improvements. Algorithms for hosting links to news articles (where newer articles are more popular) might not work well with this algorithm when every newly inserted link ends up at the bottom of the tree.
    On the flip side, most people don't care. Unless you have many servers, it is cheaper to throw money at the problem in the form of physical RAM before you start thinking about problems like this.
  • Re:Nope, he didn't (Score:3, Interesting)

    by Darinbob ( 1142669 ) on Monday June 14, 2010 @08:56PM (#32573482)
    Much of this also depends on the relative size of the data elements compared to sizes of page or cache lines.

    For instance if the b-tree node is roughly the size of a page, the entire node must be read into memory at once from disk. Even reading a single byte of the record may necessitate reading the entire page. However this size will likely be much larger than a cache line. So you could have quite a lot of variance in performance based on how much of the structure you access; say scanning through the whole node versus just reading a few words at the top.
  • Re:Why trust the OS? (Score:2, Interesting)

    by Anonymous Coward on Monday June 14, 2010 @08:58PM (#32573498)

    Why is this funny? Almost all DBMS kernels do it -- they manage physical memory and disk blocks themselves. More to the point, Dr. Kamp is glossing over the fact that one doesn't use in-memory data structures where data my reside on disk.

    In this case, the suitable data structure is any variation of B+Tree, which actually contains children of a node in one memory page and when there is no more room in that page a page split happens. He used the wrong D/S to begin with, concludes Knuth was wrong and finally ends up implementing Knuh's B+Tree.

  • Alas, no more (Score:5, Interesting)

    by l00sr ( 266426 ) on Monday June 14, 2010 @09:48PM (#32573818)

    Unfortunately, he no longer gives out reward checks [wikipedia.org] for finding bugs in his texts. This seems to be mostly because proud bug-finders inevitably post images of the checks online, which of course, contain Knuth's bank account numbers. More discussion here [stanford.edu].

  • That's not quite right.

    He uses email; his secretary prints them out (after some selection) and forwards them. And he reacts to them. Well, at least, to some, if he knows you. Don is the most humble genius that I know, and I have always found him approachable in a way that is rare for other famous people.

    He also uses email (typically via his secretary, again) to organize trips. I also have direct emails from him when some new TeX developments irks him.

  • Re:Agreed (Score:3, Interesting)

    by jonadab ( 583620 ) on Tuesday June 15, 2010 @11:34AM (#32579040) Homepage Journal
    I think "got it wrong" in the past tense is a little harsh, but I would say that a LOT of stuff in Knuth is wrong today, or at least terribly obsolete. It's not useless to be aware of, but you don't want to assume that everything is today still exactly the way Knuth described it in the digital stone age.

    I mean, just for example, Knuth spends whole chapters talking about sorting algorithms. Almost all modern programmers don't have any use for that stuff, because re-implementing sort in your application code is pointless and counterproductive. The built-in sort provided by any modern language is optimized at a lower level and will handily beat the pants off anything you can do. Heck, even the Schwartzian Transform is built in to most modern languages these days.

    Okay, sure, the guys who build low-level tools (compilers and system libraries and such) still need to know about sorting routines. What percentage of the programmer population is that? 0.1%? And even there, Knuth is somewhat obsolete, because (among other things) the stuff you're sorting is almost certainly stored in high-level cross-platform data structures, not some flat array of machine integers. I mean, it's still true that you probably don't want to code a bubble sort, but that's not exactly a profound revelation.
  • by Anonymous Coward on Tuesday June 15, 2010 @02:06PM (#32581292)

    See this:

    http://en.wikipedia.org/wiki/Binary_heap [wikipedia.org]

    "It's not a very useful heap if it has the middle value at the top." - by rakslice (90330) on Tuesday June 15, @01:09PM (#32580468) Homepage

    See that URL at the top, because what's noted in this article is NOT a "std. heap", but instead, a BINARY heap... & it IS built up from a BINARY TREE structure!

    Additionally, those ARE basically constructed in the manner I noted doing comparisons of each "potential parent node" to it's "potential children node(s)" beneath it, usually using "Greater than" or "Less than" type comparisons & putting items to the left & right of said "potential parent node(s)". IN fact, see this from that same URL on BINARY HEAPS:

    http://en.wikipedia.org/wiki/Binary_heap [wikipedia.org]

    "The heap property: each node is greater than or equal to each of its children according to some comparison predicate which is fixed for the entire data structure."

    (Just like a Binary Tree is constructed & as I noted in my orig. post)

    The "pertinent quote" from said Wiki is this:

    http://en.wikipedia.org/wiki/Binary_heap [wikipedia.org]

    A binary heap is a heap data structure created using a binary tree.

    (And, what do BINARY trees need? A pivot, like many sorts do, and that is usually the "mid-most value", because "binary search patterns", depend on that...)

    Hence, why I noted to use my "puny trick" IF NEEDED (not always needed, as for instance in DB work, rowcounts in datasets ARE available), to find said PIVOT midpoint value IF you do not know the total # of elements in your dataset beforehand (or, if it changes, such as values being eliminated during say, deduplications of elements/records of said dataset & say, DB style indexing + reindexing is NOT in place in your app)...

    APK

    P.S.=> However, I did state "correct me if I am 'off'" in my first post, so "have @ it" guys (as rakslice has attempted to do, but, he used a std. heap NOT what this article's about in BINARY heaps usage)!

    (Here? I am PRETTY SURE I am correct, but, I can stand new ideas & corrections as much as the next guy can @ times & though I have worked with Binary Trees more than a few times? Binary Heaps I have not, so... keep those "critiques" coming if you wish!)

    So again: "have @ it" with the critiques, especially in material of this nature & the fact I have not "visited it" in QUITE SOME TIME (it's the FUN stuff imo!)... apk

Genetics explains why you look like your father, and if you don't, why you should.

Working...