# Streams management

The eKuiper REST api for streams allows you to manage the streams, such as create, describe, show and drop stream definitions.

# create a stream

The API is used for creating a stream. For more detailed information of stream definition, please refer to streams.

POST http://localhost:9081/streams
1

Request sample, the request is a json string with sql field.

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

This API can run any stream sql statements, not only stream creation.

# show streams

The API is used for displaying all of streams defined in the server.

GET http://localhost:9081/streams
1

Response Sample:

["mystream"]
1

# describe a stream

The API is used for print the detailed definition of stream.

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

Response Sample:

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

# update a stream

The API is used for update the stream definition.

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

Path parameter id is the id or name of the old stream.

Request sample, the request is a json string with sql field.

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

# drop a stream

The API is used for drop the stream definition.

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