Jordan Halterman
Jordan Halterman
Just to add some more context to why this is needed: we’re using dlv to debug a distributed system running inside Kubernetes. Of course, distributed systems frequently rely on timeouts...
I think that would be a fine solution. It’s halting for slow user input that can cause the types of issues I mentioned.
I think you should be able to do this just by passing an empty `AtomixConfig` when creating the builder, e.g.: ```java Atomix atomix = Atomix.builder(new AtomixConfig()) ... .buid(); ``` I...
@coutoPL sorry ignore my first comment and use that one :-)
Awesome! We should leave this open and try to get rid of the usage of those files...
This won't be part of any current milestone since it's an unnecessary code change that introduces risk.
The Copycat client internals have been completely rewritten, but I think we still do need to do some review of that code before a full release to make sure this...
To be clear, the reason one primitive can slow down other primitives when sharing a client is because a read-heavy primitive that uses `SEQUENTIAL` read consistency can block command/query responses...
I have been looking in to the idea a bit more tonight, and I think it could be hugely beneficial for both stability and performance. Essentially, this idea evolved out...
I saw you mentioned `Query`, does this only happen with `Query`? Second question: does the exception bubble up to the `CompletableFuture` returned by `submit`? The reasons I ask these two...