doc: minor changes

This commit is contained in:
Shengliang Guan 2024-11-07 18:06:20 +08:00
parent 8757021065
commit 334f82215e
1 changed files with 5 additions and 5 deletions

View File

@ -234,16 +234,16 @@ RESUME STREAM [IF EXISTS] [IGNORE UNTREATED] stream_name;
升级 TDengine 后,如果流计算不兼容,需要删除流计算,然后重新创建流计算。步骤如下:
1.修改 taos.cfg添加disableStream 1
1.修改 taos.cfg添加 disableStream 1
2.重启 taosd
3.启动 taos
3.启动 taos
```sql
drop stream xxxx; ---- xxx指stream name
flush database stream_source_db; ----流计算读取数据的超级表所在的database
flush database stream_dest_db; -----流计算写入数据的超级表所在的database
drop stream xxxx; ---- xxx 指stream name
flush database stream_source_db; ---- 流计算读取数据的超级表所在的 database
flush database stream_dest_db; ---- 流计算写入数据的超级表所在的 database
```
举例: