OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
CommandLineOptions.h
Go to the documentation of this file.
1 /*
2  * Copyright 2022 HEAVY.AI, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #pragma once
18 
19 #include <blosc.h>
20 #include <cstddef>
21 
22 #include <boost/algorithm/string.hpp>
23 #include <boost/algorithm/string/trim.hpp>
24 #include <boost/filesystem.hpp>
25 #include <boost/locale/generator.hpp>
26 #include <boost/make_shared.hpp>
27 #include <boost/program_options.hpp>
28 
29 #include "Catalog/AuthMetadata.h"
35 
36 namespace po = boost::program_options;
37 
38 class LeafHostInfo;
39 
42 
44  public:
45  CommandLineOptions(char const* argv0, bool dist_v5_ = false)
46  : log_options_(argv0), exe_name(argv0), dist_v5_(dist_v5_) {
47  fillOptions();
49  }
50  int http_port = 6278;
51  int http_binary_port = 6276;
52  size_t reserved_gpu_mem = 384 * 1024 * 1024;
53  std::string base_path;
55  std::string cluster_file = {"cluster.conf"};
56  std::string cluster_topology_file = {"cluster_topology.conf"};
57  std::string license_path = {""};
58  std::string encryption_key_store_path = {};
59  bool verbose_logging = false;
60  bool jit_debug = false;
61  bool intel_jit_profile = false;
62  bool allow_multifrag = true;
63  bool read_only = false;
64  bool allow_loop_joins = false;
65  bool enable_legacy_syntax = true;
66  bool log_user_origin = true;
68 
70  bool enable_rendering = false;
72  int render_oom_retry_threshold = 0; // in milliseconds
73  size_t render_mem_bytes = 1000000000;
76  bool renderer_prefer_igpu = false;
77  unsigned renderer_vulkan_timeout_ms = 60000; // in milliseconds
79  bool renderer_enable_slab_allocation = false; // until proven fully working
80  bool enable_watchdog = true;
89  double running_query_interrupt_freq = 0.1; // 0.0 ~ 1.0
90  unsigned pending_query_interrupt_freq = 1000; // in milliseconds
91  unsigned dynamic_watchdog_time_limit = 10000;
92  std::string disk_cache_level = "";
93 
94  bool enable_data_recycler = true;
95  bool use_hashtable_cache = true;
96  size_t hashtable_cache_total_bytes = 4294967296; // 4GB
97  size_t max_cacheable_hashtable_size_bytes = 2147483648; // 2GB
99 
103  size_t num_reader_threads = 0;
107  std::string db_query_file = {""};
111  bool exit_after_warmup = false;
121  std::string udf_file_name = {""};
122  std::string udf_compiler_path = {""};
123  std::vector<std::string> udf_compiler_options;
124 
125  std::string allowed_import_paths{};
126  std::string allowed_export_paths{};
127 
128 #ifdef ENABLE_GEOS
129  std::string libgeos_so_filename = {"libgeos_c.so"};
130 #endif
131 
132 #ifdef HAVE_TORCH_TFS
133  std::string torch_lib_path = {""};
134 #endif
135 
136  void fillOptions();
137  void fillDeveloperOptions();
138 
139  std::string compressor = std::string(BLOSC_LZ4HC_COMPNAME);
140 
141  po::options_description help_desc_;
142  po::options_description developer_desc_;
144  std::string exe_name;
145  po::positional_options_description positional_options;
146 
147  public:
148  std::vector<LeafHostInfo> db_leaves;
149  std::vector<LeafHostInfo> string_leaves;
150  po::variables_map vm;
151  std::string clusterIds_arg;
152 
153  std::string getNodeIds();
154  std::vector<std::string> getNodeIdsArray();
155  static const std::string nodeIds_token, cluster_command_line_arg;
156 
157  boost::optional<int> parse_command_line(int argc,
158  char const* const* argv,
159  const bool should_init_logging = false);
160  void validate();
161  void validate_base_path();
162  void init_logging();
163  const bool dist_v5_;
164 
165  private:
166  bool enable_runtime_udfs = true;
167  // To store deprecated --enable-runtime-udf flag, replaced by --enable-runtime-udfs
168  // If the --enable-runtime-udf flag is specified, the contents of enable_runtime_udf
169  // are transferred to enable_runtime_udfs
170  bool enable_runtime_udf = true;
172 };
173 
174 extern bool g_enable_watchdog;
175 extern bool g_enable_dynamic_watchdog;
176 extern unsigned g_dynamic_watchdog_time_limit;
177 extern unsigned g_trivial_loop_join_threshold;
181 extern bool g_from_table_reordering;
182 extern bool g_enable_filter_push_down;
183 extern bool g_allow_cpu_retry;
184 extern bool g_allow_query_step_cpu_retry;
185 extern bool g_null_div_by_zero;
186 extern bool g_bigint_count;
187 
188 // Following are options that are specific to ExecutorResourceMgr (and require
189 // g_enable_executor_resource_mgr to be true to apply/allow to be flagged)
200 
202 extern float g_filter_push_down_low_frac;
203 extern float g_filter_push_down_high_frac;
205 extern bool g_enable_columnar_output;
211 extern bool g_enable_distance_rangejoin;
214 extern bool g_strip_join_covered_quals;
215 extern size_t g_constrained_by_in_threshold;
216 extern size_t g_big_group_threshold;
217 extern bool g_enable_window_functions;
221 extern bool g_enable_table_functions;
222 extern bool g_enable_ml_functions;
224 extern bool g_enable_dev_table_functions;
226 extern bool g_allow_memory_status_log;
227 
228 extern size_t g_max_memory_allocation_size;
229 extern double g_bump_allocator_step_reduction;
232 extern unsigned g_pending_query_interrupt_freq;
233 extern double g_running_query_interrupt_freq;
235 extern size_t g_gpu_smem_threshold;
238 extern bool g_use_estimator_result_cache;
239 extern bool g_enable_lazy_fetch;
240 
241 extern int64_t g_omni_kafka_seek;
242 extern size_t g_leaf_count;
243 extern size_t g_compression_limit_bytes;
244 extern bool g_skip_intermediate_count;
245 extern bool g_enable_bump_allocator;
247 extern size_t g_min_memory_allocation_size;
248 extern bool g_enable_string_functions;
249 extern bool g_enable_fsi;
250 extern bool g_enable_s3_fsi;
252 #ifdef ENABLE_IMPORT_PARQUET
253 extern bool g_enable_legacy_parquet_import;
254 #endif
255 extern bool g_enable_fsi_regex_import;
257 extern bool g_enable_interop;
258 extern bool g_enable_union;
259 extern bool g_enable_cpu_sub_tasks;
260 extern size_t g_cpu_sub_task_size;
261 extern unsigned g_cpu_threads_override;
262 extern bool g_enable_filter_function;
263 extern size_t g_max_import_threads;
265 extern bool g_allow_s3_server_privileges;
266 extern float g_vacuum_min_selectivity;
267 extern bool g_read_only;
269 extern size_t g_enable_parallel_linearization;
270 extern size_t g_max_log_length;
271 #ifdef ENABLE_MEMKIND
272 extern bool g_enable_tiered_cpu_mem;
273 extern size_t g_pmem_size;
274 extern std::string g_pmem_path;
275 #endif
276 extern bool g_enable_data_recycler;
277 extern bool g_use_hashtable_cache;
278 extern size_t g_hashtable_cache_total_bytes;
280 extern bool g_use_query_resultset_cache;
283 extern bool g_use_chunk_metadata_cache;
286 extern bool g_allow_query_step_skipping;
287 extern bool g_query_engine_cuda_streams;
288 extern bool g_multi_instance;
CommandLineOptions(char const *argv0, bool dist_v5_=false)
bool g_enable_parallel_window_partition_sort
double g_running_query_interrupt_freq
Definition: Execute.cpp:137
size_t g_pmem_size
float g_filter_push_down_low_frac
Definition: Execute.cpp:99
size_t g_num_tuple_threshold_switch_to_baseline
Definition: Execute.cpp:106
size_t g_constrained_by_in_threshold
Definition: Execute.cpp:113
bool g_use_query_resultset_cache
Definition: Execute.cpp:156
bool g_multi_instance
Definition: heavyai_locks.h:22
double g_bump_allocator_step_reduction
Definition: Execute.cpp:129
size_t g_cpu_sub_task_size
Definition: Execute.cpp:86
double g_executor_resource_mgr_per_query_max_cpu_slots_ratio
Definition: Execute.cpp:178
bool g_allow_memory_status_log
Definition: Execute.cpp:123
logger::LogOptions log_options_
bool g_strip_join_covered_quals
Definition: Execute.cpp:112
unsigned renderer_vulkan_timeout_ms
std::vector< LeafHostInfo > string_leaves
bool g_enable_direct_columnarization
Definition: Execute.cpp:130
bool g_enable_lazy_fetch
Definition: Execute.cpp:132
std::string udf_compiler_path
bool g_enable_legacy_delimited_import
Definition: ParserNode.cpp:83
bool g_skip_intermediate_count
unsigned g_pending_query_interrupt_freq
Definition: Execute.cpp:136
bool g_allow_query_step_skipping
Definition: Execute.cpp:159
size_t preflight_count_query_threshold
size_t g_preflight_count_query_threshold
Definition: Execute.cpp:84
static constexpr int64_t kMinsPerHour
double g_bbox_intersect_target_entries_per_bin
Definition: Execute.cpp:111
size_t g_lockfile_lock_extension_milliseconds
Definition: heavyai_locks.h:24
unsigned g_cpu_threads_override
bool g_enable_auto_metadata_update
size_t g_filter_push_down_passing_row_ubound
Definition: Execute.cpp:101
boost::optional< int > parse_command_line(int argc, char const *const *argv, const bool should_init_logging=false)
bool g_enable_dynamic_watchdog
Definition: Execute.cpp:81
size_t g_hashtable_cache_total_bytes
Definition: Execute.cpp:160
unsigned g_trivial_loop_join_threshold
Definition: Execute.cpp:92
bool g_enable_geo_ops_on_uncompressed_coords
Definition: Execute.cpp:121
bool g_enable_non_kernel_time_query_interrupt
Definition: Execute.cpp:134
bool enable_non_kernel_time_query_interrupt
This file includes the class specification for the cache used by the Foreign Storage Interface (FSI)...
double g_executor_resource_mgr_cpu_result_mem_ratio
Definition: Execute.cpp:176
bool g_enable_data_recycler
Definition: Execute.cpp:154
po::options_description help_desc_
size_t g_compression_limit_bytes
Definition: Compressor.cpp:35
bool g_executor_resource_mgr_allow_cpu_gpu_kernel_concurrency
Definition: Execute.cpp:184
std::string encryption_key_store_path
bool g_inner_join_fragment_skipping
Definition: Execute.cpp:94
bool g_use_chunk_metadata_cache
Definition: Execute.cpp:157
size_t g_max_cacheable_hashtable_size_bytes
Definition: Execute.cpp:161
bool g_enable_string_functions
bool g_enable_smem_non_grouped_agg
Definition: Execute.cpp:146
static constexpr int64_t kMinsPerMonth
size_t g_watchdog_none_encoded_string_translation_limit
Definition: Execute.cpp:82
bool g_null_div_by_zero
Definition: Execute.cpp:91
bool g_enable_interop
bool g_enable_executor_resource_mgr
Definition: Execute.cpp:174
bool g_restrict_ml_model_metadata_to_superusers
Definition: Execute.cpp:119
bool g_enable_columnar_output
Definition: Execute.cpp:102
size_t g_ratio_num_hash_entry_to_num_tuple_switch_to_baseline
Definition: Execute.cpp:107
size_t max_concurrent_render_sessions
bool g_enable_s3_fsi
Definition: Catalog.cpp:97
bool g_from_table_reordering
Definition: Execute.cpp:93
size_t g_window_function_aggregation_tree_fanout
std::string getNodeIds()
bool g_enable_hashjoin_many_to_many
Definition: Execute.cpp:109
std::vector< LeafHostInfo > db_leaves
std::vector< std::string > getNodeIdsArray()
std::string g_pmem_path
size_t g_big_group_threshold
Definition: Execute.cpp:115
size_t g_watchdog_max_projected_rows_per_device
Definition: Execute.cpp:83
float g_filter_push_down_high_frac
Definition: Execute.cpp:100
bool g_enable_distance_rangejoin
Definition: Execute.cpp:108
bool g_executor_resource_mgr_allow_cpu_result_mem_oversubscription_concurrency
Definition: Execute.cpp:190
bool g_bigint_count
bool g_enable_watchdog
size_t g_max_memory_allocation_size
Definition: Execute.cpp:124
bool g_allow_auto_resultset_caching
Definition: Execute.cpp:158
std::string allowed_export_paths
size_t g_max_log_length
Definition: Execute.cpp:172
bool g_enable_dev_table_functions
Definition: Execute.cpp:120
static const std::string cluster_command_line_arg
AuthMetadata authMetadata
bool g_optimize_cuda_block_and_grid_sizes
Definition: Execute.cpp:165
bool g_executor_resource_mgr_allow_cpu_slot_oversubscription_concurrency
Definition: Execute.cpp:187
size_t g_query_resultset_cache_total_bytes
Definition: Execute.cpp:162
bool g_enable_window_functions
Definition: Execute.cpp:116
size_t g_max_cacheable_query_resultset_size_bytes
Definition: Execute.cpp:163
size_t g_min_memory_allocation_size
Definition: Execute.cpp:125
bool g_read_only
Definition: heavyai_locks.h:21
bool g_executor_resource_mgr_allow_cpu_kernel_concurrency
Definition: Execute.cpp:183
unsigned pending_query_interrupt_freq
bool g_enable_fsi_regex_import
Definition: ParserNode.cpp:87
bool g_enable_bbox_intersect_hashjoin
Definition: Execute.cpp:105
bool g_enable_smem_grouped_non_count_agg
Definition: Execute.cpp:143
bool g_enable_automatic_ir_metadata
Definition: Execute.cpp:170
std::vector< std::string > udf_compiler_options
float g_vacuum_min_selectivity
static const std::string nodeIds_token
bool g_enable_filter_function
Definition: Execute.cpp:87
bool g_enable_ml_functions
Definition: Execute.cpp:118
bool g_allow_invalid_literal_buffer_reads
Definition: ConstantIR.cpp:140
double g_executor_resource_mgr_per_query_max_cpu_result_mem_ratio
Definition: Execute.cpp:179
size_t g_executor_resource_mgr_cpu_result_mem_bytes
Definition: Execute.cpp:177
bool g_enable_filter_push_down
Definition: Execute.cpp:98
int64_t g_omni_kafka_seek
bool g_use_estimator_result_cache
Definition: Execute.cpp:135
bool g_enable_bump_allocator
Definition: Execute.cpp:128
bool g_enable_parallel_window_partition_compute
po::positional_options_description positional_options
size_t watchdog_max_projected_rows_per_device
double g_executor_resource_mgr_max_available_resource_use_ratio
Definition: Execute.cpp:191
bool g_enable_union
bool g_enable_cpu_sub_tasks
Definition: Execute.cpp:85
Functions used to work with HyperLogLog records.
bool g_allow_query_step_cpu_retry
Definition: Execute.cpp:90
bool g_allow_cpu_retry
Definition: Execute.cpp:89
File_Namespace::DiskCacheConfig disk_cache_config
bool enable_udf_registration_for_all_users
std::string allowed_import_paths
std::string disk_cache_level
bool g_optimize_row_initialization
Definition: Execute.cpp:104
po::variables_map vm
size_t max_cacheable_hashtable_size_bytes
size_t watchdog_none_encoded_string_translation_limit
size_t g_leaf_count
Definition: ParserNode.cpp:78
unsigned g_dynamic_watchdog_time_limit
Definition: Execute.cpp:88
bool g_enable_fsi
Definition: Catalog.cpp:96
bool g_query_engine_cuda_streams
Definition: QueryEngine.h:10
bool g_allow_s3_server_privileges
Definition: S3Archive.cpp:34
bool g_enable_add_metadata_columns
Definition: ParserNode.cpp:89
po::options_description developer_desc_
bool g_enable_runtime_query_interrupt
Definition: Execute.cpp:133
size_t g_max_import_threads
Definition: Importer.cpp:105
size_t g_enable_parallel_linearization
Definition: Execute.cpp:152
std::string cluster_topology_file
bool g_use_hashtable_cache
Definition: Execute.cpp:155
size_t g_auto_resultset_caching_threshold
Definition: Execute.cpp:164
size_t g_bbox_intersect_max_table_size_bytes
Definition: Execute.cpp:110
bool g_enable_table_functions
Definition: Execute.cpp:117
unsigned dynamic_watchdog_time_limit
SystemParameters system_parameters
size_t g_gpu_smem_threshold
Definition: Execute.cpp:138