-
Notifications
You must be signed in to change notification settings - Fork 275
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
Implement Offline-To-Bootstrap state transition in StorageManager #1326
Merged
lightningrob
merged 4 commits into
linkedin:master
from
jsjtzyy:startup-state-transition
Dec 5, 2019
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
45 changes: 45 additions & 0 deletions
45
ambry-api/src/main/java/com.github.ambry/clustermap/StateModelListenerType.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,45 @@ | ||
/** | ||
* Copyright 2019 LinkedIn Corp. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
*/ | ||
package com.github.ambry.clustermap; | ||
|
||
/** | ||
* The type of partition state model listener. | ||
* The state model listeners implement {@link com.github.ambry.clustermap.PartitionStateChangeListener} in different | ||
* components (i.e. StorageManager, ReplicationManager etc) and take actions when state transition occurs. | ||
*/ | ||
public enum StateModelListenerType { | ||
/** | ||
* The partition state change listener owned by storage manager. It invokes some store operations when partition state | ||
* transition occurs. For example, when new replica transits from OFFLINE to BOOTSTRAP, storage manager instantiates | ||
* blob store associated with this replica and adds it into disk manager and compaction manager. | ||
*/ | ||
StorageManagerListener, | ||
/** | ||
* The partition state change listener owned by replication manager. It performs some replica operations in response to | ||
* partition state transition. For example, when new replica transits from BOOTSTRAP to STANDBY, replication manager | ||
* keeps checking replication lag of this replica and ensures it catches up with its peer replicas. | ||
*/ | ||
ReplicationManagerListener, | ||
/** | ||
* The partition state change listener owned by stats manager. It takes actions when new replica is added (OFFLINE -> | ||
* BOOTSTRAP) or old replica is removed (INACTIVE -> OFFLINE) | ||
*/ | ||
StatsManagerListener, | ||
/** | ||
* The partition state change listener owned by cloud-to-store replication manager. It takes actions when replica | ||
* leadership hand-off occurs. For example, if any replica becomes LEADER from STANDBY, it is supposed to replicate | ||
* data from VCR nodes. This is part of two-way replication between Ambry and cloud. | ||
*/ | ||
CloudToStoreReplicationManagerListener | ||
} |
43 changes: 43 additions & 0 deletions
43
ambry-api/src/main/java/com.github.ambry/clustermap/StateTransitionException.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,43 @@ | ||
/** | ||
* Copyright 2019 LinkedIn Corp. All rights reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
*/ | ||
package com.github.ambry.clustermap; | ||
|
||
public class StateTransitionException extends RuntimeException { | ||
private static final long serialVersionUID = 1L; | ||
private final TransitionErrorCode error; | ||
|
||
public StateTransitionException(String s, TransitionErrorCode error) { | ||
super(s); | ||
this.error = error; | ||
} | ||
|
||
public TransitionErrorCode getErrorCode() { | ||
return error; | ||
} | ||
|
||
public enum TransitionErrorCode { | ||
/** | ||
* If replica is not present in Helix and not found on current node. | ||
*/ | ||
ReplicaNotFound, | ||
/** | ||
* If failure occurs during store operation (i.e. store addition/removal in StoreManager). | ||
*/ | ||
StoreOperationFailure, | ||
/** | ||
* If store is not started and unavailable for specific operations. | ||
*/ | ||
StoreNotStarted | ||
} | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
maybe we can replace this by
if(partitionstateChangeListeners.containsKey(StateModelListenerType.CloudToStoreReplicationManagerListener) {
partitionStateChangeListeners.get(StateModelListenerType.CloudToStoreReplicationManagerListener).onPartitionBecomeStandbyFromLeader(partitionName)
}
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.
Appreciate your suggestion but I feel like it loses a little bit of readability. What do you think?