mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
make bspawn config files consistent and minimal
This commit is contained in:
parent
e92158dea6
commit
d996e9d0b6
8 changed files with 27 additions and 44 deletions
|
|
@ -1,11 +1,9 @@
|
|||
{
|
||||
"CreatorArgs": ["-type", "local", "-serverN", "1", "-replicaN", "1"],
|
||||
"AgentHosts": [],
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 1,
|
||||
"Name": "import",
|
||||
"Args": ["import", "-max-bitmap-id", "100000", "-max-profile-id", "10000", "-max-bits-per-map", "100", "-seed", "0", "-agent-controls", "width", "import", "-max-bitmap-id", "100000", "-max-profile-id", "10000", "-max-bits-per-map", "100", "-seed", "0", "-agent-controls", "width", "-random-bitmap-order", "-db", "randoload"]
|
||||
"num": 1,
|
||||
"name": "import",
|
||||
"args": ["import", "-max-bitmap-id", "100000", "-max-profile-id", "10000", "-max-bits-per-map", "100", "-seed", "0", "-agent-controls", "width", "import", "-max-bitmap-id", "100000", "-max-profile-id", "10000", "-max-bits-per-map", "100", "-seed", "0", "-agent-controls", "width", "-random-bitmap-order", "-db", "randoload"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1364,7 +1364,7 @@ type BspawnCommand struct {
|
|||
type Spawn struct {
|
||||
Num int `json:"num"` // number of agents to run
|
||||
Name string `json:"name"` // Should describe what this Spawn does
|
||||
Args []string // everything that comes after `pilosactl bagent [arguments]`
|
||||
Args []string `json:"args"` // everything that comes after `pilosactl bagent [arguments]`
|
||||
}
|
||||
|
||||
// NewBspawnCommand returns a new instance of BspawnCommand.
|
||||
|
|
|
|||
|
|
@ -1,12 +1,8 @@
|
|||
{
|
||||
"CreatorArgs": ["-hosts", "pilosa0.jaffee.sandbox.pilosa.com:15000,pilosa1.jaffee.sandbox.pilosa.com:15000,pilosa2.jaffee.sandbox.pilosa.com:15000", "-log-file-prefix", "multidblog", "-ssh-user", "ubuntu"],
|
||||
"AgentHosts": ["agent0.jaffee.sandbox.pilosa.com"],
|
||||
"SSHUser": "ubuntu",
|
||||
"CopyBinary": true,
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 3,
|
||||
"Args": ["multi-db-set-bits", "-iterations", "30000", "-client-type", "round_robin"]
|
||||
"num": 3,
|
||||
"args": ["multi-db-set-bits", "-iterations", "30000", "-client-type", "round_robin"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"CreatorArgs": ["-type", "local", "-serverN", "3", "-replicaN", "1"],
|
||||
"AgentHosts": [],
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 3,
|
||||
"Args": [
|
||||
"num": 3,
|
||||
"args": [
|
||||
"random-set-bits", "-iterations", "30000", "-profile-id-range", "1000000", "-bitmap-id-range", "1000000", "-seed", "2345", "-client-type", "round_robin", "-db", "randsetandquery",
|
||||
"random-query", "-iterations", "1000", "-bitmap-id-range", "1000000", "-seed", "1239", "-dbs", "randsetandquery"
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"CreatorArgs": ["-type", "local", "-serverN", "3", "-replicaN", "1"],
|
||||
"AgentHosts": [],
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 3,
|
||||
"Args": ["random-set-bits", "-iterations", "30000", "-profile-id-range", "1000000", "-bitmap-id-range", "1000000", "-seed", "2345", "-client-type", "round_robin"]
|
||||
"num": 3,
|
||||
"args": ["random-set-bits", "-iterations", "30000", "-profile-id-range", "1000000", "-bitmap-id-range", "1000000", "-seed", "2345", "-client-type", "round_robin"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"CreatorArgs": ["-hosts=localhost:19444,localhost:19445,localhost:19446", "-log-file-prefix", "asdfe"],
|
||||
"AgentHosts": [],
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 1,
|
||||
"Args": ["-human", "slice-height", "-max-time", "1", "-max-bits-per-map", "100"]
|
||||
"num": 1,
|
||||
"args": ["-human", "slice-height", "-max-time", "1", "-max-bits-per-map", "100"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,14 @@
|
|||
{
|
||||
"CreatorArgs": ["-hosts=localhost:19444,localhost:19445,localhost:19446", "-log-file-prefix", "asdfe"],
|
||||
"AgentHosts": [],
|
||||
"SSHUser": "nikolai-von-havlenhoken",
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 3,
|
||||
"Name": "set-diags",
|
||||
"Args": ["diagonal-set-bits", "-iterations", "30000", "-client-type", "round_robin"]
|
||||
"num": 3,
|
||||
"name": "set-diags",
|
||||
"args": ["diagonal-set-bits", "-iterations", "30000", "-client-type", "round_robin"]
|
||||
},
|
||||
{
|
||||
"Num": 2,
|
||||
"Name": "rand-plus-zipf",
|
||||
"Args": ["random-set-bits", "-iterations", "20000", "zipf-set-bits", "-iterations", "100"]
|
||||
"num": 2,
|
||||
"name": "rand-plus-zipf",
|
||||
"args": ["random-set-bits", "-iterations", "20000", "zipf-set-bits", "-iterations", "100"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +1,8 @@
|
|||
{
|
||||
"CreatorArgs": ["-type", "local", "-serverN", "3", "-replicaN", "1"],
|
||||
"AgentHosts": [],
|
||||
"Benchmarks": [
|
||||
"benchmarks": [
|
||||
{
|
||||
"Num": 1,
|
||||
"Args": ["zipf-set-bits", "-iterations", "10000", "-profile-id-range", "100", "-bitmap-id-range", "100", "-seed", "2345", "-client-type", "round_robin", "-bitmap-exponent", "1.001", "-bitmap-ratio", ".9", "-profile-exponent", "1.001", "-profile-ratio", ".3"]
|
||||
"num": 1,
|
||||
"args": ["zipf-set-bits", "-iterations", "10000", "-profile-id-range", "100", "-bitmap-id-range", "100", "-seed", "2345", "-client-type", "round_robin", "-bitmap-exponent", "1.001", "-bitmap-ratio", ".9", "-profile-exponent", "1.001", "-profile-ratio", ".3"]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue