Github user mateiz commented on a diff in the pull request:
https://github.com/apache/spark/pull/158#discussion_r11006872
--- Diff:
core/src/test/scala/org/apache/spark/storage/BlockManagerSuite.scala ---
@@ -410,6 +410,24 @@ class BlockManagerSuite extends FunSuite with
BeforeAndAfter with PrivateMethodT
assert(store.memoryStore.contains(rdd(0, 3)), "rdd_0_3 was not in
store")
}
+ test("tachyon storage") {
+ val tachyonUnitTestEnabled =
conf.getBoolean("spark.test.tachyon.enable", false)
+ if (tachyonUnitTestEnabled) {
--- End diff --
HY, is there are reason why these are not on by default? And if so, is
there a way we can turn them on (e.g. some code in Tachyon to launch a mock
version for tests)? It would be nice to test this regularly as part of the
build, otherwise it's a lot of new code.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---