From 0d962736afee53e934b98ca25059d0a19ada0198 Mon Sep 17 00:00:00 2001 From: Nicholas Nezis Date: Wed, 6 Jan 2021 19:40:52 +0000 Subject: [PATCH] Removing the Kryo version from the tuning document --- docs/tuning.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tuning.md b/docs/tuning.md index 632497a64da32..e91bb30499f22 100644 --- a/docs/tuning.md +++ b/docs/tuning.md @@ -50,7 +50,7 @@ in your operations) and performance. It provides two serialization libraries: Java serialization is flexible but often quite slow, and leads to large serialized formats for many classes. * [Kryo serialization](https://github.com/EsotericSoftware/kryo): Spark can also use - the Kryo library (version 5) to serialize objects more quickly. Kryo is significantly + the Kryo library to serialize objects more quickly. Kryo is significantly faster and more compact than Java serialization (often as much as 10x), but does not support all `Serializable` types and requires you to *register* the classes you'll use in the program in advance for best performance.