-
Notifications
You must be signed in to change notification settings - Fork 57
/
Config.cpp
233 lines (179 loc) · 6.43 KB
/
Config.cpp
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
/*
* Config.cpp
*
* Created on: Apr 4, 2014
* Author: wangli
*/
#include "Config.h"
#include "Debug.h"
#include <stdlib.h>
#include <libconfig.h++>
#include <unistd.h>
#include <iosfwd>
#include <iostream>
#include <string>
#include <sstream>
using namespace std;
//#define DEBUG_Config
string gete() {
char *p = getenv("CLAIMS_HOME");
stringstream sp;
sp << string(p).c_str() << "conf/config";
return sp.str();
// return "/home/imdb/config/wangli/config";
}
string get_default_logfile_name() {
char *p = getenv("CLAIMS_HOME");
stringstream sp;
sp << string(p).c_str() << "/log/claims.log";
return sp.str();
}
std::string Config::config_file;
Config *Config::instance_ = 0;
/**
* This parameter specifies the maximum degrees of parallelism
* for each expander.
*/
int Config::max_degree_of_parallelism;
/*
* This parameter specifies the data path to search for data file,
* e.g., T0G0P0,...
*/
std::string Config::data_dir;
/* this parameter control whether expander tracker change the degree
* of parallelism in each expander based on the workload.*/
bool Config::enable_expander_adaptivity;
/*
* This parameter sets the frequency, at which expander tracker keeps
* track of expander's workload and adaptively change the degree of
* parallelism if needed.
*/
int Config::expander_adaptivity_check_frequency;
/**
* This parameter sets the initial degree of parallelism for each segment.
*/
int Config::initial_degree_of_parallelism;
/**
* THis parameter determines whether the data transmission in data exchanges
* is pipelined.
*/
bool Config::pipelined_exchange;
int Config::scan_batch;
std::string Config::logfile;
std::string Config::hdfs_master_ip;
int Config::hdfs_master_port;
bool Config::master;
bool Config::local_disk_mode;
/* the port of the ClientListener in the master */
int Config::client_listener_port;
bool Config::enable_codegen;
bool Config::enable_prune_column;
std::string Config::catalog_file;
int Config::thread_pool_init_thread_num;
int Config::load_thread_num;
int Config::memory_utilization;
int Config::hash_join_bucket_num;
int Config::hash_join_bucket_size;
int Config::expander_buffer_size;
Config *Config::getInstance() {
if (instance_ == 0) {
instance_ = new Config();
}
return instance_;
}
Config::Config() { initialize(); }
Config::~Config() {
// TODO Auto-generated destructor stub
}
void Config::initialize() {
if (config_file.empty()) config_file = gete().c_str();
/**
* open configure file, which path is specified in CONFIG.
*/
cfg.readFile(config_file.c_str());
/*
* The following lines set the search attribute name and default value for
* each parameter.
*/
data_dir = getString("data", "/home/imdb/data/");
max_degree_of_parallelism = getInt("max_degree_of_parallelism", 4);
expander_adaptivity_check_frequency =
getInt("expander_adaptivity_check_frequency", 1000);
enable_expander_adaptivity = getBoolean("enable_expander_adaptivity", false);
initial_degree_of_parallelism = getInt("initial_degree_of_parallelism", 1);
scan_batch = getInt("scan_batch", 10);
hdfs_master_ip = getString("hdfs_master_ip", "10.11.1.192");
hdfs_master_port = getInt("hdfs_master_port", 9000);
logfile = getString("log", get_default_logfile_name().c_str());
master = getBoolean("master", true);
local_disk_mode = getBoolean("local_disk_mode", false);
pipelined_exchange = getBoolean("pipelined_exchange", true);
client_listener_port = getInt("client_listener_port", 10001);
catalog_file = getString("catalog_file", data_dir + "CATALOG");
enable_codegen = getBoolean("enable_codegen", true);
thread_pool_init_thread_num = getInt("thread_pool_init_thread_num", 100);
load_thread_num = getInt("load_thread_num", sysconf(_SC_NPROCESSORS_CONF));
memory_utilization = getInt("memory_utilization", 100);
enable_prune_column = getBoolean("enable_prune_column", true);
hash_join_bucket_num = getInt("hash_join_bucket_num", 1024 * 1024);
hash_join_bucket_size = getInt("hash_join_bucket_size", 1024);
expander_buffer_size = getInt("expander_buffer_size", 3000);
#ifdef DEBUG_Config
print_configure();
#endif
}
std::string Config::getString(std::string attribute_name,
std::string default_value) {
std::string ret;
try {
ret = (const char *)cfg.lookup(attribute_name.c_str());
} catch (libconfig::SettingNotFoundException &e) {
ret = default_value;
}
return ret;
}
int Config::getInt(std::string attribute_name, int default_value) {
int ret;
try {
ret = cfg.lookup(attribute_name.c_str());
} catch (libconfig::SettingNotFoundException &e) {
ret = default_value;
}
return ret;
}
bool Config::getBoolean(std::string attribute_name, bool defalut_value) {
bool ret;
try {
ret = ((int)cfg.lookup(attribute_name.c_str())) == 1;
} catch (libconfig::SettingNotFoundException &e) {
ret = defalut_value;
}
return ret;
}
void Config::print_configure() const {
std::cout << "configure file :" << config_file << std::endl;
std::cout << "The configure is as follows." << std::endl;
std::cout << "data:" << data_dir << std::endl;
std::cout << "max_degree_of_parallelism:" << max_degree_of_parallelism
<< std::endl;
std::cout << "expander_adaptivity_check_frequency:"
<< expander_adaptivity_check_frequency << std::endl;
std::cout << "enable_expander_adaptivity:" << enable_expander_adaptivity
<< std::endl;
std::cout << "initial_degree_of_parallelism:" << initial_degree_of_parallelism
<< std::endl;
std::cout << "hdfs master ip:" << hdfs_master_ip << std::endl;
std::cout << "hdfs_master_port:" << hdfs_master_port << std::endl;
std::cout << "log:" << logfile << std::endl;
std::cout << "master:" << master << std::endl;
std::cout << "local disk mode:" << local_disk_mode << std::endl;
std::cout << "client_lisener_port:" << client_listener_port << std::endl;
std::cout << "catalog_file:" << catalog_file << std::endl;
std::cout << "codegen:" << enable_codegen << std::endl;
std::cout << "enable_prune_column: " << enable_prune_column << std::endl;
std::cout << "load_thread_num:" << load_thread_num << std::endl;
std::cout << "hash_join_bucket_num: " << hash_join_bucket_num << std::endl;
std::cout << "hash_join_bucket_size: " << hash_join_bucket_size << std::endl;
std::cout << "expander_buffer_size: " << expander_buffer_size << std::endl;
}
void Config::setConfigFile(std::string file_name) { config_file = file_name; }