Fabian Groffen

Results 267 comments of Fabian Groffen

I started on it, got it mostly done, except that it doesn't work yet :) You're right that zlib will be best, but at the cost of CPU. Compression rates...

Yeah, I think there's no way around this, I need to drop the compatibility as it will not be able to work reliably this way without enveloping/framing to ensure the...

This sounds like a bug, log messages migh give relevant info here. Regarding using a separate channel for statistics, it would be easier perhaps to get them inserted at the...

Hey, in short, yes, this is intended behaviour. I quickly looked to see if SIGHUP can do it, but it won't. Your best way to do it is either restart...

Problem with a date in the name is that I need to check on every write whether I have to open a new file, which isn't that efficient. It's much...

What do you mean with drops are invisible when stalls happen? Does the graphite metric itself not include the drops in the counter? If the relay were to log about...

stalling per definition means it's not dropping (because it tries to avoid doing that)

yeah, but it returns, so it doesn't drop (for it doesn't enqueue)

if, the number of stalls > MAX_STALLS: then it is a drop, and counted as such. else, it counts as stall and the code returns

IOW: server stall once -> ok server stall twice -> ok server stall thrice -> drop! (unblock client)