流管理

eKuiper REST api 可用于管理流,例如创建、描述、显示和删除流定义。

创建流

该 API 用于创建流。 有关流定义的更多详细信息,请参考

  1. POST http://localhost:9081/streams

请求示例,请求命令是带有 sql 字段的 json 字符串。

  1. {"sql":"create stream my_stream (id bigint, name string, score float) WITH ( datasource = \"topic/temperature\", FORMAT = \"json\", KEY = \"id\")"}

该 API 可以运行任何流 sql 语句,而不仅可以创建流。

显示流

该 API 用于显示服务器中定义的所有流。

  1. GET http://localhost:9081/streams

响应示例:

  1. ["mystream"]

描述流

该 API 用于打印流的详细定义。

  1. GET http://localhost:9081/streams/{id}}

响应示例:

  1. {
  2. "Name": "demo",
  3. "StreamFields": [
  4. {
  5. "Name": "temperature",
  6. "FieldType": {
  7. "Type": 2
  8. }
  9. },
  10. {
  11. "Name": "ts",
  12. "FieldType": {
  13. "Type": 1
  14. }
  15. }
  16. ],
  17. "Options": {
  18. "DATASOURCE": "demo",
  19. "FORMAT": "JSON"
  20. }
  21. }

更新流

该 API 用于更新流定义。

  1. PUT http://localhost:9081/streams/{id}

路径参数 id 是原有流定义的 id 或名称。

请求示例,请求命令是带有 sql 字段的 json 字符串。

  1. {"sql":"create stream my_stream (id bigint, name string, score float) WITH ( datasource = \"topic/temperature\", FORMAT = \"json\", KEY = \"id\")"}

删除流

该 API 用于删除流定义。

  1. DELETE http://localhost:9081/streams/{id}