Houston Putman
Houston Putman
Unfortunately Kubernetes does not currently support resizing of PVCs that are managed by StatefulSets. There are a few KEP and KEP PRs that will hopefully enable this in the future...
Gradle supports custom archive naming through [`project.archivesBaseName`](https://docs.gradle.org/current/dsl/org.gradle.api.Project.html#org.gradle.api.Project:archivesBaseName), however this plugin using `project.name` as the only option of naming the maven component created for each project. Therefore projects that use `project.archivesBaseName`...
The failure of "Expanding PVCs" in KinD clusters was first documented in #1716 . And at that time the Local Storage Provisioner "did not support volume expansion". However, shortly after...
Resolves #13760 ### Description This is using a similar approach to how Solr used to compute multiple percentiles at a single time. Basically utilize the quick select method, but instead...
Resolves #13918 ### Description This introduces a `multiSelect(from, to, k[])` method on the `Selector` abstract class, and gives implementations of the method for both `Selector` implementations, `IntroSelector` and `RadixSelector`. This...
### Description Currently in `ScalarQuantizer`, `ScalarQuantizer.fromVectorsAutoInterval()` will issue 4 calls (per to scratch-batch, basically `len(vector)/20`) `Selector.select()` and `ScalarQuantizer.fromVectors()` will issue 2 calls. All of these 4/2 calls use the same...
https://issues.apache.org/jira/browse/SOLR-17792 This is a WIP but we really should be able to get rid of the synchronization and make this logic so much simpler. Here I'm making `responseFutureMap` a ConcurrentMap,...
Currently, `TestTolerantSearch.testAllShardsFail` fails with the following: ``` com.carrotsearch.randomizedtesting.UncaughtExceptionError: Captured an uncaught exception in thread: Thread[id=312, name=httpShardExecutor-171-thread-3, state=RUNNABLE, group=TGRP-TestTolerantSearch] at __randomizedtesting.SeedInfo.seed([E82DD9D830F6392B:772D812CE6F65EDC]:0) Caused by: java.util.concurrent.CancellationException at __randomizedtesting.SeedInfo.seed([E82DD9D830F6392B]:0) at java.base/java.util.concurrent.CompletableFuture.cancel(CompletableFuture.java:2510) at org.apache.solr.client.solrj.impl.LBHttp2SolrClient.lambda$requestAsync$0(LBHttp2SolrClient.java:190) at...
https://issues.apache.org/jira/browse/SOLR-17776 The http1 check should work like the rest of the custom option checks, and only fail if the user has explicitly set it to something (other than what the...
https://issues.apache.org/jira/browse/SOLR-16391 We might be able to move this else if statement entirely, if all cores APIs are handled by JaxRS, but I may be wrong about that. It's just a...