1 #######################################################################
2 # Configuration File for DOTS
3 #######################################################################
5 #######################################################################
7 # Specify the duration of running the test case
9 # Default is 24 hours and 0 minute
11 #######################################################################
14 #######################################################################
16 # Specify the output directory
17 # Default is /home/db2inst1/log
19 #######################################################################
25 # Specify how many concurrent connections the test case will generate
28 #######################################################################
29 CONCURRENT_CONNECTIONS= 5
31 #######################################################################
33 # Specify database server CPU utilization target
36 #######################################################################
39 #######################################################################
41 # Specify if use auto mode to run test case
42 # When AUTO_MODE is set to yes, it will continously generate
43 # connections to database server until the CPU target is reached or
44 # maxium database connection number is reached which is specified by
45 # the target test database.
46 # When AUTO_MODE is set to no, it will just generate certain number
47 # of current connections which is specified by
48 # CONCURRENT_CONNECTIONS
51 #######################################################################
54 #######################################################################
56 # Specify the time interval between two writes of test summary
57 # Default is 20 minutes
59 #######################################################################
62 #######################################################################
64 # Database Connection Parameters
66 # UserID is the database user id of the database server
67 # Password is the database user password of the database server
68 # DriverClass is JDBC driver classes
69 # For Oracle, default is oracle.jdbc.driver.OracleDriver
70 # For DB2,default is COM.ibm.db2.jdbc.net.DB2Driver
71 # For Sybase,default is com.sybase.jdbc2.jdbc.SybDriver
72 # For MySQL, default is org.gjt.mm.mysql.Driver
73 # For PostgreSQL, default is org.postgresql.Driver
74 # URL is the URL required by JDBC driver
75 # For Oracle, default is jdbc:oracle:thin:@<DB_SERVER_IP>:<JDBC_PORT>:<DB_NAME>
76 # For DB2, default is jdbc:db2://<DB_SERVER_IP>:<JDBC_PORT>/<DB_NAME>
77 # For Sybase, default is jdbc:sybase:Tds:<DB_SERVER_IP>:<JDBC_PORT>/<DB_NAME>
78 # For MySQL, default is jdbc:mysql://<DB_SERVER_IP>:<JDBC_PORT>/<DB_NAME>?user=<USER>&password=<PASS>
79 # For PostgreSQL, default is jdbc:postgresql://<DB_SERVER_IP>/<DB_NAME>
80 #######################################################################
84 DriverClass = org.gjt.mm.mysql.Driver
85 URL = jdbc:mysql://9.99.999.99:3306/TESTDB?user=dots&password=passwd
88 #######################################################################
90 # Performance Monitor Parameters
92 # SERVER_IP is the IP address of database server
93 # SERVER_PORT is the port that Performance Monitor specifies
94 # Default port is 8001
96 #######################################################################
97 SERVER_IP = 9.9.999.99
100 #######################################################################
102 # MAX_ROWS is the max rows test table can have
105 #######################################################################
108 #######################################################################
110 # MAX_LOGFILESIZE is the max bytes of each log file
111 # Default is 104857600(100M),the maximum is 1073741824(1G)
112 # the minimum is 100K
114 #######################################################################
115 MAX_LOGFILESIZE = 10485760
117 #######################################################################
119 # CREATIONINTERVAL specify the thread creation interval.
120 # The Default is 3 minutes, the maximum is 5 minutes, minumum is 1 minutes
122 #######################################################################
125 #######################################################################
127 # RUN_AUTO is optional. If RUN_AUTO is set to yes, Keyboard thread is
128 # disabled and the DOTS can run backgroud.
130 #######################################################################