-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HBASE-28683 Only allow one TableProcedureInterface for a single table…
… to run at the same time for some special procedure types
- Loading branch information
Showing
5 changed files
with
145 additions
and
8 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
75 changes: 75 additions & 0 deletions
75
...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,75 @@ | ||
/* | ||
* 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 org.apache.hadoop.hbase.procedure2.Procedure; | ||
import org.apache.yetus.audience.InterfaceAudience; | ||
|
||
/** | ||
* 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 { | ||
|
||
// whether there is already a table procedure enqueued in ProcedureScheduler. | ||
private Procedure<?> enqueuedProc; | ||
|
||
private final Queue<Procedure<?>> queue = new ArrayDeque<>(); | ||
|
||
/** | ||
* Return whether we can enqueue this procedure to ProcedureScheduler. | ||
*/ | ||
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; | ||
} | ||
queue.add(proc); | ||
return false; | ||
} | ||
|
||
/** | ||
* Return the next procedure which can be enqueued to ProcedureScheduler. | ||
*/ | ||
Optional<Procedure<?>> procedureCompleted(Procedure<?> proc) { | ||
assert proc == enqueuedProc; | ||
if (!queue.isEmpty()) { | ||
enqueuedProc = queue.poll(); | ||
return Optional.of(enqueuedProc); | ||
} else { | ||
enqueuedProc = null; | ||
return Optional.empty(); | ||
} | ||
} | ||
|
||
@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