This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 177e88d adding windowing CLI option comments (#1788)
177e88d is described below
commit 177e88d97e0f7a5745189c0640e2e6192f76c0bc
Author: Boyang Jerry Peng <[email protected]>
AuthorDate: Thu May 17 08:50:09 2018 -0700
adding windowing CLI option comments (#1788)
---
.../src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/pulsar-client-tools/src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java
b/pulsar-client-tools/src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java
index dc311ba..30103c7 100644
---
a/pulsar-client-tools/src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java
+++
b/pulsar-client-tools/src/main/java/org/apache/pulsar/admin/cli/CmdFunctions.java
@@ -231,13 +231,13 @@ public class CmdFunctions extends CmdBase {
protected Long ram;
@Parameter(names = "--disk", description = "The disk in bytes that
need to be allocated per function instance(applicable only to docker runtime)")
protected Long disk;
- @Parameter(names = "--windowLengthCount", description = "")
+ @Parameter(names = "--windowLengthCount", description = "The number of
messages per window")
protected Integer windowLengthCount;
- @Parameter(names = "--windowLengthDurationMs", description = "")
+ @Parameter(names = "--windowLengthDurationMs", description = "The time
duration of the window in milliseconds")
protected Long windowLengthDurationMs;
- @Parameter(names = "--slidingIntervalCount", description = "")
+ @Parameter(names = "--slidingIntervalCount", description = "The number
of messages after which the window slides")
protected Integer slidingIntervalCount;
- @Parameter(names = "--slidingIntervalDurationMs", description = "")
+ @Parameter(names = "--slidingIntervalDurationMs", description = "The
time duration after which the window slides")
protected Long slidingIntervalDurationMs;
@Parameter(names = "--autoAck", description = "")
protected Boolean autoAck;
--
To stop receiving notification emails like this one, please contact
[email protected].