forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Write/QueryWriteStatus logging refinement/addition
Improve the logging of WriteRequests to include offset and finish_write information. Offsets are logged for the initial and non-sequential per successive write request. Each finish_write true request is logged with the effective size of the resource at the completion of the write request, including the current offset and payload. Clarified comments for WriteDetails, and corrected some comment inconsistencies. Add logging for QueryWriteStatus calls which occur on progressive writes to determine an offset to begin a write call on a retry. Closes bazelbuild#12928. PiperOrigin-RevId: 355545331
- Loading branch information
1 parent
8fc7787
commit 32fc451
Showing
6 changed files
with
212 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
41 changes: 41 additions & 0 deletions
41
src/main/java/com/google/devtools/build/lib/remote/logging/QueryWriteStatusHandler.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,41 @@ | ||
// Copyright 2021 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.remote.logging; | ||
|
||
import com.google.bytestream.ByteStreamProto.QueryWriteStatusRequest; | ||
import com.google.bytestream.ByteStreamProto.QueryWriteStatusResponse; | ||
import com.google.devtools.build.lib.remote.logging.RemoteExecutionLog.QueryWriteStatusDetails; | ||
import com.google.devtools.build.lib.remote.logging.RemoteExecutionLog.RpcCallDetails; | ||
|
||
/** LoggingHandler for {@link google.bytestream.QueryWriteStatus} gRPC call. */ | ||
public class QueryWriteStatusHandler | ||
implements LoggingHandler<QueryWriteStatusRequest, QueryWriteStatusResponse> { | ||
private final QueryWriteStatusDetails.Builder builder = QueryWriteStatusDetails.newBuilder(); | ||
|
||
@Override | ||
public void handleReq(QueryWriteStatusRequest message) { | ||
builder.setRequest(message); | ||
} | ||
|
||
@Override | ||
public void handleResp(QueryWriteStatusResponse message) { | ||
builder.setResponse(message); | ||
} | ||
|
||
@Override | ||
public RpcCallDetails getDetails() { | ||
return RpcCallDetails.newBuilder().setQueryWriteStatus(builder).build(); | ||
} | ||
} |
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