[feature-wip](arrow-flight)(step2) FE support Arrow Flight server (#24314)

This is a POC, the design documentation will be updated soon
This commit is contained in:
Xinyi Zou
2023-09-20 14:42:54 +08:00
committed by GitHub
parent a3361df7b9
commit fc12362a6d
88 changed files with 1226 additions and 71 deletions

View File

@ -390,6 +390,9 @@ public class Config extends ConfigBase {
@ConfField(description = {"FE MySQL server 的端口号", "The port of FE MySQL server"})
public static int query_port = 9030;
@ConfField(description = {"FE Arrow-Flight-SQL server 的端口号", "The port of FE Arrow-Flight-SQ server"})
public static int arrow_flight_sql_port = -1;
@ConfField(description = {"MySQL 服务的 IO 线程数", "The number of IO threads in MySQL service"})
public static int mysql_service_io_threads_num = 4;