2023-04-18 10:14:13 +00:00
|
|
|
(ns jepsen.garage
|
2023-04-19 12:14:22 +00:00
|
|
|
(:require
|
|
|
|
[clojure.string :as str]
|
|
|
|
[jepsen
|
|
|
|
[checker :as checker]
|
|
|
|
[cli :as cli]
|
|
|
|
[generator :as gen]
|
|
|
|
[nemesis :as nemesis]
|
|
|
|
[tests :as tests]]
|
|
|
|
[jepsen.os.debian :as debian]
|
|
|
|
[jepsen.garage
|
2023-10-18 14:30:45 +00:00
|
|
|
[daemon :as grg]
|
2023-10-20 13:48:37 +00:00
|
|
|
[nemesis :as grgNemesis]
|
2023-04-19 13:27:26 +00:00
|
|
|
[reg :as reg]
|
|
|
|
[set :as set]]))
|
2023-04-18 14:10:07 +00:00
|
|
|
|
2023-04-19 12:14:22 +00:00
|
|
|
(def workloads
|
|
|
|
"A map of workload names to functions that construct workloads, given opts."
|
2023-10-20 10:56:45 +00:00
|
|
|
{"reg1" reg/workload1
|
|
|
|
"reg2" reg/workload2
|
2023-04-19 13:59:30 +00:00
|
|
|
"set1" set/workload1
|
|
|
|
"set2" set/workload2})
|
2023-04-18 14:10:07 +00:00
|
|
|
|
2023-10-20 13:48:37 +00:00
|
|
|
(def scenari
|
|
|
|
"A map of scenari to the associated nemesis"
|
|
|
|
{"cp" grgNemesis/scenario-cp
|
|
|
|
"r" grgNemesis/scenario-r})
|
|
|
|
|
2023-10-20 11:36:48 +00:00
|
|
|
(def patches
|
|
|
|
"A map of patch names to Garage builds"
|
|
|
|
{"default" "v0.9.0"
|
2023-10-20 13:00:10 +00:00
|
|
|
"tsfix1" "d146cdd5b66ca1d3ed65ce93ca42c6db22defc09"
|
|
|
|
"tsfix2" "c82d91c6bccf307186332b6c5c6fc0b128b1b2b1"})
|
2023-10-20 11:36:48 +00:00
|
|
|
|
2023-04-19 12:14:22 +00:00
|
|
|
(def cli-opts
|
|
|
|
"Additional command line options."
|
2023-10-20 11:36:48 +00:00
|
|
|
[["-p" "--patch NAME" "Garage patch to use"
|
|
|
|
:default "default"
|
|
|
|
:validate [patches (cli/one-of patches)]]
|
2023-10-20 13:48:37 +00:00
|
|
|
["-s" "--scenario NAME" "Nemesis scenario to run"
|
|
|
|
:default "cp"
|
|
|
|
:validate [scenari (cli/one-of scenari)]]
|
2023-04-19 12:14:22 +00:00
|
|
|
["-r" "--rate HZ" "Approximate number of requests per second, per thread."
|
|
|
|
:default 10
|
|
|
|
:parse-fn read-string
|
|
|
|
:validate [#(and (number? %) (pos? %)) "Must be a positive number"]]
|
|
|
|
[nil "--ops-per-key NUM" "Maximum number of operations on any given key."
|
|
|
|
:default 100
|
|
|
|
:parse-fn parse-long
|
|
|
|
:validate [pos? "Must be a positive integer."]]
|
|
|
|
["-w" "--workload NAME" "Workload of test to run"
|
2023-10-20 13:48:37 +00:00
|
|
|
:default "reg1"
|
2023-04-19 12:14:22 +00:00
|
|
|
:validate [workloads (cli/one-of workloads)]]])
|
2023-04-18 10:14:13 +00:00
|
|
|
|
|
|
|
(defn garage-test
|
|
|
|
"Given an options map from the command line runner (e.g. :nodes, :ssh,
|
|
|
|
:concurrency, ...), constructs a test map."
|
|
|
|
[opts]
|
2023-04-19 12:14:22 +00:00
|
|
|
(let [workload ((get workloads (:workload opts)) opts)
|
2023-10-20 13:48:37 +00:00
|
|
|
scenario ((get scenari (:scenario opts)) opts)
|
2023-10-20 11:36:48 +00:00
|
|
|
garage-version (get patches (:patch opts))]
|
2023-04-19 12:14:22 +00:00
|
|
|
(merge tests/noop-test
|
|
|
|
opts
|
|
|
|
{:pure-generators true
|
|
|
|
:name (str "garage " (name (:workload opts)))
|
|
|
|
:os debian/os
|
|
|
|
:db (grg/db garage-version)
|
|
|
|
:client (:client workload)
|
2023-04-19 13:27:26 +00:00
|
|
|
:generator (gen/phases
|
|
|
|
(->>
|
|
|
|
(:generator workload)
|
|
|
|
(gen/stagger (/ (:rate opts)))
|
2023-10-20 13:48:37 +00:00
|
|
|
(gen/nemesis (:generator scenario))
|
2023-04-19 13:27:26 +00:00
|
|
|
(gen/time-limit (:time-limit opts)))
|
|
|
|
(gen/log "Healing cluster")
|
2023-10-20 13:53:46 +00:00
|
|
|
(gen/nemesis (:final-generator scenario))
|
2023-04-19 13:27:26 +00:00
|
|
|
(gen/log "Waiting for recovery")
|
|
|
|
(gen/sleep 10)
|
|
|
|
(gen/clients (:final-generator workload)))
|
2023-10-20 13:48:37 +00:00
|
|
|
:nemesis (:nemesis scenario)
|
2023-04-19 12:14:22 +00:00
|
|
|
:checker (checker/compose
|
|
|
|
{:perf (checker/perf)
|
|
|
|
:workload (:checker workload)})
|
|
|
|
})))
|
|
|
|
|
2023-04-18 10:14:13 +00:00
|
|
|
|
|
|
|
(defn -main
|
|
|
|
"Handles command line arguments. Can either run a test, or a web server for
|
|
|
|
browsing results."
|
|
|
|
[& args]
|
2023-04-19 12:14:22 +00:00
|
|
|
(cli/run! (merge (cli/single-test-cmd {:test-fn garage-test
|
|
|
|
:opt-spec cli-opts})
|
2023-04-18 11:59:03 +00:00
|
|
|
(cli/serve-cmd))
|
2023-04-18 10:14:13 +00:00
|
|
|
args))
|