Skip to content

Commit

Permalink
TEZ-4399: ShuffleHandler fails with SSLHandshakeException not found w…
Browse files Browse the repository at this point in the history
…hen SSL is enabled (#196) (Himanshu Mishra reviewed by Laszlo Bodor)
  • Loading branch information
himanshu-mishra authored and abstractdog committed Apr 1, 2022
1 parent 75f753e commit 519e31b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void run() {
try {
URL baseURL = TezRuntimeUtils.constructBaseURIForShuffleHandlerDagComplete(
nodeId.getHost(), shufflePort,
dag.getApplicationId().toString(), dag.getId(), false);
dag.getApplicationId().toString(), dag.getId(), httpConnectionParams.isSslShuffle());
httpConnection = TezRuntimeUtils.getHttpConnection(true, baseURL, httpConnectionParams,
"DAGDelete", jobTokenSecretManager);
httpConnection.connect();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void run() {
URL baseURL = TezRuntimeUtils.constructBaseURIForShuffleHandlerTaskAttemptFailed(
nodeId.getHost(), shufflePort, taskAttemptID.getTaskID().getVertexID().getDAGId().
getApplicationId().toString(), taskAttemptID.getTaskID().getVertexID().getDAGId().getId(),
taskAttemptID.toString(), false);
taskAttemptID.toString(), httpConnectionParams.isSslShuffle());
httpConnection = TezRuntimeUtils.getHttpConnection(true, baseURL, httpConnectionParams,
"FailedTaskAttemptDelete", jobTokenSecretManager);
httpConnection.connect();
Expand Down
1 change: 1 addition & 0 deletions tez-plugins/tez-aux-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@
<shadedPattern>org.apache.tez.shaded.$0</shadedPattern>
<excludes>
<exclude>javax.crypto.*</exclude>
<exclude>javax.net.**</exclude>
</excludes>
</relocation>
</relocations>
Expand Down

0 comments on commit 519e31b

Please sign in to comment.