Jonathan Nieder <jrnieder@xxxxxxxxx> wrote: > Eric Wong wrote: > > Jonathan Nieder <jrnieder@xxxxxxxxx> wrote: > >> Jeff King wrote: > > >>> I guess I just wonder if I set up a mirror on another domain, would > >>> anybody actually _use_ it? I'd think most people would just go to > >>> public-inbox.org as the de facto URL. > >> > >> If it's faster than public-inbox.org and you don't mind the traffic I > >> would send, then I'll use it. :) > > > > Is performance a problem on public-inbox.org for you? > > It's pretty fast. I'm just very, very picky about latency. ;-) Best way for good latency is to have a local mirror, but I guess Googlers still aren't allowed to run AGPL software? > It's good to know you're interested in which corner cases are bad. > The next time I have a noticeably slow page load, I'll contact meta@. Alright. It could also be a general datacenter/networking problem so https://status.linode.com/ (my VPS provider) is worth checking. > [...] > > I've also been sorta considering downgrading to a $5/month VPS > > (from a $20/month VPS) to force myself to pay more attention to > > performance while saving myself a few bucks. But I wouldn't get > > to dogfood on SMP, anymore... > > Sounds reasonable to me. If performance gets bad, that's just a > reason for people to help out (either with patches or e.g. with > donated VMs for hosting). > Speaking of the latter: what are your current resource requirements? Not too much; but could always be better on the software side. > E.g. which of the dimensions in [1] do you not fit into? > [1] https://cloud.google.com/free/docs/always-free-usage-limits#compute_name Dunno, I'm not seeing RAM, there. Depending on traffic, it's around 200MB per-public-inbox-httpd worker (2 workers for 2 cores) when there's a traffic surge on from popular sites. Memory usage is the biggest disappointment and only happens when Varnish can't read fast enough. Everything in the PSGI code is is streamed if possible(*). My goal is to maintain <50MB per worker process, but it could be tough in Perl5. Anyways $20/month gets me 4GB RAM (so I have way more than I need). CPU usage isn't even noticeable (only bursts) and I do other stuff on that server all the time. HDDs wouldn't work well at all and I've noticed differences based on SSD quality with Xapian. Storage for Xapian+SQLite is 4-5x what's in git, so for this list, it's under 7G total (but more will be needed for Xapian reindexing/compact and git repacking). (*) Individual messages for returning giant mboxes and threads are all lazily fleshed out from skeleton data structures as the client socket becomes writable (and quickly discarded after writing). Technically it's all compatible with any PSGI server, but all the streaming stuff is tailored to run on public-inbox-httpd. But there's also git-http-backend memory use which comes in bursts (bitmaps enabled, of course)