-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsettings.py
executable file
·73 lines (63 loc) · 1.84 KB
/
settings.py
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import sys
import multiprocessing
# global configuration
UPDATE = True
AUTOMATIC_UPLOAD = False
BASIC_AUTH = False
# username and password for the basic authentication
USERNAME = 'username'
PASSWORD = 'password'
# default url: master branch
GIT_URL = 'https://github.com/postgres/postgres.git'
# base path where to clone, install and fetch results
# parent must exist!
# also should have non-superuser access
BASE_PATH = '/tmp/perffarm'
API_URL = 'http://140.211.168.145/'
MACHINE_SECRET = 'changeme'
# scale factor for tpc-h benchmark
TPCH_SCALE = 1
# mode for running the client
MODE = [
'pgbench',
# 'tpch'
]
POSTGRES_CONFIG = {
'shared_buffers': '1GB',
'work_mem': '64MB',
'maintenance_work_mem': '128MB',
'min_wal_size': '2GB',
'max_wal_size': '4GB',
'log_line_prefix': '%t [%p]: [%l-1] db=%d,user=%u,app=%a,client=%h ',
'log_checkpoints': 'on',
'log_autovacuum_min_duration': '0',
'log_temp_files': '32',
'checkpoint_timeout': '30min',
'checkpoint_completion_target': '0.9',
}
DATABASE_NAME = 'postgres'
# configuration for PgBench
# iterations - number of repetitions (including test for all client counts)
# duration - duration (in seconds) of a single benchmark (per client count)
PGBENCH_CONFIG = [
{
'iterations': 2,
'duration': 600,
'scale': 3,
'clients': [1, multiprocessing.cpu_count(), 2 * multiprocessing.cpu_count()],
'read_only': False,
},
{
'iterations': 2,
'duration': 600,
'scale': 5,
'clients': [1, multiprocessing.cpu_count(), 2 * multiprocessing.cpu_count()],
'read_only': False,
}]
# ignore missing file with local config
try:
from settings_local import *
except Exception as e:
print(sys.stderr, "ERROR: local configuration (settings_local.py) "
"not found")
sys.exit(1)