-
Notifications
You must be signed in to change notification settings - Fork 40
/
tpcc.properties
57 lines (45 loc) · 1.66 KB
/
tpcc.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# TPC-C configuration properties
#
# See the README.txt first!
#
############################################################
## Number of warehouses (used both for data loading and ##
## running the benchmark). ##
############################################################
WAREHOUSECOUNT=1
############################################################
## Data generation / loading properties ##
############################################################
# Data can be generated to tab delimited text files
# suitable for loading into MySQL with LOAD DATA INFILE
# or can be loaded directly via JDBC
#MODE=FILE
MODE=JDBC
# For FILE mode, specify the output directory for the files.
# Typically it is easiest to generate directly to the MySQL
# database directory
OUTPUTDIR=output
# Specify which shard to load data for and the total number
# of shards. Data is sharded based on warehouse ID.
SHARDID=1
SHARDCOUNT=1
############################################################
## Database connection details used for loading data in ##
## JDBC mode and also used for running the benchmarks. ##
############################################################
# MySQL
DRIVER=com.mysql.jdbc.Driver
JDBCURL=jdbc:mysql://127.0.0.1:3306/tpcc?useSSL=false&serverTimezone=UTC&autoReconnect=true
JDBCFETCHSIZE=-2147483648
# dbShards
#DRIVER=com.dbshards.jdbc.Driver
#JDBCURL=jdbc:dbshards://tpcc/client
# Credentials
USER=root
PASSWORD=
############################################################
# Settings used for Tpcc benchmark only
############################################################
CONNECTIONS=30
RAMPUPTIME=45
DURATION=60