We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19191ba + 8f9e746 commit 68ebe65Copy full SHA for 68ebe65
core/src/test/scala/org/locationtech/rasterframes/TestEnvironment.scala
@@ -50,7 +50,8 @@ trait TestEnvironment extends FunSpec
50
outputDir
51
}
52
53
- def sparkMaster: String = "local[*]"
+ // allow 2 retries, should stabilize CI builds. https://spark.apache.org/docs/2.4.7/submitting-applications.html#master-urls
54
+ def sparkMaster: String = "local[*, 2]"
55
56
def additionalConf = new SparkConf(false)
57
pyrasterframes/src/main/python/tests/__init__.py
@@ -61,6 +61,7 @@ def pdir(curr):
61
62
def spark_test_session():
63
spark = create_rf_spark_session(**{
64
+ 'spark.master': 'local[*, 2]',
65
'spark.ui.enabled': 'false',
66
'spark.app.name': app_name
67
})
0 commit comments