-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #481 from tulumvinh/3.x
1. Optional incremental backup parallization 2. Updated Bintray API key from master
- Loading branch information
Showing
19 changed files
with
900 additions
and
207 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
priam/src/main/java/com/netflix/priam/backup/IIncrementalBackup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.netflix.priam.backup; | ||
|
||
import com.netflix.priam.scheduler.TaskTimer; | ||
|
||
public interface IIncrementalBackup { | ||
|
||
public static long INCREMENTAL_INTERVAL_IN_MILLISECS = 10L * 1000; | ||
|
||
/* | ||
* @return the number of files pending to be uploaded. The semantic depends on whether the implementation | ||
* is synchronous or asynchronous. | ||
*/ | ||
public long getNumPendingFiles(); | ||
|
||
public String getJobName(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.