-
Notifications
You must be signed in to change notification settings - Fork 528
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging incremental-checkpoint-feature branch to master #821
Conversation
…feature Incremental checkpoint feature
…to incremental-checkpoint-feature
…and improve state management
…se case that was failing
…t-feature # Conflicts: # docs/api/latest.md
@@ -0,0 +1,40 @@ | |||
/* | |||
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix Licence year
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 889e5cb
|
||
SiddhiManager siddhiManager = new SiddhiManager(); | ||
|
||
// PersistenceStore persistenceStore = new org.wso2.siddhi.core.util.persistence.FileSystemPersistenceStore(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove commented out code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 889e5cb
* The class which encloses multiple snapshot states. | ||
*/ | ||
public class SnapshotStateList implements Serializable { | ||
private TreeMap<Long, SnapshotState> snapshotStates = new TreeMap<>(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't we need a serialVersionUUID?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like it's not needed here as the find bugs plugin did not complain on this.
Purpose
Adding incremental checkpointing API to Siddhi
Goals
Introducing incremental checkpointing functionality to state persistence. Please refer #820
Release note
Introducing incremental checkpointing functionality to state persistence
Related PRs
#695