You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by pe...@apache.org on 2022/07/23 02:23:10 UTC

[pulsar] branch master updated: [improve][doc] Add doc for function type to functions-cli.md (#16738)

This is an automated email from the ASF dual-hosted git repository.

penghui pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 3e68fa4cb3a [improve][doc] Add doc for function type to functions-cli.md (#16738)
3e68fa4cb3a is described below

commit 3e68fa4cb3a9252681d2edfd2252f6d88d043805
Author: Christophe Bornet <cb...@hotmail.com>
AuthorDate: Sat Jul 23 04:23:05 2022 +0200

    [improve][doc] Add doc for function type to functions-cli.md (#16738)
---
 site2/docs/functions-cli.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/site2/docs/functions-cli.md b/site2/docs/functions-cli.md
index f36e47f33de..316266ab069 100644
--- a/site2/docs/functions-cli.md
+++ b/site2/docs/functions-cli.md
@@ -26,6 +26,7 @@ You can configure a function by using a predefined YAML file. The following tabl
 | namespace            | String                     | `--namespace`              | The namespace of a function.|
 | name                 | String                     | `--name`                   | The name of a function.|
 | className            | String                     | `--classname`              | The class name of a function. |
+| functionType         | String                     | `--function-type`          | The built-in function type. |
 | inputs               | List`<String>`               | `-i`, `--inputs`           | The input topics of a function. Multiple topics can be specified as a comma-separated list. |
 | customSerdeInputs    | Map`<String,String>`         | `--custom-serde-inputs`    | The mapping from input topics to SerDe class names. |
 | topicsPattern        | String                     | `--topics-pattern`         | The topic pattern to consume from a list of topics under a namespace. <br />**Note:** `--input` and `--topic-pattern` are mutually exclusive. For Java functions, you need to add the SerDe class name for a pattern in `--custom-serde-inputs`. |