aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReynold Xin <rxin@apache.org>2014-01-15 16:09:03 -0800
committerReynold Xin <rxin@apache.org>2014-01-15 16:09:03 -0800
commit0675ca50f3d66afaa12ea2ec4159930f101413d5 (patch)
tree0209cd36762003a1b47f050669a441649b4005ff /docs
parent4f0c361b0e140f5f6879f019b2e1a16c683c705c (diff)
parent263933da97d5e877999ce282f3e52457ae2d9377 (diff)
downloadspark-0675ca50f3d66afaa12ea2ec4159930f101413d5.tar.gz
spark-0675ca50f3d66afaa12ea2ec4159930f101413d5.tar.bz2
spark-0675ca50f3d66afaa12ea2ec4159930f101413d5.zip
Merge pull request #439 from CrazyJvm/master
SPARK-1024 Remove "-XX:+UseCompressedStrings" option from tuning guide remove "-XX:+UseCompressedStrings" option from tuning guide since jdk7 no longer supports this.
Diffstat (limited to 'docs')
-rw-r--r--docs/tuning.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/tuning.md b/docs/tuning.md
index bbb870085c..6b010aed61 100644
--- a/docs/tuning.md
+++ b/docs/tuning.md
@@ -119,8 +119,7 @@ pointer-based data structures and wrapper objects. There are several ways to do
2. Avoid nested structures with a lot of small objects and pointers when possible.
3. Consider using numeric IDs or enumeration objects instead of strings for keys.
4. If you have less than 32 GB of RAM, set the JVM flag `-XX:+UseCompressedOops` to make pointers be
- four bytes instead of eight. Also, on Java 7 or later, try `-XX:+UseCompressedStrings` to store
- ASCII strings as just 8 bits per character. You can add these options in
+ four bytes instead of eight. You can add these options in
[`spark-env.sh`](configuration.html#environment-variables-in-spark-envsh).
## Serialized RDD Storage