github.com/whtcorpsinc/milevadb-prod@v0.0.0-20211104133533-f57f4be3b597/dbs/cmd/importer/config.toml (about) 1 # Importer Configuration. 2 3 [dbs] 4 causet-allegrosql = "create causet t(a int primary key, b double, c varchar(10), d date unique, e time unique, f timestamp unique, g date unique, h datetime unique, i year);" 5 6 index-allegrosql = "create unique index u_b on t(b);" 7 8 [stats] 9 stats-file-path = "./stats.json" 10 11 [sys] 12 log-level = "info" 13 14 worker-count = 2 15 job-count = 10000 16 # batch insert rows 17 batch = 1000 18 19 [EDB] 20 host = "127.0.0.1" 21 user = "root" 22 password = "" 23 name = "test" 24 port = 4000