Repository: spark
Updated Branches:
  refs/heads/master 3ce58cf9c -> 1115e8e73


[SPARK-5831][Streaming]When checkpoint file size is bigger than 10, then delete 
the old ones

Author: Xutingjun <1039320...@qq.com>

Closes #4621 from XuTingjun/checkpointFile and squashes the following commits:

b5f2816 [Xutingjun] fix bug


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/1115e8e7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/1115e8e7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/1115e8e7

Branch: refs/heads/master
Commit: 1115e8e739ec4d60604cd79bd452770f041510d4
Parents: 3ce58cf
Author: Xutingjun <1039320...@qq.com>
Authored: Mon Feb 16 14:54:23 2015 +0000
Committer: Sean Owen <so...@cloudera.com>
Committed: Mon Feb 16 14:54:23 2015 +0000

----------------------------------------------------------------------
 .../src/main/scala/org/apache/spark/streaming/Checkpoint.scala     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/1115e8e7/streaming/src/main/scala/org/apache/spark/streaming/Checkpoint.scala
----------------------------------------------------------------------
diff --git 
a/streaming/src/main/scala/org/apache/spark/streaming/Checkpoint.scala 
b/streaming/src/main/scala/org/apache/spark/streaming/Checkpoint.scala
index b780282..f88a8a0 100644
--- a/streaming/src/main/scala/org/apache/spark/streaming/Checkpoint.scala
+++ b/streaming/src/main/scala/org/apache/spark/streaming/Checkpoint.scala
@@ -152,7 +152,7 @@ class CheckpointWriter(
 
           // Delete old checkpoint files
           val allCheckpointFiles = 
Checkpoint.getCheckpointFiles(checkpointDir, fs)
-          if (allCheckpointFiles.size > 4) {
+          if (allCheckpointFiles.size > 10) {
             allCheckpointFiles.take(allCheckpointFiles.size - 10).foreach(file 
=> {
               logInfo("Deleting " + file)
               fs.delete(file, true)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to