HADOOP-17324. Don't relocate org.bouncycastle in shaded client jars (#2411)
Contributed by Chao Sun.
This commit is contained in:
parent
4331c88352
commit
2522bf2f9b
@ -143,6 +143,8 @@
|
|||||||
<exclude>org/w3c/dom/**/*</exclude>
|
<exclude>org/w3c/dom/**/*</exclude>
|
||||||
<exclude>org/xml/sax/*</exclude>
|
<exclude>org/xml/sax/*</exclude>
|
||||||
<exclude>org/xml/sax/**/*</exclude>
|
<exclude>org/xml/sax/**/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/**/*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</relocation>
|
</relocation>
|
||||||
<relocation>
|
<relocation>
|
||||||
|
@ -43,6 +43,8 @@ allowed_expr+="|^org/apache/hadoop/"
|
|||||||
allowed_expr+="|^META-INF/"
|
allowed_expr+="|^META-INF/"
|
||||||
# * whatever under the "webapps" directory; for things shipped by yarn
|
# * whatever under the "webapps" directory; for things shipped by yarn
|
||||||
allowed_expr+="|^webapps/"
|
allowed_expr+="|^webapps/"
|
||||||
|
# * Resources files used by Hadoop YARN mini cluster
|
||||||
|
allowed_expr+="|^TERMINAL/"
|
||||||
# * Hadoop's default configuration files, which have the form
|
# * Hadoop's default configuration files, which have the form
|
||||||
# "_module_-default.xml"
|
# "_module_-default.xml"
|
||||||
allowed_expr+="|^[^-]*-default.xml$"
|
allowed_expr+="|^[^-]*-default.xml$"
|
||||||
@ -54,6 +56,8 @@ allowed_expr+="|^org.apache.hadoop.application-classloader.properties$"
|
|||||||
# * Used by JavaSandboxLinuxContainerRuntime as a default, loaded
|
# * Used by JavaSandboxLinuxContainerRuntime as a default, loaded
|
||||||
# from root, so can't relocate. :(
|
# from root, so can't relocate. :(
|
||||||
allowed_expr+="|^java.policy$"
|
allowed_expr+="|^java.policy$"
|
||||||
|
# * Used by javax.annotation
|
||||||
|
allowed_expr+="|^jndi.properties$"
|
||||||
# * allowing native libraries from rocksdb. Leaving native libraries as it is.
|
# * allowing native libraries from rocksdb. Leaving native libraries as it is.
|
||||||
allowed_expr+="|^librocksdbjni-linux32.so"
|
allowed_expr+="|^librocksdbjni-linux32.so"
|
||||||
allowed_expr+="|^librocksdbjni-linux64.so"
|
allowed_expr+="|^librocksdbjni-linux64.so"
|
||||||
|
@ -75,6 +75,27 @@
|
|||||||
<artifactId>hadoop-client-minicluster</artifactId>
|
<artifactId>hadoop-client-minicluster</artifactId>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcprov-jdk15on</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.bouncycastle</groupId>
|
||||||
|
<artifactId>bcpkix-jdk15on</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.xml.bind</groupId>
|
||||||
|
<artifactId>jaxb-api</artifactId>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.activation</groupId>
|
||||||
|
<artifactId>activation</artifactId>
|
||||||
|
<version>1.1.1</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
import org.apache.hadoop.fs.FSDataInputStream;
|
import org.apache.hadoop.fs.FSDataInputStream;
|
||||||
import org.apache.hadoop.fs.FSDataOutputStream;
|
import org.apache.hadoop.fs.FSDataOutputStream;
|
||||||
import org.apache.hadoop.fs.Path;
|
import org.apache.hadoop.fs.Path;
|
||||||
|
import org.apache.hadoop.io.IOUtils;
|
||||||
|
|
||||||
import org.apache.hadoop.conf.Configuration;
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
|
||||||
@ -43,6 +44,7 @@
|
|||||||
|
|
||||||
import org.apache.hadoop.hdfs.web.WebHdfsTestUtil;
|
import org.apache.hadoop.hdfs.web.WebHdfsTestUtil;
|
||||||
import org.apache.hadoop.hdfs.web.WebHdfsConstants;
|
import org.apache.hadoop.hdfs.web.WebHdfsConstants;
|
||||||
|
import org.apache.hadoop.yarn.server.MiniYARNCluster;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensure that we can perform operations against the shaded minicluster
|
* Ensure that we can perform operations against the shaded minicluster
|
||||||
@ -54,6 +56,7 @@ public class ITUseMiniCluster {
|
|||||||
LoggerFactory.getLogger(ITUseMiniCluster.class);
|
LoggerFactory.getLogger(ITUseMiniCluster.class);
|
||||||
|
|
||||||
private MiniDFSCluster cluster;
|
private MiniDFSCluster cluster;
|
||||||
|
private MiniYARNCluster yarnCluster;
|
||||||
|
|
||||||
private static final String TEST_PATH = "/foo/bar/cats/dee";
|
private static final String TEST_PATH = "/foo/bar/cats/dee";
|
||||||
private static final String FILENAME = "test.file";
|
private static final String FILENAME = "test.file";
|
||||||
@ -73,6 +76,12 @@ public void clusterUp() throws IOException {
|
|||||||
.numDataNodes(3)
|
.numDataNodes(3)
|
||||||
.build();
|
.build();
|
||||||
cluster.waitActive();
|
cluster.waitActive();
|
||||||
|
|
||||||
|
conf.set("yarn.scheduler.capacity.root.queues", "default");
|
||||||
|
conf.setInt("yarn.scheduler.capacity.root.default.capacity", 100);
|
||||||
|
yarnCluster = new MiniYARNCluster(getClass().getName(), 1, 1, 1, 1);
|
||||||
|
yarnCluster.init(conf);
|
||||||
|
yarnCluster.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
@After
|
@After
|
||||||
@ -80,6 +89,7 @@ public void clusterDown() {
|
|||||||
if (cluster != null) {
|
if (cluster != null) {
|
||||||
cluster.close();
|
cluster.close();
|
||||||
}
|
}
|
||||||
|
IOUtils.cleanupWithLogger(LOG, yarnCluster);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -678,10 +678,8 @@
|
|||||||
<exclude>junit:junit</exclude>
|
<exclude>junit:junit</exclude>
|
||||||
<exclude>com.google.code.findbugs:jsr305</exclude>
|
<exclude>com.google.code.findbugs:jsr305</exclude>
|
||||||
<exclude>log4j:log4j</exclude>
|
<exclude>log4j:log4j</exclude>
|
||||||
<exclude>org.eclipse.jetty.websocket:*</exclude>
|
<exclude>org.eclipse.jetty.websocket:websocket-common</exclude>
|
||||||
<exclude>javax.websocket:javax.websocket-api</exclude>
|
<exclude>org.eclipse.jetty.websocket:websocket-api</exclude>
|
||||||
<exclude>javax.annotation:javax.annotation-api</exclude>
|
|
||||||
<exclude>org.eclipse.jetty:jetty-jndi</exclude>
|
|
||||||
<!-- We need a filter that matches just those things that are included in the above artiacts -->
|
<!-- We need a filter that matches just those things that are included in the above artiacts -->
|
||||||
<!-- Leave bouncycastle unshaded because it's signed with a special Oracle certificate so it can be a custom JCE security provider -->
|
<!-- Leave bouncycastle unshaded because it's signed with a special Oracle certificate so it can be a custom JCE security provider -->
|
||||||
<exclude>org.bouncycastle:*</exclude>
|
<exclude>org.bouncycastle:*</exclude>
|
||||||
@ -731,13 +729,6 @@
|
|||||||
<exclude>testdata/*</exclude>
|
<exclude>testdata/*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</filter>
|
</filter>
|
||||||
<!-- Skip terminal html and javascript -->
|
|
||||||
<filter>
|
|
||||||
<artifact>org.apache.hadoop:hadoop-yarn-server-nodemanager:*</artifact>
|
|
||||||
<excludes>
|
|
||||||
<exclude>TERMINAL/**/*</exclude>
|
|
||||||
</excludes>
|
|
||||||
</filter>
|
|
||||||
|
|
||||||
<!-- Mockito tries to include its own unrelocated copy of hamcrest. :( -->
|
<!-- Mockito tries to include its own unrelocated copy of hamcrest. :( -->
|
||||||
<filter>
|
<filter>
|
||||||
@ -784,6 +775,13 @@
|
|||||||
<exclude>about.html</exclude>
|
<exclude>about.html</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</filter>
|
</filter>
|
||||||
|
<filter>
|
||||||
|
<!-- skip jetty license info already incorporated into LICENSE/NOTICE -->
|
||||||
|
<artifact>org.eclipse.jetty.websocket:*</artifact>
|
||||||
|
<excludes>
|
||||||
|
<exclude>about.html</exclude>
|
||||||
|
</excludes>
|
||||||
|
</filter>
|
||||||
<filter>
|
<filter>
|
||||||
<artifact>org.apache.hadoop:*</artifact>
|
<artifact>org.apache.hadoop:*</artifact>
|
||||||
<excludes>
|
<excludes>
|
||||||
@ -881,6 +879,8 @@
|
|||||||
<exclude>org/w3c/dom/**/*</exclude>
|
<exclude>org/w3c/dom/**/*</exclude>
|
||||||
<exclude>org/xml/sax/*</exclude>
|
<exclude>org/xml/sax/*</exclude>
|
||||||
<exclude>org/xml/sax/**/*</exclude>
|
<exclude>org/xml/sax/**/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/**/*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</relocation>
|
</relocation>
|
||||||
<relocation>
|
<relocation>
|
||||||
@ -977,6 +977,13 @@
|
|||||||
<exclude>**/pom.xml</exclude>
|
<exclude>**/pom.xml</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</relocation>
|
</relocation>
|
||||||
|
<relocation>
|
||||||
|
<pattern>javax/annotation/</pattern>
|
||||||
|
<shadedPattern>${shaded.dependency.prefix}.javax.websocket.</shadedPattern>
|
||||||
|
<excludes>
|
||||||
|
<exclude>**/pom.xml</exclude>
|
||||||
|
</excludes>
|
||||||
|
</relocation>
|
||||||
<relocation>
|
<relocation>
|
||||||
<pattern>jersey/</pattern>
|
<pattern>jersey/</pattern>
|
||||||
<shadedPattern>${shaded.dependency.prefix}.jersey.</shadedPattern>
|
<shadedPattern>${shaded.dependency.prefix}.jersey.</shadedPattern>
|
||||||
|
@ -267,6 +267,8 @@
|
|||||||
<exclude>org/w3c/dom/**/*</exclude>
|
<exclude>org/w3c/dom/**/*</exclude>
|
||||||
<exclude>org/xml/sax/*</exclude>
|
<exclude>org/xml/sax/*</exclude>
|
||||||
<exclude>org/xml/sax/**/*</exclude>
|
<exclude>org/xml/sax/**/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/*</exclude>
|
||||||
|
<exclude>org/bouncycastle/**/*</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</relocation>
|
</relocation>
|
||||||
<relocation>
|
<relocation>
|
||||||
|
Loading…
Reference in New Issue
Block a user