You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- The Notifier dotnet new template extracts the published binaries from the tools folder using logic in https://github.com/jet/propulsion/pull/143 -->
@@ -32,10 +33,14 @@ type [<NoEquality; NoComparison; RequireSubcommand>] Parameters =
32
33
| MaxWriters _->"maximum number of concurrent streams on which to process at any time. Default: 8 (Cosmos: 16)."
33
34
| FromTail ->"(iff fresh projection) - force starting from present Position. Default: Ensure each and every event is projected from the start."
34
35
| Follow ->"Stop when the Tail is reached."
36
+
| RequireAll ->"Wait for out of order events to arrive (including waiting for event 0 per stream) before dispatching for any stream. "+
37
+
"NOTE normally a large `MaxReadAhead` and `cosmos -b` is required to avoid starving the scheduler. "+
38
+
"NOTE This mode does not make sense to apply unless the ProcessorName is fresh; if the consumer group name is not fresh (and hence items are excluded from the feed), there will inevitably be missing events, and processing will stall. "+
39
+
"Default: assume events arrive from the changefeed (and/or the input JSON file) without any gaps or out of order deliveries for any stream."
35
40
| Categorize ->"Gather handler latency stats by category"
36
41
| MaxItems _->"Controls checkpointing granularity by adjusting the batch size being loaded from the feed. Default: Unlimited"
37
42
38
-
|IncIdx->"Include Index streams. Default: Exclude Index Streams, identified by a $ prefix."
43
+
|IncSys->"Include System streams. Default: Exclude Index Streams, identified by a $ prefix."
39
44
| IncCat _->"Allow Stream Category. Multiple values are combined with OR. Default: include all, subject to Category Deny and Stream Deny rules."
40
45
| ExcCat _->"Deny Stream Category. Specified values/regexes are applied after the Category Allow rule(s)."
41
46
| IncStream _->"Allow Stream Name. Multiple values are combined with OR. Default: Allow all streams that pass the category Allow test, Fail the Category and Stream deny tests."
@@ -51,7 +56,7 @@ and Arguments(c, p: ParseResults<Parameters>) =
0 commit comments