| # |
| # 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. |
| # |
| |
| # Used for indicate cluster name and distinguish different cluster. |
| # Datatype: string |
| cluster_name=defaultCluster |
| |
| # ConfigNode address registered at AINode startup. |
| # Allow modifications only before starting the service for the first time. |
| # Datatype: String |
| ain_seed_config_node=127.0.0.1:10710 |
| |
| # Used for connection of DataNode/ConfigNode clients |
| # Could set 127.0.0.1(for local test) or ipv4 address |
| # Datatype: String |
| ain_rpc_address=127.0.0.1 |
| |
| # Used for connection of DataNode/ConfigNode clients |
| # Bind with MN_RPC_ADDRESS |
| # Datatype: String |
| ain_rpc_port=10810 |
| |
| # The DataNode address for fetching IoTDB data |
| # Datatype: String |
| ain_cluster_ingress_address=127.0.0.1 |
| |
| # The DataNode port for fetching IoTDB data |
| # Datatype: Integer |
| ain_cluster_ingress_port=6667 |
| |
| # The username of IoTDB cluster. |
| # Datatype: String |
| ain_cluster_ingress_username=root |
| |
| # The password of IoTDB cluster. |
| # Datatype: String |
| ain_cluster_ingress_password=root |
| |
| # The time zone of the IoTDB cluster. |
| # Datatype: String |
| ain_cluster_ingress_time_zone=UTC+8 |
| |
| # The device space allocated for inference |
| # Datatype: Float |
| ain_inference_memory_usage_ratio=0.4 |
| |
| # The overhead ratio for inference, used to estimate the pool size |
| # Datatype: Float |
| ain_inference_extra_memory_ratio=1.2 |
| |
| # The AINode metadata storage path. |
| # The starting directory of the relative path is related to the operating system. |
| # It is recommended to use an absolute path. |
| # Datatype: String |
| # ain_system_dir=data/ainode/system |
| |
| # The path where AINode stores model files |
| # The starting directory of the relative path is related to the operating system. |
| # It is recommended to use an absolute path. |
| # Datatype: String |
| # ain_models_dir=data/ainode/models |
| |
| # The path where AINode stores logs |
| # The starting directory of the relative path is related to the operating system. |
| # It is recommended to use an absolute path. |
| # Datatype: String |
| # ain_logs_dir=logs |
| |
| # Whether to use compression in Thrift |
| # Please use 0 or 1 |
| # Datatype: Boolean |
| # ain_thrift_compression_enabled=0 |
| |
| # Whether to use ssl for fetching IoTDB data |
| # Use the same value as enable_thrift_ssl in iotdb-system.properties |
| # Please use 0 or 1 |
| # Datatype: Boolean |
| # ain_cluster_ingress_ssl_enabled=0 |
| |
| # The AINode SSL certificate file path. |
| # The starting directory of the relative path is related to the operating system. |
| # It is recommended to use an absolute path. |
| # Datatype: String |
| # ain_thrift_ssl_cert_file= |
| |
| # The AINode SSL private key file path. |
| # The starting directory of the relative path is related to the operating system. |
| # It is recommended to use an absolute path. |
| # Datatype: String |
| # ain_thrift_ssl_key_file= |