Michael Burman

Results 285 comments of Michael Burman

What do you mean with recreate? Since the pods and their lifecycle is managed by the StatefulSet controller, we don't create or delete the Pods themselves. If the pods are...

Well, newest version is always the best choice, but I'm not sure if that would solve the issue as it seems none of our Pod deletion code was triggered. That...

Our default timeout for liveness is 10 seconds, but you can change this. In the PodTemplateSpec, set the livenessProbe.timeoutSeconds in a container to higher value (and same for readiness).

It seems defaults are being used, which is around half of the container memory reserved for the heap. This might be too low for your application if no container resource...

There was input from one user in the cass-operator that this should include all the generated resources and include all the recommended Kubernetes labels also. Of course with some added...

Hey, Mostly I think the library is mature - don't want to touch it too much to not break stuff. However, for your first question, the 5 bit format is...

Yes, you should be able to decompress the original 5 bit format using the Decompressor: ```java ByteBufferBitInput input = new ByteBufferBitInput(byteBuffer); Decompressor d = new Decompressor(input); ``` For float32, it...

I have no idea where my reply went, so I'll try to write again.. > I don't see any equivalent class or setting I could use in the existing library...

This might also be related to the fact that some kind update (well, actually Kubernetes update) modified the required configuration. For example cass-operator uses the newer configuration from https://kind.sigs.k8s.io/docs/user/local-registry/