KDC performance test - lookaside cache impact, testing framework

Greg Hudson ghudson at MIT.EDU
Thu Apr 5 17:52:04 EDT 2012


On 04/05/2012 05:03 PM, Tom Yu wrote:
> Various developers have suspected that the lookaside cache can be a
> performance bottleneck under some circumstances.  Your tests would
> seem to confirm that.  It would be useful to do experiments to
> discover if there are ever any cases where the lookaside cache
> actually helps performance.

Probably not with its current design.  If a KDC gets loaded enough that
it starts taking longer than a second to process requests, clients will
start retransmitting requests.  A lookaside cache could avoid the cost
of processing the retransmitted requests, saving several DB lookups and
cryptographic operations.

However, the current lookaside cache is a linked list.  If the KDC is
loaded enough to take almost a full second to answer a request, there
are likely to be hundreds or thousands of entries in the cache.
Searching a linked list of that size will probably take longer than
processing a request--and, of course, that cost is paid for every
request, not just the retransmits.

It would be a fairly simple matter to make a hash table for the
lookaside cache, which should reduce its cost to much less than the cost
of processing a request, making it potentially worthwhile.


More information about the krbdev mailing list