Files
tidb/cmd/importer/config.toml
2021-09-02 15:30:15 +08:00

39 lines
1.0 KiB
TOML

# Copyright 2021 PingCAP, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Importer Configuration.
[ddl]
table-sql = "create table 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);"
index-sql = "create unique index u_b on t(b);"
[stats]
stats-file-path = "./stats.json"
[sys]
log-level = "info"
worker-count = 2
job-count = 10000
# batch insert rows
batch = 1000
[db]
host = "127.0.0.1"
user = "root"
password = ""
name = "test"
port = 4000