aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorrotems <roter>2015-12-04 16:58:31 -0800
committerMarcelo Vanzin <vanzin@cloudera.com>2015-12-04 16:58:34 -0800
commitf30373f5ee60f9892c28771e34b208e4f1f675a6 (patch)
tree383e6745fa9a9e078f9ba736a83c135b6ced1adf /docs/configuration.md
parentbbfc16ec9d690c2dfa20896bd6d33f9783b9c109 (diff)
downloadspark-f30373f5ee60f9892c28771e34b208e4f1f675a6.tar.gz
spark-f30373f5ee60f9892c28771e34b208e4f1f675a6.tar.bz2
spark-f30373f5ee60f9892c28771e34b208e4f1f675a6.zip
[SPARK-12080][CORE] Kryo - Support multiple user registrators
Author: rotems <roter> Closes #10078 from Botnaim/KryoMultipleCustomRegistrators.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index c39b489085..fd61ddc244 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -647,10 +647,10 @@ Apart from these, the following properties are also available, and may be useful
<td><code>spark.kryo.registrator</code></td>
<td>(none)</td>
<td>
- If you use Kryo serialization, set this class to register your custom classes with Kryo. This
+ If you use Kryo serialization, give a comma-separated list of classes that register your custom classes with Kryo. This
property is useful if you need to register your classes in a custom way, e.g. to specify a custom
field serializer. Otherwise <code>spark.kryo.classesToRegister</code> is simpler. It should be
- set to a class that extends
+ set to classes that extend
<a href="api/scala/index.html#org.apache.spark.serializer.KryoRegistrator">
<code>KryoRegistrator</code></a>.
See the <a href="tuning.html#data-serialization">tuning guide</a> for more details.