default.json 741 字节
Newer Older
Y
Yang Zhao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
  "filetype": "insert",
  "cfgdir": "/etc/taos",
  "host": "127.0.0.1",
  "port": 6030,
  "user": "root",
  "password": "taosdata",
  "thread_count": 4,
  "connection_pool_size": 20,
  "result_file": "./insert_res.txt",
  "confirm_parameter_prompt": "no",
  "prepared_rand": 10,
  "chinese": "no",
  "insert_interval": 0,
  "num_of_records_per_req": 10,
  "databases": [{
    "dbinfo": {
haoranc's avatar
haoranc 已提交
18 19 20
      "name": "db",
      "drop": "yes"

Y
Yang Zhao 已提交
21 22
    },
    "super_tables": [{
haoranc's avatar
haoranc 已提交
23
      "child_table_exists":"no",
Y
Yang Zhao 已提交
24 25
      "name": "stb",
      "childtable_prefix": "stb_",
26 27
      "childtable_count": 10,
      "insert_rows": 10,
haoranc's avatar
haoranc 已提交
28 29
      "childtable_from": 1,
      "childtable_to": 9,
Y
Yang Zhao 已提交
30 31 32 33
      "columns": [{"type": "INT"}],
      "tags": [{"type": "INT"}]
    }]
  }]
34
}