Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Side by Side Diff: common/proto/logdog/logpb/butler.proto

Issue 1838803002: LogDog: BigTable batching schema. (Closed) Base URL: https://github.com/luci/luci-go@recordio-split
Patch Set: Minor comments and quality of code tweaks. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 syntax = "proto3"; 5 syntax = "proto3";
6 6
7 package logpb; 7 package logpb;
8 8
9 import "log.proto"; 9 import "log.proto";
10 import "google/protobuf/timestamp.proto"; 10 import "google/protobuf/timestamp.proto";
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 */ 107 */
108 bool terminal = 3; 108 bool terminal = 3;
109 109
110 /* 110 /*
111 * If terminal is true, this is the terminal stream index; that is, the last 111 * If terminal is true, this is the terminal stream index; that is, the last
112 * message index in the stream. 112 * message index in the stream.
113 */ 113 */
114 uint64 terminal_index = 4; 114 uint64 terminal_index = 4;
115 115
116 /* 116 /*
117 * Log entries attached to this record. These must be sequential and in 117 * Log entries attached to this record. These MUST be sequential.
118 * order.
119 * 118 *
120 * This is the main log entry content. 119 * This is the main log entry content.
121 */ 120 */
122 repeated logpb.LogEntry logs = 5; 121 repeated logpb.LogEntry logs = 5;
123 } 122 }
124 123
125 /** 124 /**
126 * Each Entry is an individual set of log records for a given log stream. 125 * Each Entry is an individual set of log records for a given log stream.
127 */ 126 */
128 repeated Entry entries = 3; 127 repeated Entry entries = 3;
129 } 128 }
OLDNEW
« no previous file with comments | « common/gcloud/pubsub/subscriber/subscriber_test.go ('k') | common/proto/logdog/logpb/butler.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698