-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigFile.properties
More file actions
28 lines (20 loc) · 815 Bytes
/
Copy pathconfigFile.properties
File metadata and controls
28 lines (20 loc) · 815 Bytes
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
# jdbc.X
jdbc.driverClassName=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/db_populator_example?createDatabaseIfNotExist=true&useSSL=false
jdbc.user=root
jdbc.pass=nikos
# hibernate.X
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
hibernate.show_sql=false
hibernate.hbm2ddl.auto=create-drop
##############################################################################
# dbpopulator.X
# how many threads will handle the traffic target.
dbpopulator.concurrency=3
# duration is in seconds.
dbpopulator.duration=30
# traffic target is the amount of records to populate the db with.
dbpopulator.trafficTarget=1100
# equal distribute missed work across populator workers.
dbpopulator.equal.distribution=true
###############################################################################