mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-27 11:40:05 +00:00
scale up to 8 archiver
This commit is contained in:
parent
7167252e8b
commit
3064445af9
@ -6,7 +6,14 @@ namespace AutoClient
|
||||
{
|
||||
[Uniform("codex-endpoints", "ce", "CODEXENDPOINTS", false, "Codex endpoints. Semi-colon separated. (default 'http://localhost:8080')")]
|
||||
public string CodexEndpoints { get; set; } =
|
||||
"http://localhost:8080;http://localhost:8081;http://localhost:8082;http://localhost:8083";
|
||||
"http://localhost:8080" + ";" +
|
||||
"http://localhost:8081" + ";" +
|
||||
"http://localhost:8082" + ";" +
|
||||
"http://localhost:8083" + ";" +
|
||||
"http://localhost:8084" + ";" +
|
||||
"http://localhost:8085" + ";" +
|
||||
"http://localhost:8086" + ";" +
|
||||
"http://localhost:8087";
|
||||
|
||||
[Uniform("datapath", "dp", "DATAPATH", false, "Root path where all data files will be saved.")]
|
||||
public string DataPath { get; set; } = "datapath";
|
||||
@ -21,7 +28,7 @@ namespace AutoClient
|
||||
// Cluster nodes configured for max 7-day storage.
|
||||
|
||||
[Uniform("contract-expiry", "ce", "CONTRACTEXPIRY", false, "contract expiry in minutes. (default 15 minutes)")]
|
||||
public int ContractExpiryMinutes { get; set; } = 60;
|
||||
public int ContractExpiryMinutes { get; set; } = 15;
|
||||
|
||||
[Uniform("num-hosts", "nh", "NUMHOSTS", false, "Number of hosts for contract. (default 10)")]
|
||||
public int NumHosts { get; set; } = 5;
|
||||
@ -46,7 +53,11 @@ namespace AutoClient
|
||||
"/root/codex-testnet-starter/scripts/eth.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_2.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_3.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_4.address";
|
||||
"/root/codex-testnet-starter/scripts/eth_4.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_5.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_6.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_7.address" + ";" +
|
||||
"/root/codex-testnet-starter/scripts/eth_8.address";
|
||||
|
||||
public string LogPath
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user