subSyncKeepStart.json 919 字节
Newer Older
haoranc's avatar
haoranc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{
    "filetype":"subscribe",
    "cfgdir": "/etc/taos",
    "host": "127.0.0.1",
    "port": 6030,
    "user": "root",
    "password": "taosdata",
    "databases": "db",
    "confirm_parameter_prompt": "no",
    "specified_table_query":
      {
       "concurrent":2, 
       "mode":"sync", 
       "interval":0, 
haoranc's avatar
haoranc 已提交
15 16
       "restartAfterConsume":1,
       "restart":"no", 
haoranc's avatar
haoranc 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29
       "keepProgress":"yes",
       "sqls": [
        {
          "sql": "select * from stb00_0", 
          "result": "./subscribe_res0.txt"
        }]
      },
    "super_table_query": 
      {
       "stblname": "stb0",
       "threads":2, 
       "mode":"sync", 
       "interval":10000, 
haoranc's avatar
haoranc 已提交
30 31 32
       "restartAfterConsume":1,
       "restart":"no", 
       "keepProgress":"no",
haoranc's avatar
haoranc 已提交
33 34 35 36 37 38 39
       "sqls": [
        {
          "sql": "select * from xxxx where ts >= '2021-02-25 10:00:01.000' ", 
          "result": "./subscribe_res2.txt"
        }]
      }
  }