-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-28683 Only allow one TableProcedureInterface for a single table… #6046
Merged
Merged
Changes from all commits
Commits
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
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
117 changes: 117 additions & 0 deletions
117
...er/src/main/java/org/apache/hadoop/hbase/master/procedure/TableProcedureWaitingQueue.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,117 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you 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. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.hadoop.hbase.master.procedure; | ||
|
||
import java.util.ArrayDeque; | ||
import java.util.Optional; | ||
import java.util.Queue; | ||
import java.util.function.Function; | ||
import org.apache.hadoop.hbase.procedure2.Procedure; | ||
import org.apache.yetus.audience.InterfaceAudience; | ||
|
||
import org.apache.hbase.thirdparty.com.google.common.base.Preconditions; | ||
|
||
/** | ||
* To prevent multiple Create/Modify/Disable/Enable table procedures run at the same time, we will | ||
* keep table procedure in this queue first before actually enqueuing it to | ||
* MasterProcedureScheduler's tableQueue. See HBASE-28683 for more details | ||
*/ | ||
@InterfaceAudience.Private | ||
class TableProcedureWaitingQueue { | ||
|
||
private final Function<Long, Procedure<?>> procedureRetriever; | ||
|
||
// whether there is already a table procedure enqueued in ProcedureScheduler. | ||
private Procedure<?> enqueuedProc; | ||
|
||
private final Queue<Procedure<?>> queue = new ArrayDeque<>(); | ||
|
||
TableProcedureWaitingQueue(Function<Long, Procedure<?>> procedureRetriever) { | ||
this.procedureRetriever = procedureRetriever; | ||
} | ||
|
||
private boolean isSubProcedure(Procedure<?> proc) { | ||
while (proc.hasParent()) { | ||
if (proc.getParentProcId() == enqueuedProc.getProcId()) { | ||
return true; | ||
} | ||
proc = Preconditions.checkNotNull(procedureRetriever.apply(proc.getParentProcId()), | ||
"can not find parent procedure pid=%s", proc.getParentProcId()); | ||
} | ||
return false; | ||
} | ||
|
||
/** | ||
* Return whether we can enqueue this procedure to ProcedureScheduler. | ||
* <p> | ||
* If returns {@code true}, you should enqueue this procedure, otherwise you just need to do | ||
* nothing, as we will queue it in the waitingQueue, and you will finally get it again by calling | ||
* {@link #procedureCompleted(Procedure)} method in the future. | ||
*/ | ||
boolean procedureSubmitted(Procedure<?> proc) { | ||
if (enqueuedProc == null) { | ||
// no procedure enqueued yet, record it and return | ||
enqueuedProc = proc; | ||
return true; | ||
} | ||
if (proc == enqueuedProc) { | ||
// the same procedure is enqueued again, this usually because the procedure comes back from | ||
// WAITING state, such as all child procedures are finished | ||
return true; | ||
} | ||
// check whether this is a sub procedure of the enqueued procedure | ||
if (isSubProcedure(proc)) { | ||
return true; | ||
} | ||
queue.add(proc); | ||
return false; | ||
} | ||
|
||
/** | ||
* Return the next procedure which can be enqueued to ProcedureScheduler. | ||
*/ | ||
Optional<Procedure<?>> procedureCompleted(Procedure<?> proc) { | ||
Preconditions.checkState(enqueuedProc != null, "enqueued procedure should not be null"); | ||
if (enqueuedProc == proc) { | ||
if (!queue.isEmpty()) { | ||
enqueuedProc = queue.poll(); | ||
return Optional.of(enqueuedProc); | ||
} else { | ||
enqueuedProc = null; | ||
return Optional.empty(); | ||
} | ||
} else { | ||
Preconditions.checkState(isSubProcedure(proc), | ||
"procedure %s is not a sub procedure of enqueued procedure %s", proc, enqueuedProc); | ||
return Optional.empty(); | ||
} | ||
} | ||
|
||
boolean isEmpty() { | ||
return enqueuedProc == null; | ||
} | ||
|
||
int waitingSize() { | ||
return queue.size(); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "TableProcedureWaitingQueue [enqueuedProc=" + enqueuedProc + ", queue=" + queue + "]"; | ||
} | ||
} |
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.
Nice, this looks promising, let me take detailed look tomorrow