diff --git a/assembly/pom.xml b/assembly/pom.xml index 5f5cdfbab518..ffac7597967c 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/common/kvstore/pom.xml b/common/kvstore/pom.xml index c9fcd0b14317..8dc4710fb0b7 100644 --- a/common/kvstore/pom.xml +++ b/common/kvstore/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/network-common/pom.xml b/common/network-common/pom.xml index 1a8db2da0604..b8baf3536420 100644 --- a/common/network-common/pom.xml +++ b/common/network-common/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/network-shuffle/pom.xml b/common/network-shuffle/pom.xml index c5de085e309e..e21d3840a864 100644 --- a/common/network-shuffle/pom.xml +++ b/common/network-shuffle/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/network-yarn/pom.xml b/common/network-yarn/pom.xml index 14f3303b81da..4d089b9024ae 100644 --- a/common/network-yarn/pom.xml +++ b/common/network-yarn/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/sketch/pom.xml b/common/sketch/pom.xml index 3b1e80ca1e04..ab18f0379f39 100644 --- a/common/sketch/pom.xml +++ b/common/sketch/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/tags/pom.xml b/common/tags/pom.xml index a924ad31826b..2c6d2445df9d 100644 --- a/common/tags/pom.xml +++ b/common/tags/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/common/unsafe/pom.xml b/common/unsafe/pom.xml index bc42b0f1396a..bb2ed9d3cbcd 100644 --- a/common/unsafe/pom.xml +++ b/common/unsafe/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/core/pom.xml b/core/pom.xml index 0c86f7fa2d4b..886c1187ecac 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/core/src/main/resources/org/apache/spark/ui/static/executorspage-template.html b/core/src/main/resources/org/apache/spark/ui/static/executorspage-template.mustache similarity index 100% rename from core/src/main/resources/org/apache/spark/ui/static/executorspage-template.html rename to core/src/main/resources/org/apache/spark/ui/static/executorspage-template.mustache diff --git a/core/src/main/resources/org/apache/spark/ui/static/historypage-template.html b/core/src/main/resources/org/apache/spark/ui/static/historypage-template.mustache similarity index 100% rename from core/src/main/resources/org/apache/spark/ui/static/historypage-template.html rename to core/src/main/resources/org/apache/spark/ui/static/historypage-template.mustache diff --git a/core/src/main/resources/org/apache/spark/ui/static/historypage.js b/core/src/main/resources/org/apache/spark/ui/static/historypage.js index b334bceb5a03..26ce783e90e8 100644 --- a/core/src/main/resources/org/apache/spark/ui/static/historypage.js +++ b/core/src/main/resources/org/apache/spark/ui/static/historypage.js @@ -166,7 +166,7 @@ $(document).ready(function() { "showCompletedColumns": !requestedIncomplete, }; - $.get(uiRoot + "/static/historypage-template.html", function(template) { + $.get(uiRoot + "/static/historypage-template.mustache", function(template) { var sibling = historySummary.prev(); historySummary.detach(); var apps = $(Mustache.render($(template).filter("#history-summary-template").html(),data)); diff --git a/core/src/main/resources/org/apache/spark/ui/static/stagespage-template.html b/core/src/main/resources/org/apache/spark/ui/static/stagespage-template.mustache similarity index 100% rename from core/src/main/resources/org/apache/spark/ui/static/stagespage-template.html rename to core/src/main/resources/org/apache/spark/ui/static/stagespage-template.mustache diff --git a/core/src/main/resources/org/apache/spark/ui/static/utils.js b/core/src/main/resources/org/apache/spark/ui/static/utils.js index 1bec1c174df5..5832b78f042c 100644 --- a/core/src/main/resources/org/apache/spark/ui/static/utils.js +++ b/core/src/main/resources/org/apache/spark/ui/static/utils.js @@ -152,15 +152,15 @@ function createTemplateURI(appId, templateName) { var ind = words.indexOf("proxy"); var baseURI; if (ind > 0) { - baseURI = words.slice(0, ind + 1).join('/') + '/' + appId + '/static/' + templateName + '-template.html'; + baseURI = words.slice(0, ind + 1).join('/') + '/' + appId + '/static/' + templateName + '-template.mustache'; return baseURI; } ind = words.indexOf("history"); if(ind > 0) { - baseURI = words.slice(0, ind).join('/') + '/static/' + templateName + '-template.html'; + baseURI = words.slice(0, ind).join('/') + '/static/' + templateName + '-template.mustache'; return baseURI; } - return uiRoot + "/static/" + templateName + "-template.html"; + return uiRoot + "/static/" + templateName + "-template.mustache"; } function setDataTableDefaults() { diff --git a/core/src/main/scala/org/apache/spark/util/VersionUtils.scala b/core/src/main/scala/org/apache/spark/util/VersionUtils.scala index b9eb1c5ae73a..b403912a37f9 100644 --- a/core/src/main/scala/org/apache/spark/util/VersionUtils.scala +++ b/core/src/main/scala/org/apache/spark/util/VersionUtils.scala @@ -30,7 +30,8 @@ private[spark] object VersionUtils { /** * Whether the Hadoop version used by Spark is 3.3.x - * If using Hadoop < 3.3.x, lz4 codec tests will fail as detailed here https://github.com/apache/spark/pull/34064 + * If using Hadoop < 3.3.x, lz4 codec tests will fail as detailed here + * https://github.com/apache/spark/pull/34064 */ def isHadoop3: Boolean = majorMinorVersion(VersionInfo.getVersion) == (3, 3) diff --git a/examples/pom.xml b/examples/pom.xml index 5cf28b63c49a..c96dcd143a8c 100644 --- a/examples/pom.xml +++ b/examples/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/external/avro/pom.xml b/external/avro/pom.xml index af8a6444882e..e7fbbee86f21 100644 --- a/external/avro/pom.xml +++ b/external/avro/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/docker-integration-tests/pom.xml b/external/docker-integration-tests/pom.xml index d247b17d68b6..1f7c808f652d 100644 --- a/external/docker-integration-tests/pom.xml +++ b/external/docker-integration-tests/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kafka-0-10-assembly/pom.xml b/external/kafka-0-10-assembly/pom.xml index 440906603223..da6673db1e91 100644 --- a/external/kafka-0-10-assembly/pom.xml +++ b/external/kafka-0-10-assembly/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kafka-0-10-sql/pom.xml b/external/kafka-0-10-sql/pom.xml index 753a78c9f428..7c3d2f57f810 100644 --- a/external/kafka-0-10-sql/pom.xml +++ b/external/kafka-0-10-sql/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kafka-0-10-token-provider/pom.xml b/external/kafka-0-10-token-provider/pom.xml index 262f761258f1..134344e9ce37 100644 --- a/external/kafka-0-10-token-provider/pom.xml +++ b/external/kafka-0-10-token-provider/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kafka-0-10/pom.xml b/external/kafka-0-10/pom.xml index 6bde0f7781c2..f81b1f090089 100644 --- a/external/kafka-0-10/pom.xml +++ b/external/kafka-0-10/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kinesis-asl-assembly/pom.xml b/external/kinesis-asl-assembly/pom.xml index 539f5c44af0c..894222ef9113 100644 --- a/external/kinesis-asl-assembly/pom.xml +++ b/external/kinesis-asl-assembly/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/kinesis-asl/pom.xml b/external/kinesis-asl/pom.xml index 00c0ed769cbd..c08582c029e3 100644 --- a/external/kinesis-asl/pom.xml +++ b/external/kinesis-asl/pom.xml @@ -20,7 +20,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/external/spark-ganglia-lgpl/pom.xml b/external/spark-ganglia-lgpl/pom.xml index 1c2dbdde9ac6..e2f8f580d61a 100644 --- a/external/spark-ganglia-lgpl/pom.xml +++ b/external/spark-ganglia-lgpl/pom.xml @@ -20,7 +20,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../../pom.xml diff --git a/graphx/pom.xml b/graphx/pom.xml index 77410f12c97b..5d78c0aacc2e 100644 --- a/graphx/pom.xml +++ b/graphx/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/hadoop-cloud/pom.xml b/hadoop-cloud/pom.xml index 6b54bb396213..759cdb5dcb3c 100644 --- a/hadoop-cloud/pom.xml +++ b/hadoop-cloud/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/launcher/pom.xml b/launcher/pom.xml index e779c9f434be..ee50035f119e 100644 --- a/launcher/pom.xml +++ b/launcher/pom.xml @@ -22,7 +22,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/mllib-local/pom.xml b/mllib-local/pom.xml index 787b88366983..2bf814ee8331 100644 --- a/mllib-local/pom.xml +++ b/mllib-local/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/mllib/pom.xml b/mllib/pom.xml index 911af82c11b4..51fa0560ea9a 100644 --- a/mllib/pom.xml +++ b/mllib/pom.xml @@ -21,7 +21,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 ../pom.xml diff --git a/pom.xml b/pom.xml index 4afd3d77db79..d618713cc74d 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ org.apache.spark spark-parent_2.12 - 3.2.4-1.0 + 3.2.4-2.0 pom Spark Project Parent POM http://spark.apache.org/ @@ -3305,7 +3305,7 @@ hadoop-3.1 - 3.1.1-0.0 + 3.1.1-0.2 2.12.0