forked from heavyai/heavydb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMapDServer.cpp
More file actions
789 lines (727 loc) · 33.9 KB
/
MapDServer.cpp
File metadata and controls
789 lines (727 loc) · 33.9 KB
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
/*
* Copyright 2017 MapD Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "MapDServer.h"
#include "ThriftHandler/MapDHandler.h"
#include <thrift/concurrency/PlatformThreadFactory.h>
#include <thrift/concurrency/ThreadManager.h>
#include <thrift/protocol/TBinaryProtocol.h>
#include <thrift/protocol/TJSONProtocol.h>
#include <thrift/server/TThreadedServer.h>
#include <thrift/transport/TBufferTransports.h>
#include <thrift/transport/THttpServer.h>
#include <thrift/transport/TSSLServerSocket.h>
#include <thrift/transport/TSSLSocket.h>
#include <thrift/transport/TServerSocket.h>
#include "MapDRelease.h"
#include "Shared/MapDParameters.h"
#include "Shared/mapd_shared_ptr.h"
#include "Shared/measure.h"
#include "Shared/scope.h"
#include <boost/algorithm/string.hpp>
#include <boost/filesystem.hpp>
#include <boost/make_shared.hpp>
#include <boost/program_options.hpp>
#include <csignal>
#include <sstream>
#include <thread>
#include <vector>
using namespace ::apache::thrift;
using namespace ::apache::thrift::concurrency;
using namespace ::apache::thrift::protocol;
using namespace ::apache::thrift::server;
using namespace ::apache::thrift::transport;
extern bool g_aggregator;
extern bool g_multi_subquery_exc;
extern size_t g_leaf_count;
TableGenerations table_generations_from_thrift(
const std::vector<TTableGeneration>& thrift_table_generations) {
TableGenerations table_generations;
for (const auto& thrift_table_generation : thrift_table_generations) {
table_generations.setGeneration(
thrift_table_generation.table_id,
TableGeneration{static_cast<size_t>(thrift_table_generation.tuple_count),
static_cast<size_t>(thrift_table_generation.start_rowid)});
}
return table_generations;
}
std::vector<LeafHostInfo> only_db_leaves(const std::vector<LeafHostInfo>& all_leaves) {
std::vector<LeafHostInfo> data_leaves;
std::copy_if(
all_leaves.begin(),
all_leaves.end(),
std::back_inserter(data_leaves),
[](const LeafHostInfo& leaf) { return leaf.getRole() == NodeRole::DbLeaf; });
return data_leaves;
}
std::vector<LeafHostInfo> only_string_leaves(
const std::vector<LeafHostInfo>& all_leaves) {
std::vector<LeafHostInfo> string_leaves;
std::copy_if(
all_leaves.begin(),
all_leaves.end(),
std::back_inserter(string_leaves),
[](const LeafHostInfo& leaf) { return leaf.getRole() == NodeRole::String; });
return string_leaves;
}
mapd::shared_ptr<MapDHandler> g_warmup_handler =
0; // global "g_warmup_handler" needed to avoid circular dependency
// between "MapDHandler" & function "run_warmup_queries"
mapd::shared_ptr<MapDHandler> g_mapd_handler = 0;
void shutdown_handler() {
if (g_mapd_handler) {
g_mapd_handler->shutdown();
}
}
void mapd_signal_handler(int signal_number) {
LOG(INFO) << "Interrupt signal (" << signal_number << ") received.\n";
shutdown_handler();
// shut down logging force a flush
google::ShutdownGoogleLogging();
// terminate program
if (signal_number == SIGTERM) {
std::exit(EXIT_SUCCESS);
} else {
std::exit(signal_number);
}
}
void register_signal_handler() {
// it appears we send both a signal SIGINT(2) and SIGTERM(15) each time we
// exit the startmapd script.
// Only catching the SIGTERM(15) to avoid double shut down request
// register SIGTERM and signal handler
std::signal(SIGTERM, mapd_signal_handler);
std::signal(SIGSEGV, mapd_signal_handler);
std::signal(SIGABRT, mapd_signal_handler);
// Thrift secure socket can cause problems with SIGPIPE
std::signal(SIGPIPE, SIG_IGN);
}
void start_server(TThreadedServer& server) {
try {
server.serve();
} catch (std::exception& e) {
LOG(ERROR) << "Exception: " << e.what() << std::endl;
}
}
void releaseWarmupSession(TSessionId& sessionId, std::ifstream& query_file) {
query_file.close();
if (sessionId != g_warmup_handler->getInvalidSessionId()) {
g_warmup_handler->disconnect(sessionId);
}
}
void run_warmup_queries(mapd::shared_ptr<MapDHandler> handler,
std::string base_path,
std::string query_file_path) {
// run warmup queries to load cache if requested
if (query_file_path.empty()) {
return;
}
LOG(INFO) << "Running DB warmup with queries from " << query_file_path;
try {
g_warmup_handler = handler;
std::string db_info;
std::string user_keyword, user_name, db_name;
std::ifstream query_file;
Catalog_Namespace::UserMetadata user;
Catalog_Namespace::DBMetadata db;
TSessionId sessionId = g_warmup_handler->getInvalidSessionId();
ScopeGuard session_guard = [&] { releaseWarmupSession(sessionId, query_file); };
query_file.open(query_file_path);
while (std::getline(query_file, db_info)) {
if (db_info.length() == 0) {
continue;
}
std::istringstream iss(db_info);
iss >> user_keyword >> user_name >> db_name;
if (user_keyword.compare(0, 4, "USER") == 0) {
// connect to DB for given user_name/db_name with super_user_rights (without
// password), & start session
g_warmup_handler->super_user_rights_ = true;
g_warmup_handler->connect(sessionId, user_name, "", db_name);
g_warmup_handler->super_user_rights_ = false;
// read and run one query at a time for the DB with the setup connection
TQueryResult ret;
std::string single_query;
while (std::getline(query_file, single_query)) {
if (single_query.length() == 0) {
continue;
}
if (single_query.compare("}") == 0) {
single_query.clear();
break;
}
g_warmup_handler->sql_execute(ret, sessionId, single_query, true, "", -1, -1);
single_query.clear();
}
// stop session and disconnect from the DB
g_warmup_handler->disconnect(sessionId);
sessionId = g_warmup_handler->getInvalidSessionId();
} else {
LOG(WARNING) << "\nSyntax error in the file: " << query_file_path.c_str()
<< " Missing expected keyword USER. Following line will be ignored: "
<< db_info.c_str() << std::endl;
}
db_info.clear();
}
} catch (...) {
LOG(WARNING) << "Exception while executing warmup queries. "
<< "Warmup may not be fully completed. Will proceed nevertheless."
<< std::endl;
}
}
int main(int argc, char** argv) {
int http_port = 9090;
size_t reserved_gpu_mem = 1 << 27;
std::string base_path;
std::string device("gpu");
std::string config_file("mapd.conf");
std::string cluster_file("cluster.conf");
bool flush_log = true;
bool jit_debug = false;
bool allow_multifrag = true;
bool read_only = false;
bool allow_loop_joins = false;
bool enable_legacy_syntax = true;
AuthMetadata authMetadata;
MapDParameters mapd_parameters;
bool enable_rendering = false;
bool enable_watchdog = true;
bool enable_dynamic_watchdog = false;
unsigned dynamic_watchdog_time_limit = 10000;
size_t render_mem_bytes = 500000000;
int num_gpus = -1; // Can be used to override number of gpus detected on system - -1
// means do not override
int start_gpu = 0;
size_t num_reader_threads = 0; // number of threads used when loading data
std::string db_convert_dir(""); // path to mapd DB to convert from; if path is empty,
// no conversion is requested
std::string db_query_file(""); // path to file containing warmup queries list
bool enable_access_priv_check = true; // enable DB objects access privileges checking
int idle_session_duration = 60; // Inactive session tolerance in mins (60 mins)
int max_session_duration =
43200; // maximum session life in mins (30 Days)
// (https://pages.nist.gov/800-63-3/sp800-63b.html#aal3reauth)
namespace po = boost::program_options;
po::options_description desc("Options");
desc.add_options()("help,h", "Print help messages");
desc.add_options()("config", po::value<std::string>(&config_file), "Path to mapd.conf");
desc.add_options()(
"data",
po::value<std::string>(&base_path)->required()->default_value("data"),
"Directory path to MapD catalogs");
desc.add_options()("cpu", "Run on CPU only");
desc.add_options()("gpu", "Run on GPUs (Default)");
desc.add_options()(
"read-only",
po::value<bool>(&read_only)->default_value(read_only)->implicit_value(true),
"Enable read-only mode");
desc.add_options()("port,p",
po::value<int>(&mapd_parameters.mapd_server_port)
->default_value(mapd_parameters.mapd_server_port),
"Port number");
desc.add_options()("http-port",
po::value<int>(&http_port)->default_value(http_port),
"HTTP port number");
desc.add_options()("calcite-port",
po::value<int>(&mapd_parameters.calcite_port)
->default_value(mapd_parameters.calcite_port),
"Calcite port number");
desc.add_options()(
"flush-log",
po::value<bool>(&flush_log)->default_value(flush_log)->implicit_value(true),
"Immediately flush logs to disk. Set to false if this is a performance "
"bottleneck.");
desc.add_options()("cpu-buffer-mem-bytes",
po::value<size_t>(&mapd_parameters.cpu_buffer_mem_bytes)
->default_value(mapd_parameters.cpu_buffer_mem_bytes),
"Size of memory reserved for CPU buffers [bytes]");
desc.add_options()("gpu-buffer-mem-bytes",
po::value<size_t>(&mapd_parameters.gpu_buffer_mem_bytes)
->default_value(mapd_parameters.gpu_buffer_mem_bytes),
"Size of memory reserved for GPU buffers [bytes] (per GPU)");
desc.add_options()("num-gpus",
po::value<int>(&num_gpus)->default_value(num_gpus),
"Number of gpus to use");
desc.add_options()("start-gpu",
po::value<int>(&start_gpu)->default_value(start_gpu),
"First gpu to use");
desc.add_options()("version,v", "Print Release Version Number");
desc.add_options()("null-div-by-zero",
po::value<bool>(&g_null_div_by_zero)
->default_value(g_null_div_by_zero)
->implicit_value(true),
"Return null on division by zero instead of throwing an exception");
desc.add_options()("left-deep-join-optimization",
po::value<bool>(&g_left_deep_join_optimization)
->default_value(g_left_deep_join_optimization)
->implicit_value(true),
"Enable left-deep join optimization");
desc.add_options()("from-table-reordering",
po::value<bool>(&g_from_table_reordering)
->default_value(g_from_table_reordering)
->implicit_value(true),
"Enable automatic table reordering in FROM clause");
desc.add_options()("enable-watchdog",
po::value<bool>(&enable_watchdog)
->default_value(enable_watchdog)
->implicit_value(true),
"Enable watchdog");
desc.add_options()("help-advanced",
"Print advanced and experimental options. These options should not "
"normally be used in production.");
po::options_description desc_adv("Advanced options");
desc_adv.add_options()("ssl-cert",
po::value<std::string>(&mapd_parameters.ssl_cert_file)
->default_value(std::string("")),
"SSL Validated public certficate");
desc_adv.add_options()("ssl-private-key",
po::value<std::string>(&mapd_parameters.ssl_key_file)
->default_value(std::string("")),
"SSL private key file");
// Note ssl_trust_store is passed through to Calcite via mapd_parameters
// todo(jack): add ensure ssl-trust-store exists if cert and private key in use
desc_adv.add_options()("ssl-trust-store",
po::value<std::string>(&mapd_parameters.ssl_trust_store)
->default_value(std::string("")),
"SSL Validated public cert as a java trust store");
desc_adv.add_options()("ssl-trust-password",
po::value<std::string>(&mapd_parameters.ssl_trust_password)
->default_value(std::string("")),
"SSL java trust store password");
desc_adv.add_options()(
"jit-debug",
po::value<bool>(&jit_debug)->default_value(jit_debug)->implicit_value(true),
"Enable debugger support for the JIT. The generated code can be found at "
"/tmp/mapdquery");
desc_adv.add_options()(
"disable-multifrag",
po::value<bool>(&allow_multifrag)
->default_value(allow_multifrag)
->implicit_value(false),
"Disable execution over multiple fragments in a single round-trip to GPU");
desc_adv.add_options()("allow-loop-joins",
po::value<bool>(&allow_loop_joins)
->default_value(allow_loop_joins)
->implicit_value(true),
"Enable loop joins");
desc_adv.add_options()("fast-strcmp",
po::value<bool>(&g_fast_strcmp)
->default_value(g_fast_strcmp)
->implicit_value(false),
"Disable fast string comparison");
desc_adv.add_options()(
"res-gpu-mem",
po::value<size_t>(&reserved_gpu_mem)->default_value(reserved_gpu_mem),
"Reserved memory for GPU, not use mapd allocator");
desc_adv.add_options()("disable-legacy-syntax",
po::value<bool>(&enable_legacy_syntax)
->default_value(enable_legacy_syntax)
->implicit_value(false),
"Enable legacy syntax");
desc_adv.add_options()(
"num-reader-threads",
po::value<size_t>(&num_reader_threads)->default_value(num_reader_threads),
"Number of reader threads to use");
desc_adv.add_options()("enable-dynamic-watchdog",
po::value<bool>(&enable_dynamic_watchdog)
->default_value(enable_dynamic_watchdog)
->implicit_value(true),
"Enable dynamic watchdog");
desc_adv.add_options()("dynamic-watchdog-time-limit",
po::value<unsigned>(&dynamic_watchdog_time_limit)
->default_value(dynamic_watchdog_time_limit)
->implicit_value(10000),
"Dynamic watchdog time limit, in milliseconds");
desc_adv.add_options()("enable-debug-timer",
po::value<bool>(&g_enable_debug_timer)
->default_value(g_enable_debug_timer)
->implicit_value(true),
"Enable debug timer logging");
desc_adv.add_options()("trivial-loop-join-threshold",
po::value<unsigned>(&g_trivial_loop_join_threshold)
->default_value(g_trivial_loop_join_threshold)
->implicit_value(1000),
"The maximum number of rows in the inner table of a loop join "
"considered to be trivially small");
desc_adv.add_options()("cuda-block-size",
po::value<size_t>(&mapd_parameters.cuda_block_size)
->default_value(mapd_parameters.cuda_block_size),
"Size of block to use on GPU");
desc_adv.add_options()("cuda-grid-size",
po::value<size_t>(&mapd_parameters.cuda_grid_size)
->default_value(mapd_parameters.cuda_grid_size),
"Size of grid to use on GPU");
desc_adv.add_options()("calcite-max-mem",
po::value<size_t>(&mapd_parameters.calcite_max_mem)
->default_value(mapd_parameters.calcite_max_mem),
"Max memory available to calcite JVM");
desc_adv.add_options()("db-convert",
po::value<std::string>(&db_convert_dir),
"Directory path to mapd DB to convert from");
desc_adv.add_options()("enable-columnar-output",
po::value<bool>(&g_enable_columnar_output)
->default_value(g_enable_columnar_output)
->implicit_value(true));
desc_adv.add_options()("bigint-count",
po::value<bool>(&g_bigint_count)
->default_value(g_bigint_count)
->implicit_value(false),
"Use 64-bit count");
desc_adv.add_options()("allow-cpu-retry",
po::value<bool>(&g_allow_cpu_retry)
->default_value(g_allow_cpu_retry)
->implicit_value(true),
"Allow the queries which failed on GPU to retry on CPU, even "
"when watchdog is enabled");
desc_adv.add_options()("db-query-list",
po::value<std::string>(&db_query_file),
"Path to file containing mapd queries");
desc_adv.add_options()("enable-access-priv-check",
po::value<bool>(&enable_access_priv_check)
->default_value(enable_access_priv_check)
->implicit_value(true),
"Check user access privileges to database objects");
desc_adv.add_options()(
"hll-precision-bits",
po::value<int>(&g_hll_precision_bits)
->default_value(g_hll_precision_bits)
->implicit_value(g_hll_precision_bits),
"Number of bits used from the hash value used to specify the bucket number.");
desc_adv.add_options()("inner-join-fragment-skipping",
po::value<bool>(&g_inner_join_fragment_skipping)
->default_value(g_inner_join_fragment_skipping)
->implicit_value(true),
"Enable/disable inner join fragment skipping.");
desc_adv.add_options()("disable-shared-mem-group-by",
po::value<bool>(&g_enable_smem_group_by)
->default_value(g_enable_smem_group_by)
->implicit_value(false),
"Enable/disable using GPU shared memory for GROUP BY.");
desc_adv.add_options()(
"idle-session-duration",
po::value<int>(&idle_session_duration)->default_value(idle_session_duration),
"Maximum duration of idle session.");
desc_adv.add_options()(
"max-session-duration",
po::value<int>(&max_session_duration)->default_value(max_session_duration),
"Maximum duration of active session.");
desc_adv.add_options()("enable-filter-push-down",
po::value<bool>(&g_enable_filter_push_down)
->default_value(g_enable_filter_push_down)
->implicit_value(true),
"Enable filter push down through joins");
desc_adv.add_options()(
"filter-push-down-low-frac",
po::value<float>(&g_filter_push_down_low_frac)
->default_value(g_filter_push_down_low_frac)
->implicit_value(g_filter_push_down_low_frac),
"Lower threshold for selectivity of filters that are pushed down.");
desc_adv.add_options()(
"filter-push-down-high-frac",
po::value<float>(&g_filter_push_down_high_frac)
->default_value(g_filter_push_down_high_frac)
->implicit_value(g_filter_push_down_high_frac),
"Higher threshold for selectivity of filters that are pushed down.");
desc_adv.add_options()("filter-push-down-passing-row-ubound",
po::value<size_t>(&g_filter_push_down_passing_row_ubound)
->default_value(g_filter_push_down_passing_row_ubound)
->implicit_value(g_filter_push_down_passing_row_ubound),
"Upperbound on the number of rows that should pass the filter "
"if the selectivity is less than "
"the high fraction threshold.");
po::positional_options_description positionalOptions;
positionalOptions.add("data", 1);
po::options_description desc_all("All options");
desc_all.add(desc).add(desc_adv);
po::variables_map vm;
std::vector<LeafHostInfo> db_leaves;
std::vector<LeafHostInfo> string_leaves;
try {
po::store(po::command_line_parser(argc, argv)
.options(desc_all)
.positional(positionalOptions)
.run(),
vm);
po::notify(vm);
if (vm.count("config")) {
std::ifstream settings_file(config_file);
po::store(po::parse_config_file(settings_file, desc_all, true), vm);
po::notify(vm);
settings_file.close();
}
if (vm.count("cluster") || vm.count("string-servers")) {
CHECK_NE(!!vm.count("cluster"), !!vm.count("string-servers"));
boost::algorithm::trim_if(cluster_file, boost::is_any_of("\"'"));
const auto all_nodes = LeafHostInfo::parseClusterConfig(cluster_file);
db_leaves = only_db_leaves(all_nodes);
g_leaf_count = db_leaves.size();
if (vm.count("cluster")) {
g_aggregator = true;
} else {
db_leaves.clear();
}
string_leaves = only_string_leaves(all_nodes);
g_cluster = true;
}
if (vm.count("help")) {
std::cout
<< "Usage: mapd_server <catalog path> [<database name>] [--cpu|--gpu] [-p "
"<port "
"number>] [--http-port <http port number>] [--flush-log] [--version|-v]"
<< std::endl
<< std::endl;
std::cout << desc << std::endl;
return 0;
}
if (vm.count("help-advanced")) {
std::cout
<< "Usage: mapd_server <catalog path> [<database name>] [--cpu|--gpu] [-p "
"<port "
"number>] [--http-port <http port number>] [--flush-log] [--version|-v]"
<< std::endl
<< std::endl;
std::cout << desc_all << std::endl;
return 0;
}
if (vm.count("version")) {
std::cout << "MapD Version: " << MAPD_RELEASE << std::endl;
return 0;
}
if (vm.count("cpu")) {
device = "cpu";
}
if (vm.count("gpu")) {
device = "gpu";
}
if (num_gpus == 0) {
device = "cpu";
}
if (device == "cpu") {
enable_rendering = false;
}
g_enable_watchdog = enable_watchdog;
g_enable_dynamic_watchdog = enable_dynamic_watchdog;
g_dynamic_watchdog_time_limit = dynamic_watchdog_time_limit;
} catch (boost::program_options::error& e) {
std::cerr << "Usage Error: " << e.what() << std::endl;
return 1;
}
if (g_hll_precision_bits < 1 || g_hll_precision_bits > 16) {
std::cerr << "hll-precision-bits must be between 1 and 16." << std::endl;
return 1;
}
boost::algorithm::trim_if(base_path, boost::is_any_of("\"'"));
const auto data_path = boost::filesystem::path(base_path) / "mapd_data";
if (!boost::filesystem::exists(data_path)) {
std::cerr << "MapD data directory does not exist at '" << base_path
<< "'. Run initdb " << base_path << std::endl;
return 1;
}
const auto lock_file = boost::filesystem::path(base_path) / "mapd_server_pid.lck";
auto pid = std::to_string(getpid());
int pid_fd = open(lock_file.c_str(), O_RDWR | O_CREAT, 0644);
if (pid_fd == -1) {
auto err = std::string("Failed to open PID file ") + std::string(lock_file.c_str()) +
std::string(". ") + strerror(errno) + ".";
std::cerr << err << std::endl;
return 1;
}
if (lockf(pid_fd, F_TLOCK, 0) == -1) {
auto err = std::string("Another MapD Server is using data directory ") + base_path +
std::string(".");
std::cerr << err << std::endl;
close(pid_fd);
return 1;
}
if (ftruncate(pid_fd, 0) == -1) {
auto err = std::string("Failed to truncate PID file ") +
std::string(lock_file.c_str()) + std::string(". ") + strerror(errno) +
std::string(".");
std::cerr << err << std::endl;
close(pid_fd);
return 1;
}
if (write(pid_fd, pid.c_str(), pid.length()) == -1) {
auto err = std::string("Failed to write PID file ") + std::string(lock_file.c_str()) +
". " + strerror(errno) + ".";
std::cerr << err << std::endl;
close(pid_fd);
return 1;
}
const auto log_path = boost::filesystem::path(base_path) / "mapd_log";
(void)boost::filesystem::create_directory(log_path);
FLAGS_log_dir = log_path.c_str();
if (flush_log) {
FLAGS_logbuflevel = -1;
}
// Initialize Google's logging library.
google::InitGoogleLogging(argv[0]);
boost::algorithm::trim_if(db_query_file, boost::is_any_of("\"'"));
if (db_query_file.length() > 0 && !boost::filesystem::exists(db_query_file)) {
LOG(ERROR) << "File containing DB queries " << db_query_file << " does not exist.";
return 1;
}
boost::algorithm::trim_if(db_convert_dir, boost::is_any_of("\"'"));
if (db_convert_dir.length() > 0 && !boost::filesystem::exists(db_convert_dir)) {
LOG(ERROR) << "Data conversion source directory " << db_convert_dir
<< " does not exist.";
return 1;
}
const auto system_db_file =
boost::filesystem::path(base_path) / "mapd_catalogs" / "mapd";
if (!boost::filesystem::exists(system_db_file)) {
LOG(ERROR) << "MapD system catalogs does not exist at " << system_db_file;
return 1;
}
const auto db_file =
boost::filesystem::path(base_path) / "mapd_catalogs" / MAPD_SYSTEM_DB;
if (!boost::filesystem::exists(db_file)) {
LOG(ERROR) << "MapD database " << MAPD_SYSTEM_DB << " does not exist.";
return 1;
}
// add all parameters to be displayed on startup
LOG(INFO) << "MapD started with data directory at '" << base_path << "'";
if (vm.count("cluster")) {
LOG(INFO) << "Cluster file specified running as aggregator with config at '"
<< cluster_file << "'";
}
if (vm.count("string-servers")) {
LOG(INFO) << "String servers file specified running as dbleaf with config at '"
<< cluster_file << "'";
}
LOG(INFO) << " Watchdog is set to " << enable_watchdog;
LOG(INFO) << " Dynamic Watchdog is set to " << enable_dynamic_watchdog;
if (enable_dynamic_watchdog) {
LOG(INFO) << " Dynamic Watchdog timeout is set to " << dynamic_watchdog_time_limit;
}
LOG(INFO) << " Enable access priv check is set to " << enable_access_priv_check;
LOG(INFO) << " Debug Timer is set to " << g_enable_debug_timer;
LOG(INFO) << " Maximum Idle session duration " << idle_session_duration;
LOG(INFO) << " Maximum active session duration " << max_session_duration;
if (!g_from_table_reordering) {
LOG(INFO) << " From clause table reordering is disabled";
}
if (g_enable_filter_push_down) {
LOG(INFO) << " Filter push down for JOIN is enabled";
}
boost::algorithm::trim_if(mapd_parameters.ha_brokers, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ha_group_id, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ha_shared_data, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ha_unique_server_id, boost::is_any_of("\"'"));
if (!mapd_parameters.ha_group_id.empty()) {
LOG(INFO) << " HA group id " << mapd_parameters.ha_group_id;
if (mapd_parameters.ha_unique_server_id.empty()) {
LOG(ERROR) << "Starting server in HA mode --ha-unique-server-id must be set ";
return 5;
} else {
LOG(INFO) << " HA unique server id " << mapd_parameters.ha_unique_server_id;
}
if (mapd_parameters.ha_brokers.empty()) {
LOG(ERROR) << "Starting server in HA mode --ha-brokers must be set ";
return 6;
} else {
LOG(INFO) << " HA brokers " << mapd_parameters.ha_brokers;
}
if (mapd_parameters.ha_shared_data.empty()) {
LOG(ERROR) << "Starting server in HA mode --ha-shared-data must be set ";
return 7;
} else {
LOG(INFO) << " HA shared data is " << mapd_parameters.ha_shared_data;
}
}
LOG(INFO) << " cuda block size " << mapd_parameters.cuda_block_size;
LOG(INFO) << " cuda grid size " << mapd_parameters.cuda_grid_size;
LOG(INFO) << " calcite JVM max memory " << mapd_parameters.calcite_max_mem;
LOG(INFO) << " MapD Server Port " << mapd_parameters.mapd_server_port;
LOG(INFO) << " MapD Calcite Port " << mapd_parameters.calcite_port;
boost::algorithm::trim_if(authMetadata.distinguishedName, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.uri, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.ldapQueryUrl, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.ldapRoleRegex, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.ldapSuperUserRole, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.restToken, boost::is_any_of("\"'"));
boost::algorithm::trim_if(authMetadata.restUrl, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ssl_cert_file, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ssl_key_file, boost::is_any_of("\"'"));
boost::algorithm::trim_if(mapd_parameters.ssl_trust_store, boost::is_any_of("\"'"));
// rudimetary signal handling to try to guarantee the logging gets flushed to files
// on shutdown
register_signal_handler();
google::InstallFailureFunction(&shutdown_handler);
g_mapd_handler = mapd::make_shared<MapDHandler>(db_leaves,
string_leaves,
base_path,
device,
allow_multifrag,
jit_debug,
read_only,
allow_loop_joins,
enable_rendering,
render_mem_bytes,
num_gpus,
start_gpu,
reserved_gpu_mem,
num_reader_threads,
authMetadata,
mapd_parameters,
db_convert_dir,
enable_legacy_syntax,
enable_access_priv_check,
idle_session_duration,
max_session_duration);
mapd::shared_ptr<TServerSocket> serverSocket;
if (!mapd_parameters.ssl_cert_file.empty() && !mapd_parameters.ssl_key_file.empty()) {
mapd::shared_ptr<TSSLSocketFactory> sslSocketFactory;
sslSocketFactory =
mapd::shared_ptr<TSSLSocketFactory>(new TSSLSocketFactory(SSLProtocol::SSLTLS));
sslSocketFactory->loadCertificate(mapd_parameters.ssl_cert_file.c_str());
sslSocketFactory->loadPrivateKey(mapd_parameters.ssl_key_file.c_str());
sslSocketFactory->authenticate(false);
sslSocketFactory->ciphers("ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH");
serverSocket = mapd::shared_ptr<TServerSocket>(
new TSSLServerSocket(mapd_parameters.mapd_server_port, sslSocketFactory));
LOG(INFO) << " MapD server using encrypted connection. Cert file ["
<< mapd_parameters.ssl_cert_file << "], key file ["
<< mapd_parameters.ssl_key_file << "]";
} else {
LOG(INFO) << " MapD server using plain text";
serverSocket = mapd::shared_ptr<TServerSocket>(
new TServerSocket(mapd_parameters.mapd_server_port));
}
if (mapd_parameters.ha_group_id.empty()) {
mapd::shared_ptr<TProcessor> processor(new MapDProcessor(g_mapd_handler));
mapd::shared_ptr<TTransportFactory> bufTransportFactory(
new TBufferedTransportFactory());
mapd::shared_ptr<TProtocolFactory> bufProtocolFactory(new TBinaryProtocolFactory());
mapd::shared_ptr<TServerTransport> bufServerTransport(serverSocket);
TThreadedServer bufServer(
processor, bufServerTransport, bufTransportFactory, bufProtocolFactory);
mapd::shared_ptr<TServerTransport> httpServerTransport(new TServerSocket(http_port));
mapd::shared_ptr<TTransportFactory> httpTransportFactory(
new THttpServerTransportFactory());
mapd::shared_ptr<TProtocolFactory> httpProtocolFactory(new TJSONProtocolFactory());
TThreadedServer httpServer(
processor, httpServerTransport, httpTransportFactory, httpProtocolFactory);
std::thread bufThread(start_server, std::ref(bufServer));
std::thread httpThread(start_server, std::ref(httpServer));
// run warm up queries if any exists
run_warmup_queries(g_mapd_handler, base_path, db_query_file);
bufThread.join();
httpThread.join();
} else { // running ha server
LOG(FATAL) << "No High Availability module available, please contact MapD support";
}
return 0;
}