aboutsummaryrefslogtreecommitdiff
path: root/docs/java-programming-guide.md
diff options
context:
space:
mode:
authorhaitao.yao <yao.erix@gmail.com>2013-01-24 10:27:02 +0800
committerhaitao.yao <yao.erix@gmail.com>2013-01-24 10:27:02 +0800
commit97e242067b9d75abd88543c759d8fc0aebd9eb8c (patch)
tree550ebeecf7d7edc0b2825561db0e5c835eb16512 /docs/java-programming-guide.md
parentdf9ae8a74e2d42f627a82f9b0a8123a4d54b1d09 (diff)
parent548856a22403f6a76d67570db6fa448b2a0e5ad3 (diff)
downloadspark-97e242067b9d75abd88543c759d8fc0aebd9eb8c.tar.gz
spark-97e242067b9d75abd88543c759d8fc0aebd9eb8c.tar.bz2
spark-97e242067b9d75abd88543c759d8fc0aebd9eb8c.zip
Merge branch 'mesos'
Diffstat (limited to 'docs/java-programming-guide.md')
-rw-r--r--docs/java-programming-guide.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/java-programming-guide.md b/docs/java-programming-guide.md
index 188ca4995e..37a906ea1c 100644
--- a/docs/java-programming-guide.md
+++ b/docs/java-programming-guide.md
@@ -75,7 +75,8 @@ class has a single abstract method, `call()`, that must be implemented.
## Storage Levels
RDD [storage level](scala-programming-guide.html#rdd-persistence) constants, such as `MEMORY_AND_DISK`, are
-declared in the [spark.api.java.StorageLevels](api/core/index.html#spark.api.java.StorageLevels) class.
+declared in the [spark.api.java.StorageLevels](api/core/index.html#spark.api.java.StorageLevels) class. To
+define your own storage level, you can use StorageLevels.create(...).
# Other Features