@ -64,6 +64,7 @@ DEFINE_Int32(brpc_port, "8060");
|
||||
DEFINE_Int32(arrow_flight_sql_port, "-1");
|
||||
|
||||
DEFINE_mString(public_access_ip, "");
|
||||
DEFINE_Int32(public_access_port, "-1");
|
||||
|
||||
// the number of bthreads for brpc, the default value is set to -1,
|
||||
// which means the number of bthreads is #cpu-cores
|
||||
@ -524,6 +525,8 @@ DEFINE_Int32(brpc_heavy_work_pool_threads, "-1");
|
||||
DEFINE_Int32(brpc_light_work_pool_threads, "-1");
|
||||
DEFINE_Int32(brpc_heavy_work_pool_max_queue_size, "-1");
|
||||
DEFINE_Int32(brpc_light_work_pool_max_queue_size, "-1");
|
||||
DEFINE_Int32(brpc_arrow_flight_work_pool_threads, "-1");
|
||||
DEFINE_Int32(brpc_arrow_flight_work_pool_max_queue_size, "-1");
|
||||
|
||||
//Enable brpc builtin services, see:
|
||||
//https://brpc.apache.org/docs/server/basics/#disable-built-in-services-completely
|
||||
@ -646,7 +649,11 @@ DEFINE_Int32(load_process_safe_mem_permit_percent, "5");
|
||||
// result buffer cancelled time (unit: second)
|
||||
DEFINE_mInt32(result_buffer_cancelled_interval_time, "300");
|
||||
|
||||
// arrow flight result sink buffer rows size, default 4096 * 8
|
||||
DEFINE_mInt32(arrow_flight_result_sink_buffer_size_rows, "32768");
|
||||
// The timeout for ADBC Client to wait for data using arrow flight reader.
|
||||
// If the query is very complex and no result is generated after this time, consider increasing this timeout.
|
||||
DEFINE_mInt32(arrow_flight_reader_brpc_controller_timeout_ms, "300000");
|
||||
|
||||
// the increased frequency of priority for remaining tasks in BlockingPriorityQueue
|
||||
DEFINE_mInt32(priority_queue_remaining_tasks_increased_frequency, "512");
|
||||
|
||||
Reference in New Issue
Block a user