okayzed
okayzed
the main problem with your approach is if auto digest is initiated, otherwise i think it is fine (but you can use a flag to disable auto digest)
you don't need to write to disk before sending to sybil, you are able to stream over stdin to the sybil proc (as per the standard unix process model) in...
~~After looking at the amount of effort it takes to write a golang wrapper, I think it's kind of painful to write a wrapper (but still doable). I would recommend...
at first, i was wondering how -race will help with global state, but now i realize that the test runner will be running simultaneous query, ingest and digest tests which...
need to add support for weighted values to the sketch, but preliminary timings show that the DDSketch is not much slower than the default naive histogram. accuracy at the min...
https://rcoh.me/posts/hash-map-analysis/ https://groups.google.com/forum/m/#!topic/golang-nuts/o7ABs3i8lHM
i wish that golang had overloaded operators, then it would be much easier to swap in a replacement hash map.
I want to say this is due to my ignorance of how to use hdrhistogram. (When I use min=0, the test passes, but as min approaches max/2, the buckets start...
``` --- FAIL: TestTimeStamps (0.00s) hdr_test.go:408: Median was 2147483647, but expected 1476583605 +/- 1.476583e+06 FAIL exit status 1 FAIL github.com/codahale/hdrhistogram 0.184s ```
was the behavior fixed? this issue is from 4 years ago, i decided not to use hdrhistogram-go at the time because of this fault (among other things). the added test...