Skip to content

Commit

Permalink
Merge pull request elastic#432 from Tom-Artale/config-update
Browse files Browse the repository at this point in the history
Updated based on discussion with Lucas
  • Loading branch information
Tom Artale authored and Tom Artale committed Oct 27, 2015
2 parents e7ce84c + 7d45722 commit abfaa5b
Showing 1 changed file with 9 additions and 19 deletions.
28 changes: 9 additions & 19 deletions protofiles/configelements/GoDispatchConfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,19 @@ option java_outer_classname = "GoDispatchConfigMsg";

message GoDispatchConfig {

message Stats {
optional string countKey = 1;
optional string failedKey = 2;
optional string finishedKey = 3;
optional string requestKey = 4;
optional string retryKey = 5;
}

message Endpoint {
optional string queue = 1;
optional int32 queueSize = 2;
optional bool isOwner = 3;
}

optional Stats stats = 1;
optional Endpoint inputQueue = 2;
optional Endpoint inputQueue = 1;

optional int32 batchingReportPeriodSec = 3;
optional int32 receiveLogTimeoutMs = 4;
optional int32 batchingCapturePeriodMs = 5;
optional int32 maxBatchSize = 6;
optional int32 maxInFlightBatches = 7;
optional int32 batchingReportPeriodSec = 2;
optional int32 receiveLogTimeoutMs = 3;
optional int32 batchingCapturePeriodMs = 4;
optional int32 maxBatchSize = 5;
optional int32 maxInFlightBatches = 6;

optional bool sendToRecorder = 8;
optional int32 indexRetryBackoffDurationMs = 9;
}
optional bool sendToRecorder = 7;
optional int32 indexRetryBackoffDurationMs = 8;
}

0 comments on commit abfaa5b

Please sign in to comment.