forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remote: Postpone the block waiting in
afterCommand
to `BlockWaiting…
…Module` (bazelbuild#14833) When implementing async upload, we introduced a block waiting behaviour in `RemoteModule#afterCommand` so that uploads happened in the background can be waited before the whole build complete. However, there are other block waiting code in other module's `afterCommand` method (e.g. BES module). Block waiting in remote module will prevent other modules' `afterCommand` from executing until it's completed. This causes issues like bazelbuild#14576. This PR adds a new module `BlockWaitingModule` whose sole purpose is to accept tasks submitted by other modules in `afterCommand` and block waiting all the tasks in its own `afterCommand` method. So those tasks can be executed in parallel. This PR only updates RemoteModule's `afterCommand` method to submit block waiting task. Other modules should be updated to use `BlockWaitingModule` as well but that's beyond the scope this this PR. This PR along with 73a76a8 fix bazelbuild#14576. Closes bazelbuild#14618. PiperOrigin-RevId: 424295121 (cherry picked from commit 621649d) Co-authored-by: Chi Wang <[email protected]>
- Loading branch information
1 parent
344e8f8
commit 0c74741
Showing
3 changed files
with
67 additions
and
2 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
59 changes: 59 additions & 0 deletions
59
src/main/java/com/google/devtools/build/lib/runtime/BlockWaitingModule.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,59 @@ | ||
// Copyright 2022 The Bazel Authors. 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. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package com.google.devtools.build.lib.runtime; | ||
|
||
import static com.google.common.base.Preconditions.checkNotNull; | ||
import static com.google.common.base.Preconditions.checkState; | ||
import static java.util.concurrent.TimeUnit.SECONDS; | ||
|
||
import com.google.common.util.concurrent.ThreadFactoryBuilder; | ||
import com.google.devtools.build.lib.util.AbruptExitException; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import javax.annotation.Nullable; | ||
|
||
/** A {@link BlazeModule} that waits for submitted tasks to terminate after every command. */ | ||
public class BlockWaitingModule extends BlazeModule { | ||
@Nullable private ExecutorService executorService; | ||
|
||
@Override | ||
public void beforeCommand(CommandEnvironment env) throws AbruptExitException { | ||
checkState(executorService == null, "executorService must be null"); | ||
|
||
executorService = | ||
Executors.newCachedThreadPool( | ||
new ThreadFactoryBuilder().setNameFormat("block-waiting-%d").build()); | ||
} | ||
|
||
@SuppressWarnings("FutureReturnValueIgnored") | ||
public void submit(Runnable task) { | ||
checkNotNull(executorService, "executorService must not be null"); | ||
|
||
executorService.submit(task); | ||
} | ||
|
||
@Override | ||
public void afterCommand() throws AbruptExitException { | ||
checkNotNull(executorService, "executorService must not be null"); | ||
|
||
executorService.shutdown(); | ||
try { | ||
executorService.awaitTermination(Long.MAX_VALUE, SECONDS); | ||
} catch (InterruptedException e) { | ||
Thread.currentThread().interrupt(); | ||
} | ||
|
||
executorService = null; | ||
} | ||
} |