Skip to content
1 change: 0 additions & 1 deletion solr/licenses/curator-client-4.3.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/curator-client-5.2.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
221dde476d45c328da9a08e0671edc4ee654ccb4
1 change: 0 additions & 1 deletion solr/licenses/curator-framework-4.3.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/curator-framework-5.2.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dffcfb521d99b9b7515f7b6041badac62910075e
1 change: 0 additions & 1 deletion solr/licenses/curator-recipes-4.3.0.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/curator-recipes-5.2.0.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
477c28fdc25eb5d59759d8e931be191f11068f4a
1 change: 0 additions & 1 deletion solr/licenses/hadoop-annotations-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-annotations-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
451bc97f7519017cfa96c8f11d79e1e8027968b2
1 change: 0 additions & 1 deletion solr/licenses/hadoop-auth-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-auth-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
066aaf67a580910de62f92f21f76e3df170483cf
1 change: 0 additions & 1 deletion solr/licenses/hadoop-client-api-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-client-api-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
12ac6f103a0ff29fce17a078c7c64d25320b6165
1 change: 0 additions & 1 deletion solr/licenses/hadoop-client-minicluster-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-client-minicluster-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1d7be37c806e6703ea672d0e5e47fd43ea721acc
1 change: 0 additions & 1 deletion solr/licenses/hadoop-client-runtime-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-client-runtime-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
81065531e63fccbe85fb04a3274709593fb00d3c
1 change: 0 additions & 1 deletion solr/licenses/hadoop-common-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-common-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
09ca864bec94779e74b99e84ea02dba85a641233
1 change: 0 additions & 1 deletion solr/licenses/hadoop-hdfs-3.3.5-tests.jar.sha1

This file was deleted.

1 change: 0 additions & 1 deletion solr/licenses/hadoop-hdfs-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-hdfs-3.3.6-tests.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5058b645375c6a68f509e167ad6a6ada9642df09
1 change: 1 addition & 0 deletions solr/licenses/hadoop-hdfs-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ba40aca60f39599d5b1f1d32b35295bfde1f3c8b
1 change: 0 additions & 1 deletion solr/licenses/hadoop-minikdc-3.3.5.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions solr/licenses/hadoop-minikdc-3.3.6.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7f454a44beea61f42f37b414c0d73decbe61de32
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.concurrent.ExecutorService;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
Expand All @@ -41,6 +42,8 @@
import org.apache.solr.common.cloud.SolrZkClient;
import org.apache.solr.common.cloud.ZkACLProvider;
import org.apache.solr.common.cloud.ZkCredentialsProvider;
import org.apache.solr.common.util.ExecutorUtil;
import org.apache.solr.common.util.SolrNamedThreadFactory;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.data.ACL;
Expand All @@ -51,6 +54,7 @@
* reuse the authentication of an end-user or another application.
*/
public class DelegationTokenKerberosFilter extends DelegationTokenAuthenticationFilter {
private ExecutorService curatorSafeServiceExecutor;
private CuratorFramework curatorFramework;

@Override
Expand Down Expand Up @@ -123,8 +127,14 @@ public void doFilter(ServletRequest servletRequest, ServletResponse servletRespo
@Override
public void destroy() {
super.destroy();
if (curatorFramework != null) curatorFramework.close();
curatorFramework = null;
if (curatorFramework != null) {
curatorFramework.close();
curatorFramework = null;
}
if (curatorSafeServiceExecutor != null) {
ExecutorUtil.shutdownNowAndAwaitTermination(curatorSafeServiceExecutor);
curatorSafeServiceExecutor = null;
}
}

@Override
Expand Down Expand Up @@ -167,6 +177,9 @@ protected CuratorFramework getCuratorClient(SolrZkClient zkClient)
// ignore?
}

curatorSafeServiceExecutor =
ExecutorUtil.newMDCAwareSingleThreadExecutor(
new SolrNamedThreadFactory("delegationtokenkerberosfilter-curator-safeService"));
curatorFramework =
CuratorFrameworkFactory.builder()
.namespace(zkNamespace)
Expand All @@ -176,6 +189,7 @@ protected CuratorFramework getCuratorClient(SolrZkClient zkClient)
.authorization(curatorToSolrZk.getAuthInfos())
.sessionTimeoutMs(zkClient.getZkClientTimeout())
.connectionTimeoutMs(connectionTimeoutMs)
.runSafeService(curatorSafeServiceExecutor)
.build();
curatorFramework.start();
return curatorFramework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
Expand All @@ -39,6 +40,8 @@
import org.apache.solr.common.cloud.SolrZkClient;
import org.apache.solr.common.cloud.ZkACLProvider;
import org.apache.solr.common.cloud.ZkCredentialsProvider;
import org.apache.solr.common.util.ExecutorUtil;
import org.apache.solr.common.util.SolrNamedThreadFactory;
import org.apache.zookeeper.CreateMode;
import org.apache.zookeeper.KeeperException;
import org.apache.zookeeper.data.ACL;
Expand All @@ -53,6 +56,7 @@ public class HadoopAuthFilter extends DelegationTokenAuthenticationFilter {
*/
static final String DELEGATION_TOKEN_ZK_CLIENT = "solr.kerberos.delegation.token.zk.client";

private ExecutorService curatorSafeServiceExecutor;
private CuratorFramework curatorFramework;

@Override
Expand Down Expand Up @@ -104,8 +108,12 @@ public void destroy() {
super.destroy();
if (curatorFramework != null) {
curatorFramework.close();
curatorFramework = null;
}
if (curatorSafeServiceExecutor != null) {
ExecutorUtil.shutdownNowAndAwaitTermination(curatorSafeServiceExecutor);
curatorSafeServiceExecutor = null;
}
curatorFramework = null;
}

@Override
Expand Down Expand Up @@ -151,6 +159,9 @@ protected CuratorFramework getCuratorClient(SolrZkClient zkClient)
}
}

