manyVgroups.json 2.4 KB
Newer Older
1 2 3
{
    "filetype": "insert",
    "cfgdir": "/etc/taos/",
4
    "host": "127.0.0.1",
5 6 7 8
    "port": 6030,
    "user": "root",
    "password": "taosdata",
    "thread_count": 8,
9
    "create_table_thread_count": 8,
10 11 12
    "result_file": "./insert_res.txt",
    "confirm_parameter_prompt": "no",
    "insert_interval": 0,
13
    "interlace_rows": 0,
14
    "num_of_records_per_req": 10000,
15 16 17 18
    "databases": [
        {
            "dbinfo": {
                "name": "db",
P
plum-lihui 已提交
19
                "drop": "no",
20 21 22 23 24 25
                "vgroups": 1
            },
            "super_tables": [
                {
                    "name": "stb1",
                    "child_table_exists": "no",
26
                    "childtable_count": 10000,
27 28 29 30 31
                    "childtable_prefix": "stb1_",
                    "auto_create_table": "no",
                    "batch_create_tbl_num": 50000,
                    "data_source": "rand",
                    "insert_mode": "taosc",
haoranc's avatar
haoranc 已提交
32
                    "insert_rows": 100,
33
                    "interlace_rows": 0,
34 35 36 37 38 39 40 41 42 43 44 45 46 47
                    "insert_interval": 0,
                    "max_sql_len": 10000000,
                    "disorder_ratio": 0,
                    "disorder_range": 1000,
                    "timestamp_step": 10,
                    "sample_format": "csv",
                    "use_sample_ts": "no",
                    "tags_file": "",
                    "columns": [
                        {
                            "type": "INT"
                        },
                        {
                            "type": "DOUBLE",
haoranc's avatar
haoranc 已提交
48
                            "count": 1
49 50 51
                        },
                        {
                            "type": "BINARY",
haoranc's avatar
haoranc 已提交
52 53
                            "len": 40,
                            "count": 1
54 55 56
                        },
                        {
                            "type": "nchar",
haoranc's avatar
haoranc 已提交
57 58
                            "len": 20,
                            "count": 1
59 60 61 62 63
                        }
                    ],
                    "tags": [
                        {
                            "type": "TINYINT",
haoranc's avatar
haoranc 已提交
64
                            "count": 1
65 66 67 68
                        },
                        {
                            "type": "BINARY",
                            "len": 16,
haoranc's avatar
haoranc 已提交
69
                            "count": 1
70 71 72 73 74 75
                        }
                    ]
                }
            ]
        }
    ]
76
}