作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有多个 ScalaTest 类使用 BeforeAndAfterAll
构建一个 SparkContext
然后像这样停止它:
class MyTest extends FlatSpec with Matchers with BeforeAndAfterAll {
private var sc: SparkContext = null
override protected def beforeAll(): Unit = {
sc = ... // Create SparkContext
}
override protected def afterAll(): Unit = {
sc.stop()
}
// my tests follow
}
sbt test
, 我得到
WARN SparkContext: Another SparkContext is being constructed (or threw an exception in its constructor). This may indicate an error, since only one SparkContext may be running in this JVM (see SPARK-2243).
,然后是一堆其他的异常(exception),我想这些异常(exception)都与这个问题有关。
SparkContext
对于整个测试套件,如果是,我该怎么做?
最佳答案
似乎我只见树木不见森林,我忘记了 build.sbt
中的以下行:
parallelExecution in test := false
关于scala - 如何在 ScalaTest 测试中正确使用 Spark?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33237856/
我是一名优秀的程序员,十分优秀!