Skip to content

Commit c26bd93

Browse files
authored
Upgrade parquet to 1.10.1-palantir.3 (apache-spark-on-k8s#404)
1 parent 8650174 commit c26bd93

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

dev/deps/spark-deps-hadoop-palantir

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,12 +167,12 @@ orc-shims-1.5.2.jar
167167
oro-2.0.8.jar
168168
osgi-resource-locator-1.0.1.jar
169169
paranamer-2.8.jar
170-
parquet-column-1.10.1-palantir.1.jar
171-
parquet-common-1.10.1-palantir.1.jar
172-
parquet-encoding-1.10.1-palantir.1.jar
170+
parquet-column-1.10.1-palantir.3.jar
171+
parquet-common-1.10.1-palantir.3.jar
172+
parquet-encoding-1.10.1-palantir.3.jar
173173
parquet-format-2.4.0.jar
174-
parquet-hadoop-1.10.1-palantir.1.jar
175-
parquet-jackson-1.10.1-palantir.1.jar
174+
parquet-hadoop-1.10.1-palantir.3.jar
175+
parquet-jackson-1.10.1-palantir.3.jar
176176
protobuf-java-2.5.0.jar
177177
py4j-0.10.7.jar
178178
pyrolite-4.13.jar

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
<!-- Version used for internal directory structure -->
132132
<hive.version.short>1.2.1</hive.version.short>
133133
<derby.version>10.12.1.1</derby.version>
134-
<parquet.version>1.10.1-palantir.1</parquet.version>
134+
<parquet.version>1.10.1-palantir.3</parquet.version>
135135
<feign.version>8.18.0</feign.version>
136136
<okhttp3.version>3.9.1</okhttp3.version>
137137
<okhttp.version>2.7.5</okhttp.version>

python/pyspark/ml/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2756,6 +2756,6 @@ def testDefaultFitMultiple(self):
27562756
from pyspark.ml.tests import *
27572757

27582758
runner = unishark.BufferedTestRunner(
2759-
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.ml/{}'.format(
2759+
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.ml_{}'.format(
27602760
os.path.basename(os.environ.get("PYSPARK_PYTHON", ""))))])
27612761
unittest.main(testRunner=runner, verbosity=2)

python/pyspark/mllib/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1780,7 +1780,7 @@ def test_fpgrowth(self):
17801780
if not _have_scipy:
17811781
print("NOTE: Skipping SciPy tests as it does not seem to be installed")
17821782
runner = unishark.BufferedTestRunner(
1783-
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.mllib/{}'.format(
1783+
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.mllib_{}'.format(
17841784
os.path.basename(os.environ.get("PYSPARK_PYTHON", ""))))])
17851785
unittest.main(testRunner=runner, verbosity=2)
17861786
if not _have_scipy:

python/pyspark/sql/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6496,6 +6496,6 @@ def test_invalid_args(self):
64966496
from pyspark.sql.tests import *
64976497

64986498
runner = unishark.BufferedTestRunner(
6499-
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.sql/{}'.format(
6499+
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.sql_{}'.format(
65006500
os.path.basename(os.environ.get("PYSPARK_PYTHON", ""))))])
65016501
unittest.main(testRunner=runner, verbosity=2)

python/pyspark/streaming/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ def search_kinesis_asl_assembly_jar():
16271627
tests = unittest.TestLoader().loadTestsFromTestCase(testcase)
16281628
runner = unishark.BufferedTestRunner(
16291629
verbosity=2,
1630-
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.streaming/{}'.format(
1630+
reporters=[unishark.XUnitReporter('target/test-reports/pyspark.streaming_{}'.format(
16311631
os.path.basename(os.environ.get("PYSPARK_PYTHON", ""))))])
16321632

16331633
result = runner.run(tests)

python/pyspark/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2510,6 +2510,6 @@ def test_statcounter_array(self):
25102510
if __name__ == "__main__":
25112511
from pyspark.tests import *
25122512
runner = unishark.BufferedTestRunner(
2513-
reporters=[unishark.XUnitReporter('target/test-reports/pyspark/{}'.format(
2513+
reporters=[unishark.XUnitReporter('target/test-reports/pyspark_{}'.format(
25142514
os.path.basename(os.environ.get("PYSPARK_PYTHON", ""))))])
25152515
unittest.main(testRunner=runner, verbosity=2)

0 commit comments

Comments
 (0)