Pavel Martynov
Pavel Martynov
UPD: the problem was in old mod_sftp on server, my admin update it and all works fine now.
IMHO you should measure how much will slow down contract support and if it really quite a bit - fix `offer()` to return correct value. I want to explain why...
@abramsm I will try to compare perf on my dataset on next week. thanks!
@abramsm I run fixed `offer()` on one of my data sets (~10e6 items) and performance just sliiiightly changed. So I think your fix is production ready and may be merged.
While I am experementing with performance of fixed `offer()` I found a problem: ``` java @Test public void testOfferReturn() { HyperLogLogPlus hll = new HyperLogLogPlus(5, 25); int uniqOffers = 10000;...
@abramsm auh, I see, you are right. I have some additional questions about your HLL++ implementation, will ask it in mail list. Thanks!
Sample code: ``` fsharp let blockAgent = BlockingQueueAgent(3) blockAgent.Add(1) blockAgent.Add(2) blockAgent.Add(3) blockAgent.Add(4) // block expected, but agent take new item to internal inbox ``` Xml doc of Add: > ///...
Hi @marcuslonnberg! I've hit the same issue. My setup: * macOS * Docker Desktop `v4.28.0` * Turned on `Use containerd for pulling and storing images` for multi-platform building as stated...
@garrettsickles I already have applications that use DD UDS, they have written in Java and Python and using [java-dogstatsd-client](https://mvnrepository.com/artifact/com.datadoghq/java-dogstatsd-client/2.6.1) and [datadog](https://pypi.org/project/datadog/0.24.0/) libs. In my `/etc/datadog-agent/datadog.yaml` configuration I have: ``` dogstatsd_socket:...
I used DogFood v2 in my production with UDS and all works fine. Thanks!