Todd Lipcon

Results 16 comments of Todd Lipcon

FWIW I ended up implementing this using existing public glog APIs, in case anyone's interested in borrowing the code for their projects (or for distribution as part of glog) https://github.com/apache/kudu/blob/master/src/kudu/util/async_logger.h...

I didn't do throughput benchmarks, but the async logging solved a lot of blocking issues that we saw before where critical parts of our code would get "stuck" for several...

I'm having a similar issue even with just 'getargs' implying a result dependency. For example: ``` from time import time def task_a(): def _task(): return dict(t=time()) return dict(actions=[_task], uptodate=[False]) def...

The difficulty here is that system calls are often called by inline assembly 'int 0x80' so the LD_PRELOAD interception isn't sufficient. Probably need to use ptrace, or otherwise require the...

I put some hacky code here: https://gist.github.com/toddlipcon/761fa7f8bd9e91f8a8dd though not getting very good results on my actual application. Hints would be great.

I got a chance to look at this again today (thanks for pinging this issue). Looking at the profile results, it looks like coz is just picking the same experiment...

I just noticed that if I don't pass '-s %%/src/kudu/%%' I end up getting a lot better spreading to experiments on other files. Maybe something is wrong with the way...

I think something like this might be correct: ``` select * from ( select fuel_state from diagnostics where fleet = 'West' group by name order by time desc limit 1)...

Uploaded a test script here: https://gist.github.com/bba4850b0a8ba94d37cfa7bf6bbcb8bc I would expect this to return the "Handled" message, but instead it yields a 503.

Maybe? Pull requests accepted ;-)