curatorSafeServiceExecutor =
ExecutorUtil.newMDCAwareSingleThreadExecutor(
new SolrNamedThreadFactory("hadoopauthfilter-curator-safeService"));
curatorFramework =
CuratorFrameworkFactory.builder()
.namespace(zkNamespace)
Expand All @@ -160,6 +171,7 @@ protected CuratorFramework getCuratorClient(SolrZkClient zkClient)
.authorization(curatorToSolrZk.getAuthInfos())
.sessionTimeoutMs(zkClient.getZkClientTimeout())
.connectionTimeoutMs(connectionTimeoutMs)
.runSafeService(curatorSafeServiceExecutor)
.build();
curatorFramework.start();
return curatorFramework;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public MiniSolrCloudCluster(
}

final ExecutorService executorLauncher =
ExecutorUtil.newMDCAwareCachedThreadPool(new SolrNamedThreadFactory("jetty-launcher"));
ExecutorUtil.newMDCAwareSingleThreadExecutor(new SolrNamedThreadFactory("jetty-launcher"));
Collection<Future<JettySolrRunner>> futures = executorLauncher.invokeAll(startups);
ExecutorUtil.shutdownAndAwaitTermination(executorLauncher);
Exception startupError = checkForExceptions("Error starting up MiniSolrCloudCluster", futures);
Expand Down
24 changes: 12 additions & 12 deletions versions.lock
Original file line number Diff line number Diff line change
Expand Up @@ -177,14 +177,14 @@ org.apache.commons:commons-exec:1.3 (2 constraints: a41056b8)
org.apache.commons:commons-lang3:3.13.0 (5 constraints: 9c3eb936)
org.apache.commons:commons-math3:3.6.1 (5 constraints: 57322799)
org.apache.commons:commons-text:1.10.0 (1 constraints: d911adf8)
org.apache.curator:curator-client:4.3.0 (2 constraints: e214cba2)
org.apache.curator:curator-framework:4.3.0 (2 constraints: ff13b474)
org.apache.curator:curator-recipes:4.3.0 (1 constraints: 09050836)
org.apache.hadoop:hadoop-annotations:3.3.5 (1 constraints: 0d050836)
org.apache.hadoop:hadoop-auth:3.3.5 (1 constraints: 0d050836)
org.apache.hadoop:hadoop-client-api:3.3.5 (3 constraints: 22287160)
org.apache.hadoop:hadoop-client-runtime:3.3.5 (2 constraints: 6d17a643)
org.apache.hadoop:hadoop-common:3.3.5 (1 constraints: 0d050836)
org.apache.curator:curator-client:5.2.0 (2 constraints: e214cfa2)
org.apache.curator:curator-framework:5.2.0 (2 constraints: ff13b874)
org.apache.curator:curator-recipes:5.2.0 (1 constraints: 09050a36)
org.apache.hadoop:hadoop-annotations:3.3.6 (1 constraints: 0e050936)
org.apache.hadoop:hadoop-auth:3.3.6 (1 constraints: 0e050936)
org.apache.hadoop:hadoop-client-api:3.3.6 (3 constraints: 25280861)
org.apache.hadoop:hadoop-client-runtime:3.3.6 (2 constraints: 6f17dc43)
org.apache.hadoop:hadoop-common:3.3.6 (1 constraints: 0e050936)
org.apache.hadoop.thirdparty:hadoop-shaded-guava:1.1.1 (1 constraints: 0505f435)
org.apache.httpcomponents:httpclient:4.5.14 (9 constraints: 62806342)
org.apache.httpcomponents:httpcore:4.4.16 (8 constraints: 256d4617)
Expand Down Expand Up @@ -256,7 +256,7 @@ org.apache.tika:tika-core:1.28.5 (2 constraints: d8118f11)
org.apache.tika:tika-parsers:1.28.5 (1 constraints: 42054a3b)
org.apache.tomcat:annotations-api:6.0.53 (1 constraints: 40054e3b)
org.apache.xmlbeans:xmlbeans:5.0.3 (2 constraints: 72173075)
org.apache.zookeeper:zookeeper:3.9.0 (2 constraints: a0134e5f)
org.apache.zookeeper:zookeeper:3.9.0 (2 constraints: 9d134d5f)
org.apache.zookeeper:zookeeper-jute:3.9.0 (2 constraints: 99125f23)
org.apiguardian:apiguardian-api:1.1.2 (2 constraints: 601bd5a8)
org.bitbucket.b_c:jose4j:0.9.3 (1 constraints: 0e050936)
Expand Down Expand Up @@ -410,9 +410,9 @@ net.bytebuddy:byte-buddy:1.14.6 (1 constraints: 460b44de)
net.minidev:accessors-smart:2.4.9 (1 constraints: 500a92b8)
net.minidev:json-smart:2.4.10 (1 constraints: 400e9a7c)
no.nav.security:mock-oauth2-server:0.5.10 (1 constraints: 3805333b)
org.apache.hadoop:hadoop-client-minicluster:3.3.5 (1 constraints: 0d050836)
org.apache.hadoop:hadoop-hdfs:3.3.5 (1 constraints: 0d050836)
org.apache.hadoop:hadoop-minikdc:3.3.5 (1 constraints: 0d050836)
org.apache.hadoop:hadoop-client-minicluster:3.3.6 (1 constraints: 0e050936)
org.apache.hadoop:hadoop-hdfs:3.3.6 (1 constraints: 0e050936)
org.apache.hadoop:hadoop-minikdc:3.3.6 (1 constraints: 0e050936)
org.apache.kerby:kerb-admin:1.0.1 (1 constraints: 840d892f)
org.apache.kerby:kerb-client:1.0.1 (1 constraints: 840d892f)
org.apache.kerby:kerb-common:1.0.1 (2 constraints: a51841ca)
Expand Down
4 changes: 2 additions & 2 deletions versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ org.apache.commons:commons-configuration2=2.9.0
org.apache.commons:commons-exec=1.3
org.apache.commons:commons-lang3=3.13.0
org.apache.commons:commons-math3=3.6.1
org.apache.curator:*=4.3.0
org.apache.curator:*=5.2.0
org.apache.hadoop.thirdparty:*=1.1.1
org.apache.hadoop:*=3.3.5
org.apache.hadoop:*=3.3.6
org.apache.httpcomponents:httpclient=4.5.14
org.apache.httpcomponents:httpcore=4.4.16
org.apache.httpcomponents:httpmime=4.5.14
Expand Down