aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortedyu <yuzhihong@gmail.com>2015-05-25 08:20:31 +0100
committerSean Owen <sowen@cloudera.com>2015-05-25 08:20:31 +0100
commitfd31fd49763f7c60b47078c5c2d4b515c123d883 (patch)
tree2158f39054fd0207ae7edcf99ebb5fae0f1cdc45
parent23bea97d922fbd131d9eb9531906a68459346720 (diff)
downloadspark-fd31fd49763f7c60b47078c5c2d4b515c123d883.tar.gz
spark-fd31fd49763f7c60b47078c5c2d4b515c123d883.tar.bz2
spark-fd31fd49763f7c60b47078c5c2d4b515c123d883.zip
Add test which shows Kryo buffer size configured in mb is properly supported
This PR adds test which shows that Kryo buffer size configured in mb is supported properly Author: tedyu <yuzhihong@gmail.com> Closes #6390 from tedyu/master and squashes the following commits: c51ea64 [tedyu] Fix KryoSerializer creation f12ee04 [tedyu] Correct conf variable name in test 642de51 [tedyu] Drop change in KryoSerializer so that the new test runs d2fdbc4 [tedyu] Give bufferSizeKb initial value 9a17277 [tedyu] Rewrite bufferSize checking 4739998 [tedyu] Rewrite bufferSize checking 830d0d0 [tedyu] Kryo buffer size configured in mb should be properly supported
-rw-r--r--core/src/test/scala/org/apache/spark/serializer/KryoSerializerSuite.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/scala/org/apache/spark/serializer/KryoSerializerSuite.scala b/core/src/test/scala/org/apache/spark/serializer/KryoSerializerSuite.scala
index 0bd91a8dba..5faf108b39 100644
--- a/core/src/test/scala/org/apache/spark/serializer/KryoSerializerSuite.scala
+++ b/core/src/test/scala/org/apache/spark/serializer/KryoSerializerSuite.scala
@@ -62,6 +62,10 @@ class KryoSerializerSuite extends FunSuite with SharedSparkContext {
val thrown3 = intercept[IllegalArgumentException](new KryoSerializer(conf4).newInstance())
assert(thrown3.getMessage.contains(kryoBufferProperty))
assert(!thrown3.getMessage.contains(kryoBufferMaxProperty))
+ val conf5 = conf.clone()
+ conf5.set(kryoBufferProperty, "8m")
+ conf5.set(kryoBufferMaxProperty, "9m")
+ new KryoSerializer(conf5).newInstance()
}
test("basic types") {