Re: Question about threads

2008-06-24 Thread Per Buer
Erik Torlen skrev: Im running 32bit. But I think that I have succeded creating more then 238 threads before on another system with the same setup. Anyway, 64bit might be the thing to have... Maybe the init script should issue a warning that a 32bit arch is only usable as a test enviroment.

Re: Waiting list?

2008-08-18 Thread Per Buer
Jon Drukman skrev: 92 Debugc on waiting list on obj 1629712739 0 StatAddr 64.81.61.44 0 nan 16 16 0 0 3 5483 637585 That's it. After the waiting list message the request just hangs indefinitely. You might want to have a look at session 1629712739 - earlier in the

Re: varnish inside openvz: memory usage issue

2008-08-28 Thread Per Buer
Isaac Grant skrev: (..) I (think I) understand the varnish's design, but should varnish eat ALL the memory like that ? Varnish uses the VM to differentiate between what's cached in memory and what is put on disk. If the VM doesn't have any other use for the memory it will give it to varnish.

Re: Ip Address

2008-09-02 Thread Per Buer
Jack Tuhman skrev: We have a very old webapp that has an embedded server. We have put varnish in front of it to help with load while we rewrite it. However, it is detecting the IP address of the varnish box rather then the client. I know that in apache, we can fix this by looking at

Re: Varnish cache lost after restarted

2008-09-28 Thread Per Buer
engine is more or less planned for 2.1. -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se/ signature.asc Description: OpenPGP digital signature ___ varnish-misc

Re: Blades

2008-10-03 Thread Per Buer
Andre Galvani skrev: Hello, someone has had experience running varnish on blades(DELL HW for example)? Yes. We run a lot of Varnish on blades. Runs smoothly. :-) -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http

Re: Filtering by specific cookie

2008-10-19 Thread Per Buer
, or even better, a way to check this that doesn't involve regular expressions? in vcl_revc you can do stuff like: if (req.http.cookie ~ foo.*bar|bar.*foo) { lookup; } -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no

Re: Guru Meditation error

2008-10-22 Thread Per Buer
if you're still having trouble. -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se/ signature.asc Description: OpenPGP digital signature ___ varnish-misc mailing list

Re: Guru Meditation error

2008-10-24 Thread Per Buer
the website hasn't been used overnight. Our network guys say it is an application problem as the application needs to send keep alives. Thanks Mhairi -Original Message- From: Per Buer [mailto:[EMAIL PROTECTED] Sent: Wednesday, 22 October 2008 9:03 PM To: Mhairi Marshall

Re: TCP_HIT header

2008-11-05 Thread Per Buer
that contains that information (MISS or HIT). Is there more documentation on the variables available than what is in vcl(7)? Or anywhere else for that matter. Thanks, Alecs On Wed, Nov 5, 2008 at 3:10 PM, Per Buer [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Alecs Henry skrev

Re: Using req/obj.grace to serve stale objects when backend fails

2008-11-08 Thread Per Buer
Hi Jeff. Jeff Anderson skrev: I've experimented with req/obj.grace set to a few hours so a site can be served even if the backend fails. For example, with the backend down and when req/obj.grace is set to several hours I can open a new browser and get a 503 if I try to open a known

Re: varnish2.0.2 on Suse 10.3

2008-12-01 Thread Per Buer
to be a recurring issue on OpenSUSE. There have been earlier reports on the same issue. -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se/ signature.asc Description: OpenPGP digital signature

Re: Varnish performance tests

2008-12-08 Thread Per Buer
slower then varnish. -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se/ ___ varnish-misc mailing list varnish-misc@projects.linpro.no http://projects.linpro.no

Re: Example VCL for backend check

2008-12-11 Thread Per Buer
; } { .backend = web2; .weight = 200; } } -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se/ signature.asc Description: OpenPGP digital signature

Re: What to do when the backend sends no caching information?

2008-12-12 Thread Per Buer
Hi, Alecs Henry wrote: Well, turns out varnish may be setting the ttl all right (I do it in vcl_fetch, but frankly there really is no way to see if it is set correctly or not! or is there?) but the page always gets a PASS, never a HIT. Age: is set to 0 by varnish. The client probably sends

Re: Example VCL for backend check

2008-12-15 Thread Per Buer
vcl_recv { if (req.http.host ~ ^(www.)?mysite.com http://mysite.com$) { set req.backend = director; } } On Thu, Dec 11, 2008 at 6:03 PM, Per Buer pe...@linpro.no mailto:pe...@linpro.no wrote: Hi Alex, Alex Davies wrote: I'm figuring that I need something like # web1 backend

Re: 2.1 plans

2009-01-08 Thread Per Buer
___ varnish-misc mailing list varnish-misc@projects.linpro.no http://projects.linpro.no/mailman/listinfo/varnish-misc -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958 39 117 http://linpro.no/ | http://redpill.se

Re: flushing cache doesn't seem to make varnish know about less

2009-01-12 Thread Per Buer
evicted from cache. HTTP PURGE or TTL timeout are the only ways to actually drop a page from cache, except restarting of course. how do i make this thing forget? I guess the easiest would be a restart. -- Per Buer - Leder Infrastruktur og Drift - Redpill Linpro Telefon: 21 54 41 21 - Mobil: 958

Varnish Software

2010-02-09 Thread Per Buer
Hi list. Redpill-Linpro  (RL) has been the main sponsor of Varnish for the last three years. RL is a services company, generating most (probably over 95%) of its revenue on selling services and products in its local Scandinavian market. Developing a product for a global market takes a different 

Re: Varnish CLI user feedback, please.

2010-02-24 Thread Per Buer
On Wed, Feb 24, 2010 at 7:37 PM, Poul-Henning Kamp p...@phk.freebsd.dkwrote: I'm looking at the CLI/varnishadm stuff right now, and would like some feedback from you guys... Right now (in -trunk) we have these possible CLI configurations: A) no CLI at all. Probably useful for a

varnish-cache.org is moving

2010-02-25 Thread Per Buer
Hi. We'll be moving varnish-cache.org on monday march the first around 11:00 CET. The site will be unavailable for about 5 minutes while we move it. We'll be getting a newer trac version but other than that there should be no user-noticable changes. At some point we will also move the mailing

Re: Still running out of workspaces ? (sess_workspace=551077)

2010-03-04 Thread Per Buer
On Thu, Mar 4, 2010 at 3:57 AM, Simon Males s...@sime.net.au wrote: I don't really know how to interpret this, but I see references to esi and session. ESI is used heavily and sess_workspace is 551077. I know of people running with a session workspace of ~5M. And yes, this really needs to be