Skip to content

Commit

Permalink
Add wall_time field to GetOrCreateBlobSequenceRequest (tensorflow#3253)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsoergel committed Feb 14, 2020
1 parent 3bc9c20 commit 6a465d4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tensorboard/uploader/proto/write_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ syntax = "proto3";

package tensorboard.service;

import "google/protobuf/timestamp.proto";
// TODO(bileschi): write_service.proto imports export_service.proto for the
// definition of Experiment and ExperimentMask. It would be better to excise
// those into one file that both services depend on.
Expand Down Expand Up @@ -277,12 +278,14 @@ message GetOrCreateBlobSequenceRequest {
string tag = 3;
// Step index within the run.
int64 step = 4;
// Timestamp of the creation of this blob sequence.
google.protobuf.Timestamp wall_time = 5;
// The total number of elements expected in the sequence.
// This effectively delares a number of initially empty 'upload slots',
// to be filled with subsequent WriteBlob RPCs.
int64 final_sequence_length = 5;
int64 final_sequence_length = 6;
// Note that metadata.plugin_data.content does not carry the payload.
.tensorboard.SummaryMetadata metadata = 6;
.tensorboard.SummaryMetadata metadata = 7;
}

message GetOrCreateBlobSequenceResponse {
Expand Down

0 comments on commit 6a465d4

Please sign in to comment.