-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
30 lines (30 loc) · 1.35 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
(defproject io.jepsen/redpanda "0.1.4-SNAPSHOT"
:description "Tests for the RedPanda distributed queuing system"
:url "https://github.com/jepsen-io/redpanda"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.12.0"]
[clj-http "3.13.0"
:exclusions [riddley]]
[cheshire "5.13.0"]
[jepsen "0.3.7"]
[org.apache.kafka/kafka-clients "3.8.0"
:exclusions [org.slf4j/slf4j-api]]
]
:main jepsen.redpanda.core
:test-selectors {:focus :focus}
:repl-options {:init-ns jepsen.redpanda.core}
:jvm-opts ["-server"
;"-XX:-OmitStackTraceInFastThrow"
"-Djava.awt.headless=true"
; GC tuning--see
; https://wiki.openjdk.java.net/display/shenandoah/Main
; https://wiki.openjdk.java.net/display/zgc/Main
;"-XX+UseZGC"
;"-XX+UseShenandoahGC"
"-Xmx24g"
;"-XX:+UseLargePages" ; requires users do so some OS-level config
"-XX:+AlwaysPreTouch"
; Instrumentation
;"-agentpath:/home/aphyr/yourkit/bin/linux-x86-64/libyjpagent.so=disablestacktelemetry,exceptions=disable,delay=10000"
])