Re: kernel.org mirroring (Re: [GIT PULL] MMC update)
From: Rogan Dawes <hidden>
Date: 2016-08-11 20:32:58
Jakub Narebski wrote:
Dnia piątek 8. grudnia 2006 13:57, Rogan Dawes napisał:
quoted
How about extending gitweb to check to see if there already exists a cached version of these pages, before recreating them? e.g. structure the temp dir in such a way that each project has a place for cached pages. Then, before performing expensive operations, check to see if a file corresponding to the requested page already exists. If it does, simply return the contents of the file, otherwise go ahead and create the page dynamically, and return it to the user. Do not create cached pages in gitweb dynamically.This would add the need for directory for temporary files... well, it would be optional now...
It would still be optional. If the "cache" directory structure exists, then use it, otherwise, continue as usual. All it would cost is a stat() or two, I guess.
quoted
Then, in a post-update hook, for each of the expensive pages, invoke something like: # delete the cached copy of the file, to force gitweb to recreate it rm -f $git_temp/$project/rss # get gitweb to recreate the page appropriately # use a tmp file to prevent gitweb from getting confused wget -O $git_temp/$project/rss.tmp \ http://kernel.org/gitweb.cgi?p=$project;a=rss # move the tmp file into place mv $git_temp/$project/rss.tmp $git_temp/$project/rssGood idea... although there are some page views which shouldn't change at all... well, with the possible exception of changes in gitweb output, and even then there are some (blob_plain and snapshot views) which doesn't change at all. It would be good to avoid removing them on push, and only remove them using some tmpwatch-like removal.
Well, my theory was that we would only cache pages that change when new data enters the repo. So, using the push as the trigger is almost guaranteed to be the right thing to do. New data indicates new rss items, indicates an updated shortlog page, etc. NOTE: This caching could be problematic for the "changed 2 hours ago" notation for various branches/files, etc. But however we implement the caching, we'd have this problem.
quoted
This way, we get the exact output returned from the usual gitweb invocation, but we can now cache the result, and only update it when there is a new commit that would affect the page output. This would also not affect those who do not wish to use this mechanism. If the file does not exist, gitweb.cgi will simply revert to its usual behaviour.Good idea. Perhaps I should add it to gitweb TODO file. Hmmm... perhaps it is time for next "[RFC] gitweb wishlist and TODO list" thread?quoted
Possible complications are the content-type headers, etc, but you could use the -s flag to wget, and store the server headers as well in the file, and get the necessary headers from the file as you stream it. i.e. read the headers looking for ones that are "interesting" (Content-Type, charset, expires) until you get a blank line, print out the interesting headers using $cgi->header(), then just dump the remainder of the file to the caller via stdout.No need for that. $cgi->header() is to _generate_ the headers, so if a file is saved with headers, we can just dump it to STDOUT; the possible exception is a need to rewrite 'expires' header, if it is used.
Good point. I guess one thing that will be incorrect in the headers is the server date, but I doubt that anyone cares much. As you say, though, this might relate to the expiry of cached content in upstream caches.
Perhaps gitweb should generate it's own ETag instead of messing with 'expires' header?
Well, we can possibly eliminate the expires header entirely for dynamic pages, and check the If-Modified-Since value against the timestamp of the cached file, or the server date in the cached file, and return "304 Not Modified" responses. That would also help to reduce the load on the server, by only returning the headers, and not the entire response. The downside is that it would prevent upstream proxies from caching this data for us. Regards,