Rules management

The eKuiper rule command line tools allows you to manage rules, such as create, show, drop, describe, start, stop and restart rules.

create a rule

The command is used for creating a rule. The rule’s definition is specified with JSON format, read rule for more detailed information.

  1. create rule $rule_name '$rule_json' | create rule $rule_name -f $rule_def_file

The rule can be created with two ways.

  • Specify the rule definition in command line. Notice that, the json string must be quoted.

Sample:

  1. # bin/kuiper create rule rule1 '{"sql": "SELECT * from demo","actions": [{"log": {}},{"mqtt": {"server":"tcp://127.0.0.1:1883", "topic":"demoSink"}}]}'

The command create a rule named rule1.

  • Specify the rule definition in file. If the rule is complex, or the rule is already wrote in text files with well organized formats, you can just specify the rule definition through -f option.

Sample:

  1. # bin/kuiper create rule rule1 -f /tmp/rule.txt

Below is the contents of rule.txt.

  1. {
  2. "sql": "SELECT * from demo",
  3. "actions": [
  4. {
  5. "log": {}
  6. },
  7. {
  8. "mqtt": {
  9. "server": "tcp://127.0.0.1:1883",
  10. "topic": "demoSink"
  11. }
  12. }
  13. ]
  14. }

show rules

The command is used for displaying all of rules defined in the server with a brief status.

  1. show rules

Sample:

  1. # bin/kuiper show rules
  2. [
  3. {
  4. "id": "rule1",
  5. "status": "Running"
  6. },
  7. {
  8. "id": "rule2",
  9. "status": "Stopped: canceled by error."
  10. }
  11. ]

describe a rule

The command is used for print the detailed definition of rule.

  1. describe rule $rule_name

Sample:

  1. # bin/kuiper describe rule rule1
  2. {
  3. "sql": "SELECT * from demo",
  4. "actions": [
  5. {
  6. "log": {}
  7. },
  8. {
  9. "mqtt": {
  10. "server": "tcp://127.0.0.1:1883",
  11. "topic": "demoSink"
  12. }
  13. }
  14. ]
  15. }

drop a rule

The command is used for drop the rule.

  1. drop rule $rule_name

Sample:

  1. # bin/kuiper drop rule rule1
  2. Rule rule1 is dropped.

start a rule

The command is used to start running the rule.

  1. start rule $rule_name

Sample:

  1. # bin/kuiper start rule rule1
  2. Rule rule1 was started.

stop a rule

The command is used to stop running the rule.

  1. stop rule $rule_name

Sample:

  1. # bin/kuiper stop rule rule1
  2. Rule rule1 was stopped.

restart a rule

The command is used to restart the rule.

  1. restart rule $rule_name

Sample:

  1. # bin/kuiper restart rule rule1
  2. Rule rule1 was restarted.

get the status of a rule

The command is used to get the status of the rule. If the rule is running, the metrics will be retrieved realtime. The status can be

  • $metrics
  • stopped: $reason
  1. getstatus rule $rule_name

Sample:

  1. # bin/kuiper getstatus rule rule1
  2. {
  3. "source_demo_0_records_in_total":5,
  4. "source_demo_0_records_out_total":5,
  5. "source_demo_0_exceptions_total":0,
  6. "source_demo_0_process_latency_ms":0,
  7. "source_demo_0_buffer_length":0,
  8. "source_demo_0_last_invocation":"2020-01-02T11:28:33.054821",
  9. ...
  10. "op_filter_0_records_in_total":5,
  11. "op_filter_0_records_out_total":2,
  12. "op_filter_0_exceptions_total":0,
  13. "op_filter_0_process_latency_ms":0,
  14. "op_filter_0_buffer_length":0,
  15. "op_filter_0_last_invocation":"2020-01-02T11:28:33.054821",
  16. ...
  17. }

get the topology structure of a rule

The command is used to get the status of the rule represented as a json string. In the json string, there are 2 fields:

  • sources: it is a string array of the names of all source nodes. They are the entry of the topology.
  • edges: it is a hash map of all edges categorized by nodes. The keys are the starting point of an edge. And the value is a collection of ending point.
  1. gettopo rule $rule_name

Sample result:

  1. {
  2. "sources": [
  3. "source_stream"
  4. ],
  5. "edges": {
  6. "op_preprocessor_stream": [
  7. "op_project"
  8. ],
  9. "op_project": [
  10. "sink_log"
  11. ],
  12. "source_stream": [
  13. "op_preprocessor_stream"
  14. ]
  15. }
  16. }