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

Unified Diff: common/proto/logdog/svcconfig/config.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, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « common/proto/logdog/logpb/butler.pb.go ('k') | common/proto/logdog/svcconfig/config.pb.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: common/proto/logdog/svcconfig/config.proto
diff --git a/common/proto/logdog/svcconfig/config.proto b/common/proto/logdog/svcconfig/config.proto
index 806f7c12cb3d5223b6b2231ee34a4f82641bfed1..20ee85005a0090ff7e799cb7fd4d0d0e29da23a6 100644
--- a/common/proto/logdog/svcconfig/config.proto
+++ b/common/proto/logdog/svcconfig/config.proto
@@ -71,11 +71,13 @@ message Coordinator {
// Collector is the set of configuration parameters for Collector instances.
message Collector {
- // Workers is the number of ingest workers to run.
- int32 workers = 1;
+ // The maximum number of concurrent transport messages to process. If <= 0,
+ // a default will be chosen based on the transport.
+ int32 max_concurrent_messages = 1;
- // The number of transport worker goroutines to run.
- int32 transport_workers = 2;
+ // The maximum number of concurrent workers to process each ingested message.
+ // If <= 0, collector.DefaultMaxMessageWorkers will be used.
+ int32 max_message_workers = 2;
// The maximum number of log stream states to cache locally. If <= 0, a
// default will be used.
« no previous file with comments | « common/proto/logdog/logpb/butler.pb.go ('k') | common/proto/logdog/svcconfig/config.pb.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698