-
Notifications
You must be signed in to change notification settings - Fork 1
/
viya_perf_tool.conf
140 lines (118 loc) · 3.25 KB
/
viya_perf_tool.conf
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
####
# Global Test Options
####
# REQUIRED
#
# The list of hostnames or IPs where the tests will be performed. These can be separated
# by commas, colons, semicolons, or spaces. For example: host1, host2, host3.
#
# NOTE: The system this is being executed on should be the first host in the list.
# NOTE: To test using a specific NIC, simply list that NIC's IP in place of the hostname.
#
# Default Value: empty
HOSTS=
####
# Network Test Options
####
# REQUIRED
#
# The valid values are "Y" to run the network throughput tests or "N" to not run the
# network tests.
#
# NOTE: Network tests are only performed if multiple hosts are being tested.
#
# Default Value: Y
NETWORK_TESTS=Y
# REQUIRED if NETWORK_TESTS=Y
#
# The port to use for the iperf listener on the remote host(s) during the network tests.
#
# Default Value: 24975
NETWORK_LISTEN_PORT=24975
####
# Storage IO Test Options
####
# REQUIRED if IO_TESTS_DATA=Y or IO_TESTS_CDC=Y
#
# The valid values are "Y" to run the Storage IO tests in parallel or "N" to run the
# Storage IO tests sequentially.
#
# NOTE: Running the Storage IO tests sequentially *may* take significantly longer.
#
# Default Value: N
PARALLEL_IO_TESTS=N
##
# Data IO Test Options
##
# REQUIRED
#
# The valid values are "Y" to run the Data IO tests against the DATA_DIR directory or
# "N" to not run the Data IO tests.
#
# Default Value: Y
IO_TESTS_DATA=Y
# REQUIRED if IO_TESTS_DATA=Y
#
# The full path of the permanent data directory. This path must exist and be read/write
# accessible for the user executing this script.
#
# Default Value: empty
DATA_DIR=
# REQUIRED if IO_TESTS_DATA=Y, PARALLEL_IO_TESTS=Y, and more than one HOST is defined
#
# The valid values are "Y" if the directory specified in DATA_DIR is shared (DNFS) and tests
# should run in parallel or "N" if either the DATA_DIR directory is not shared (PATH) or
# tests should run sequentially.
#
# NOTE: SHARED_DATA_DIR defaults to "N" if PARALLEL_IO_TESTS=N or if only one HOST is defined.
#
# Default Value: N
SHARED_DATA_DIR=N
##
# CAS Disk Cache (CDC) IO Test Options
##
# REQUIRED
#
# The valid values are "Y" to run the CDC IO tests against the CDC_DIR directory or "N"
# to not run the CDC IO tests.
#
# Default Value: Y
IO_TESTS_CDC=Y
# REQUIRED if IO_TESTS_CDC=Y
#
# The full path of the CAS Disk Cache directory. This path must exist and be read/write
# accessible for the user executing this script.
#
# Default Value: empty
CDC_DIR=
# REQUIRED if IO_TESTS_CDC=Y, PARALLEL_IO_TESTS=Y, and more than one HOST is defined
#
# The valid values are "Y" if the directory specified in CDC_DIR is shared and tests should
# run in parallel or "N" if either the CDC_DIR directory is not shared or tests should run
# sequentially.
#
# NOTE: SHARED_CDC_DIR defaults to "N" if PARALLEL_IO_TESTS=N or if only one HOST is defined.
#
# Default Value: N
SHARED_CDC_DIR=N
####
# Debug Test Options
####
# REQUIRED
#
# The valid values are "Y" to clean up after execution or "N" for leave test directories
# and temporary files on the systems.
#
# Default Value: Y
CLEANUP=Y
# REQUIRED
#
# The valid values are "Y" to write output to a log file [e.g. viya_perf_tool_1616433582.log]
# or "N" to write output to STDOUT.
#
# Default Value: Y
OUTPUT_TO_FILE=Y
####
# DO NOT EDIT BELOW THIS LINE
####
CONFIG_VERSION=1.0.0