| # |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you 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. |
| # |
| |
| base_dir=target/tmp |
| dn_data_dirs=target/data |
| dn_wal_dirs=target/wal |
| index_root_dir=target/index |
| dn_tracing_dir=target/data/tracing |
| minimum_pbtree_segment_in_bytes=0 |
| page_cache_in_pbtree=10 |
| dn_internal_address=0.0.0.0 |
| dn_sync_dir=target/sync |
| dn_seed_config_node=127.0.0.1:10710 |
| |
| udf_lib_dir=target/ext/udf |
| trigger_lib_dir=target/ext/trigger |
| pipe_lib_dir=target/ext/pipe |
| load_active_listening_dirs=target/ext/load/pending |
| load_active_listening_fail_dir=target/ext/load/failed |
| |
| #################### |
| ### REST Service Configuration |
| #################### |
| |
| # Is the REST service enabled |
| enable_rest_service=true |
| |
| # the binding port of the REST service |
| # rest_service_port=18080 |
| |
| # Whether to display rest service interface information through swagger. eg: http://ip:port/swagger.json |
| # enable_swagger=false |
| |
| # the default row limit to a REST query response when the rowSize parameter is not given in request |
| # rest_query_default_row_size_limit=10000 |
| |
| # the expiration time of the user login information cache (in seconds) |
| # cache_expire_in_seconds=28800 |
| |
| # maximum number of users can be stored in the user login cache. |
| # cache_max_num=100 |
| |
| # init capacity of users can be stored in the user login cache. |
| # cache_init_num=10 |
| |
| # is SSL enabled |
| # enable_https=false |
| |
| # SSL key store path |
| # key_store_path= |
| |
| # SSL key store password |
| # key_store_pwd= |
| |
| # Is client authentication required |
| # client_auth=false |
| |
| # SSL trust store path |
| # trust_store_path= |
| |
| # SSL trust store password. |
| # trust_store_pwd= |
| |
| # SSL timeout (in seconds) |
| # idle_timeout_in_seconds=50000 |