Derrick Burns
Derrick Burns
`objectSummaries` is a Stream to avoid the latency and memory of downloading all the summaries synchronously. This is useful when buckets contain a large number of objects.
The namespace issue that i mentioned was fixed in a newer version of the plugin.
``` # install helm3 see https://helm.sh/docs/intro/install/ # then install 2to3 plugin helm plugin install https://github.com/helm/helm-2to3 ``` @mcfearsome I had success with this script after installing helm3 and the `2to3` plugin:...
@mcfearsome Note: If you are using flux to update flux itself, i.e. you have the flux manifests checked into your configuration repo, you need to remove them before deploying your...
@jseiser I was specifically referring to the challenge in migrating *any* service from a non-helm install to a helm-install. One of the problems with helm3 is that it sometimes will...
I ported your new merging t-digest to C++. https://github.com/derrickburns/tdigest
The code is fully contained in the header file. Derrick On May 7, 2017, 6:25 PM -0700, Ted Dunning , wrote: > Cool. > > I don't see the main...
Here is my 2 cents. Your implementation makes sense in Java because objects are boxed and objects are garbage collected. However, there is no boxing in C++, so there is...
The only performance improvement that I think may be necessary for production use of the C++ code is to factor out the summing of the weights from the read side...
I'll look at the license issues tomorrow. Thx. As for the serialization, it sounds like avro or thrift may be the way to go. Avro support in C++ is OK,...