-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement Offline-To-Bootstrap state transition in StorageManager (#1326
) This changes integrates replica state transition logic with regular server startup. For new added replica, state transition should perform some bootstrap work. For existing replicas, regular startup is not affected.
- Loading branch information
1 parent
75d2971
commit 4bf702f
Showing
25 changed files
with
982 additions
and
547 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
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.