| ; The MIT License (MIT) |
| ; |
| ; Copyright (c) 2015 Microsoft Corporation |
| ; |
| ; -=- Robust Distributed System Nucleus (rDSN) -=- |
| ; |
| ; Permission is hereby granted, free of charge, to any person obtaining a copy |
| ; of this software and associated documentation files (the "Software"), to deal |
| ; in the Software without restriction, including without limitation the rights |
| ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| ; copies of the Software, and to permit persons to whom the Software is |
| ; furnished to do so, subject to the following conditions: |
| ; |
| ; The above copyright notice and this permission notice shall be included in |
| ; all copies or substantial portions of the Software. |
| ; |
| ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| ; THE SOFTWARE. |
| |
| [apps..default] |
| run = true |
| count = 1 |
| ;network.client.RPC_CHANNEL_TCP = dsn::tools::sim_network_provider, 65536 |
| ;network.client.RPC_CHANNEL_UDP = dsn::tools::sim_network_provider, 65536 |
| ;network.server.0.RPC_CHANNEL_TCP = dsn::tools::sim_network_provider, 65536 |
| |
| [apps.replica] |
| type = replica |
| run = true |
| count = 1 |
| ports = 54321 |
| pools = THREAD_POOL_DEFAULT |
| |
| [core] |
| ;tool = simulator |
| tool = nativerun |
| |
| ;toollets = tracer, profiler |
| ;fault_injector |
| pause_on_start = false |
| cli_local = false |
| cli_remote = false |
| |
| logging_start_level = LOG_LEVEL_DEBUG |
| logging_factory_name = dsn::tools::simple_logger |
| |
| |
| [tools.simple_logger] |
| fast_flush = true |
| short_header = false |
| stderr_start_level = LOG_LEVEL_WARNING |
| |
| [tools.simulator] |
| random_seed = 1465902258 |
| |
| [network] |
| ; how many network threads for network library (used by asio) |
| io_service_worker_count = 2 |
| |
| ; specification for each thread pool |
| [threadpool..default] |
| worker_count = 4 |
| |
| [threadpool.THREAD_POOL_DEFAULT] |
| name = default |
| partitioned = false |
| max_input_queue_length = 1024 |
| worker_priority = THREAD_xPRIORITY_NORMAL |
| worker_count = 2 |
| |
| [threadpool.THREAD_POOL_REPLICATION] |
| name = replica |
| partitioned = true |
| max_input_queue_length = 2560 |
| worker_priority = THREAD_xPRIORITY_NORMAL |
| worker_count = 3 |
| |
| [threadpool.THREAD_POOL_REPLICATION_LONG] |
| name = replica_long |
| |
| [task..default] |
| is_trace = true |
| is_profile = true |
| allow_inline = false |
| rpc_call_channel = RPC_CHANNEL_TCP |
| rpc_message_header_format = dsn |
| rpc_timeout_milliseconds = 5000 |
| |
| [replication] |
| disk_min_available_space_ratio = 10 |
| cluster_name = master-cluster |
| |
| [duplication-group] |
| master-cluster = 1 |
| slave-cluster = 2 |