blob: a029509e64348f997a3e7dccebe1224799ab6c42 [file] [log] [blame]
#
# 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.
#
####################
### Ml Node RPC Configuration
####################
# Used for connection of DataNode/ConfigNode clients
# Could set 127.0.0.1(for local test) or ipv4 address
# Datatype: String
mn_rpc_address = "127.0.0.1"
# Used for connection of DataNode/ConfigNode clients
# Bind with MN_RPC_ADDRESS
# Datatype: int
mn_rpc_port = 10810
# Directory to save models
# Datatype: String
mn_model_storage_dir = "models"
# Cache number of model storage to avoid repeated loading
# Datatype: int
mn_model_storage_cachesize = 30
####################
### Target Config Node
####################
# Target ConfigNode to be connected by MLNode
# Format: ip:port
# Datatype: String
mn_target_config_node = "127.0.0.1:10710"
####################
### Target Data Node
####################
# Target DataNode to be connected by MLNode
# Format: ip:port
# Datatype: String
mn_target_data_node = "127.0.0.1:10730"